mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
fix(themes): add toolbar bg
This commit is contained in:
@@ -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',
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user