diff --git a/src/components/mii/instructions.tsx b/src/components/mii/instructions.tsx
index 5a3fd95..c307ccf 100644
--- a/src/components/mii/instructions.tsx
+++ b/src/components/mii/instructions.tsx
@@ -41,7 +41,7 @@ function ColorPosition({ color }: { color: number }) {
if (color <= 7) {
return (
-
+
Color menu on left,
);
@@ -49,7 +49,7 @@ function ColorPosition({ color }: { color: number }) {
if (color >= 108) {
return (
-
+
Outside color menu,
);
@@ -57,7 +57,7 @@ function ColorPosition({ color }: { color: number }) {
return (
-
+
Color menu on right,
);
@@ -88,7 +88,7 @@ function Section({ name, instructions, children, isSubSection }: SectionProps) {
const stretch = "stretch" in instructions ? instructions.stretch : undefined;
return (
-
+
{name}
@@ -196,7 +196,7 @@ export default function MiiInstructions({ instructions }: Props) {
)}
{(height || weight || datingPreferences || voice || personality) && (
-
+
Misc
{height && (
diff --git a/src/components/mii/personality-viewer.tsx b/src/components/mii/personality-viewer.tsx
index c2b969d..1d58515 100644
--- a/src/components/mii/personality-viewer.tsx
+++ b/src/components/mii/personality-viewer.tsx
@@ -22,7 +22,7 @@ export default function PersonalityViewer({ data, onClick }: Props) {
const key = label.toLowerCase() as keyof typeof data;
return (
-
{label}
+
{label}
{left}
{Array.from({ length: 8 }).map((_, i) => {
@@ -43,7 +43,7 @@ export default function PersonalityViewer({ data, onClick }: Props) {
onClick={() => {
if (onClick) onClick(key, i);
}}
- className={`size-7 rounded-lg transition-opacity duration-100 border-orange-500
+ className={`size-7 rounded-lg transition-opacity duration-100 border-black/40
${colors[i]} ${data[key] === i ? "border-2 opacity-100" : "opacity-70"} ${onClick ? "cursor-pointer" : ""}`}
>
);