diff --git a/src/app/features/settings/account/Profile.tsx b/src/app/features/settings/account/Profile.tsx index c2117e0b0..ce261c902 100644 --- a/src/app/features/settings/account/Profile.tsx +++ b/src/app/features/settings/account/Profile.tsx @@ -22,6 +22,7 @@ import { Dialog, Header, config, + color, Spinner, PopOut, RectCords, @@ -522,10 +523,11 @@ function ProfileStatus() { onChange={(e) => setClearAfter(e.target.value)} aria-label="Auto-clear status after" style={{ - background: 'var(--bg-surface-variant)', - border: `1px solid var(--border-surface-variant)`, + background: color.SurfaceVariant.Container, + border: `1px solid ${color.SurfaceVariant.ContainerLine}`, borderRadius: config.radii.R300, - color: 'inherit', + color: color.SurfaceVariant.OnContainer, + colorScheme: 'dark', fontSize: '0.82rem', padding: `${config.space.S100} ${config.space.S200}`, cursor: 'pointer', @@ -533,7 +535,14 @@ function ProfileStatus() { }} > {CLEAR_AFTER_OPTIONS.map((opt) => ( - ))}