diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-30 13:34:10 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-30 13:34:10 -0600 |
commit | 58a591f3141f2ab9b4f58dda959a40ae323b954f (patch) | |
tree | d269c4e96bd709f91c0526a20a3b7e9f792d5ca8 /src/view/lib/themes.ts | |
parent | 9084e0e4a8ba14c59ec2ee29f8035eb854d11e87 (diff) | |
download | voidsky-58a591f3141f2ab9b4f58dda959a40ae323b954f.tar.zst |
Integrate notifications into the design system
Diffstat (limited to 'src/view/lib/themes.ts')
-rw-r--r-- | src/view/lib/themes.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/lib/themes.ts b/src/view/lib/themes.ts index 2ad78c20e..114d5cf99 100644 --- a/src/view/lib/themes.ts +++ b/src/view/lib/themes.ts @@ -18,6 +18,7 @@ export const defaultTheme: Theme = { actionLabel: colors.gray4, replyLine: colors.gray2, replyLineDot: colors.gray3, + unreadNotifBg: '#ebf6ff', }, primary: { background: colors.blue3, @@ -157,6 +158,7 @@ export const darkTheme: Theme = { actionLabel: colors.gray3, replyLine: colors.gray5, replyLineDot: colors.gray6, + unreadNotifBg: colors.blue5, }, primary: { ...defaultTheme.palette.primary, |