diff --git a/apps/desktop-tauri/src/styles.css b/apps/desktop-tauri/src/styles.css index 84272845f1..652d3ac5b7 100644 --- a/apps/desktop-tauri/src/styles.css +++ b/apps/desktop-tauri/src/styles.css @@ -5326,15 +5326,17 @@ html:has(.menu-surface--tray) { background-repeat: no-repeat; background-position: right 10px center; line-height: 20px; - color-scheme: light; } -.select option { - color: #000; - background: #fff; +[data-theme="dark"] .select { + color-scheme: dark; +} +[data-theme="dark"] .select option { + color: var(--text-primary); + background: var(--app-bg); } -.select option:checked { - color: #000; - background: #dceeff; +[data-theme="dark"] .select option:checked { + color: #fff; + background: var(--accent); } .text-input { padding: 0 10px; @@ -5351,6 +5353,9 @@ html:has(.menu-surface--tray) { font-variant-numeric: tabular-nums; line-height: 20px; } +[data-theme="light"] .select { + color-scheme: light; +} [data-theme="light"] .select, [data-theme="light"] .number-input, [data-theme="light"] .text-input {