diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-04-24 16:36:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-24 16:36:05 -0500 |
commit | da8af38dcc23ea33c686714be2ce5f0bf0e65798 (patch) | |
tree | 78156a3b5803ccda6883e9e694ca79ccfdc40473 /src/lib/themes.ts | |
parent | 9d8600c21387999f8621274c553d5385be0c92c7 (diff) | |
download | voidsky-da8af38dcc23ea33c686714be2ce5f0bf0e65798.tar.zst |
Android & visual fixes: color themes, repost icon, navigation, back handler, etc (#519)
* Switch android to use slide left/right animations on navigation * Bump the repost icon down by a pixel * Tune theme colors for contrast and darker bg on darkmode * Move back handler to a point in the init flow that leads to more consistent capture of events * Fix image share flow on android * Fix lint * Add todo about sharing not available * Drop the android slide animation because it's too slow * Fix 'flashes of white' in dark mode android
Diffstat (limited to 'src/lib/themes.ts')
-rw-r--r-- | src/lib/themes.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/themes.ts b/src/lib/themes.ts index 76d4fbf2f..95aee0842 100644 --- a/src/lib/themes.ts +++ b/src/lib/themes.ts @@ -291,8 +291,8 @@ export const darkTheme: Theme = { palette: { ...defaultTheme.palette, default: { - background: colors.gray8, - backgroundLight: colors.gray6, + background: colors.black, + backgroundLight: colors.gray7, text: colors.white, textLight: colors.gray3, textInverted: colors.black, @@ -307,7 +307,7 @@ export const darkTheme: Theme = { replyLineDot: colors.gray6, unreadNotifBg: colors.blue7, unreadNotifBorder: colors.blue6, - postCtrl: '#61657A', + postCtrl: '#707489', brandText: '#0085ff', emptyStateIcon: colors.gray4, }, |