(core) Update memo notification styling

Summary: Updates CSS for memo notifications to match latest Figma designs.

Test Plan: N/A

Reviewers: jarek

Reviewed By: jarek

Differential Revision: https://phab.getgrist.com/D3737
This commit is contained in:
George Gevoian
2023-01-09 00:23:52 -05:00
parent e6692c2793
commit 9e009bbab9
6 changed files with 31 additions and 7 deletions

View File

@@ -59,6 +59,8 @@ export const ThemeColors = t.iface([], {
"toast-text": "string",
"toast-text-light": "string",
"toast-bg": "string",
"toast-memo-text": "string",
"toast-memo-bg": "string",
"toast-error-icon": "string",
"toast-error-bg": "string",
"toast-success-icon": "string",

View File

@@ -69,6 +69,8 @@ export interface ThemeColors {
'toast-text': string;
'toast-text-light': string;
'toast-bg': string;
'toast-memo-text': string;
'toast-memo-bg': string;
'toast-error-icon': string;
'toast-error-bg': string;
'toast-success-icon': string;

View File

@@ -48,6 +48,8 @@ export const GristDark: ThemeColors = {
'toast-text': '#FFFFFF',
'toast-text-light': '#929299',
'toast-bg': '#040404',
'toast-memo-text': '#EFEFEF',
'toast-memo-bg': '#555563',
'toast-error-icon': '#D0021B',
'toast-error-bg': '#D0021B',
'toast-success-icon': '#009058',

View File

@@ -48,6 +48,8 @@ export const GristLight: ThemeColors = {
'toast-text': '#FFFFFF',
'toast-text-light': '#929299',
'toast-bg': '#040404',
'toast-memo-text': '#FFFFFF',
'toast-memo-bg': '#262633',
'toast-error-icon': '#D0021B',
'toast-error-bg': '#D0021B',
'toast-success-icon': '#009058',