-
+
Settings
@@ -20,8 +20,8 @@ export function SettingsLayout() {
to="/settings/general"
className={({ isActive }) =>
twMerge(
- 'flex h-9 items-center gap-2.5 rounded-md px-2.5 text-zinc-200',
- isActive ? 'bg-zinc-900/50' : ''
+ 'flex h-9 items-center gap-2.5 rounded-md px-2.5',
+ isActive ? 'bg-white/10 text-white' : 'text-white/80'
)
}
>
@@ -31,8 +31,8 @@ export function SettingsLayout() {
to="/settings/shortcuts"
className={({ isActive }) =>
twMerge(
- 'flex h-9 items-center gap-2.5 rounded-md px-2.5 text-zinc-200',
- isActive ? 'bg-zinc-900/50' : ''
+ 'flex h-9 items-center gap-2.5 rounded-md px-2.5',
+ isActive ? 'bg-white/10 text-white' : 'text-white/80'
)
}
>
@@ -42,8 +42,8 @@ export function SettingsLayout() {
to="/settings/account"
className={({ isActive }) =>
twMerge(
- 'flex h-9 items-center gap-2.5 rounded-md px-2.5 text-zinc-200',
- isActive ? 'bg-zinc-900/50' : ''
+ 'flex h-9 items-center gap-2.5 rounded-md px-2.5',
+ isActive ? 'bg-white/10 text-white' : 'text-white/80'
)
}
>
@@ -57,9 +57,13 @@ export function SettingsLayout() {