@@ -2,7 +2,9 @@ import { generateColorSteps } from '../../utils/theme';
22import { darkTheme as baseDarkTheme } from '../base/dark.tokens' ;
33import type { DarkTheme } from '../themes.interfaces' ;
44
5- const graySteps = generateColorSteps ( '#ffffff' , '#121212' , true ) ;
5+ const colors = {
6+ gray : generateColorSteps ( '#ffffff' , '#121212' , true ) ,
7+ } ;
68
79export const darkTheme : DarkTheme = {
810 ...baseDarkTheme ,
@@ -58,7 +60,7 @@ export const darkTheme: DarkTheme = {
5860
5961 color : {
6062 // TODO: Update hex values to use the text color variable and background color variable
61- gray : graySteps ,
63+ gray : colors . gray ,
6264 } ,
6365
6466 components : {
@@ -75,8 +77,18 @@ export const darkTheme: DarkTheme = {
7577 background : '#1f1f1f' ,
7678 } ,
7779 IonDatetime : {
78- bg : graySteps [ '100' ] ! ,
79- timeBodyBg : graySteps [ '300' ] ! ,
80+ bg : colors . gray [ '100' ] ! ,
81+ timeBodyBg : colors . gray [ '300' ] ! ,
82+ } ,
83+ IonBreadcrumb : {
84+ color : colors . gray [ '600' ] ! ,
85+ bgFocused : colors . gray [ '50' ] ! ,
86+ iconColor : colors . gray [ '550' ] ! ,
87+ iconColorActive : colors . gray [ '850' ] ! ,
88+ indicatorBg : colors . gray [ '100' ] ! ,
89+ indicatorBgFocused : colors . gray [ '150' ] ! ,
90+ colorFocused : colors . gray [ '800' ] ! , // Available only in md
91+ separatorColor : colors . gray [ '550' ] ! ,
8092 } ,
8193 } ,
8294} ;
0 commit comments