@@ -67,22 +67,22 @@ class Scheme {
67
67
this . background = hexFromArgb ( scheme . surface ) ;
68
68
this . selectionBackground = hexFromArgb ( scheme . surfaceVariant ) ;
69
69
this . foreground = hexFromArgb ( scheme . onSurface ) ;
70
- this . black = Scheme . findColor ( theme . customColors , ColorName . black , isDark ) ;
70
+ this . black = hexFromArgb ( theme . palettes . neutral . tone ( 5 ) ) ;
71
71
this . red = Scheme . findColor ( theme . customColors , ColorName . red , isDark ) ;
72
72
this . green = Scheme . findColor ( theme . customColors , ColorName . green , isDark ) ;
73
73
this . yellow = Scheme . findColor ( theme . customColors , ColorName . yellow , isDark ) ;
74
74
this . blue = Scheme . findColor ( theme . customColors , ColorName . blue , isDark ) ;
75
75
this . purple = Scheme . findColor ( theme . customColors , ColorName . purple , isDark ) ;
76
76
this . cyan = Scheme . findColor ( theme . customColors , ColorName . cyan , isDark ) ;
77
- this . white = Scheme . findColor ( theme . customColors , ColorName . white , isDark ) ;
78
- this . brightBlack = Scheme . findColor ( theme . customColors , ColorName . brightBlack , isDark ) ;
77
+ this . white = hexFromArgb ( theme . palettes . neutral . tone ( 80 ) ) ;
78
+ this . brightBlack = hexFromArgb ( theme . palettes . neutral . tone ( 20 ) ) ;
79
79
this . brightRed = Scheme . findColor ( theme . customColors , ColorName . brightRed , isDark ) ;
80
80
this . brightGreen = Scheme . findColor ( theme . customColors , ColorName . brightGreen , isDark ) ;
81
81
this . brightYellow = Scheme . findColor ( theme . customColors , ColorName . brightYellow , isDark ) ;
82
82
this . brightBlue = Scheme . findColor ( theme . customColors , ColorName . brightBlue , isDark ) ;
83
83
this . brightPurple = Scheme . findColor ( theme . customColors , ColorName . brightPurple , isDark ) ;
84
84
this . brightCyan = Scheme . findColor ( theme . customColors , ColorName . brightCyan , isDark ) ;
85
- this . brightWhite = Scheme . findColor ( theme . customColors , ColorName . brightWhite , isDark ) ;
85
+ this . brightWhite = hexFromArgb ( theme . palettes . neutral . tone ( 95 ) ) ;
86
86
}
87
87
88
88
/**
0 commit comments