about summary refs log tree commit diff
path: root/src/components/forms/DateField/index.android.tsx
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2024-02-23 23:09:50 +0000
committerGitHub <noreply@github.com>2024-02-23 15:09:50 -0800
commit6ae9c5d45c6f12ee015fa2ed6857948825f44322 (patch)
treeb19bddd6f1c0f4f55a483a6ef1f1c369f1bac55b /src/components/forms/DateField/index.android.tsx
parentde9df50af3af7807fb97723df92a557fc5361812 (diff)
downloadvoidsky-6ae9c5d45c6f12ee015fa2ed6857948825f44322.tar.zst
Make dim theme dim (#2966)
* Make dim color scheme dim

* Tweaks

* Overall tweaks

* We have to go darker

* Tweak saturation of blues in dim

* Increase contrast on dark-dark mode

* adjust dim

---------

Co-authored-by: Eric Bailey <git@esb.lol>
Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/components/forms/DateField/index.android.tsx')
-rw-r--r--src/components/forms/DateField/index.android.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/forms/DateField/index.android.tsx b/src/components/forms/DateField/index.android.tsx
index 83fa285f5..cddb643d6 100644
--- a/src/components/forms/DateField/index.android.tsx
+++ b/src/components/forms/DateField/index.android.tsx
@@ -98,7 +98,7 @@ export function DateField({
           timeZoneName={'Etc/UTC'}
           display="spinner"
           // @ts-ignore applies in iOS only -prf
-          themeVariant={t.name === 'dark' ? 'dark' : 'light'}
+          themeVariant={t.name === 'light' ? 'light' : 'dark'}
           value={new Date(value)}
           onChange={onChangeInternal}
         />