fix(themes): add toolbar bg

This commit is contained in:
Maria Hutt
2025-12-15 19:31:51 -08:00
parent 1e9874d851
commit 4cd5e5cf86
3 changed files with 13 additions and 0 deletions

View File

@@ -9,6 +9,11 @@ export const darkTheme: DarkTheme = {
textColor: '#ffffff',
textColorRgb: '255, 255, 255',
// TODO(FW-6864): Remove once IonToolbar themes are added
toolbar: {
background: '#1f1f1f',
},
backgroundColorStep: {
50: '#1e1e1e',
100: '#2a2a2a',

View File

@@ -7,6 +7,11 @@ export const highContrastDarkTheme: HighContrastDarkTheme = {
backgroundColor: '#121212',
textColor: '#000000',
// TODO(FW-6864): Remove once IonToolbar themes are added
toolbar: {
background: '#1f1f1f',
},
backgroundColorStep: {
50: '#1e1e1e',
100: '#2a2a2a',

View File

@@ -17,6 +17,9 @@ export type BaseTheme = {
[key: string]: string;
};
// TODO(FW-6864): Remove once IonToolbar themes are added
toolbar?: any;
// SPACE TOKENS
spacing?: {
0?: string;