@@ -67,22 +67,22 @@ class Scheme {
6767 this . background = hexFromArgb ( scheme . surface ) ;
6868 this . selectionBackground = hexFromArgb ( scheme . surfaceVariant ) ;
6969 this . foreground = hexFromArgb ( scheme . onSurface ) ;
70- this . black = Scheme . findColor ( theme . customColors , ColorName . black , isDark ) ;
70+ this . black = hexFromArgb ( theme . palettes . neutral . tone ( 5 ) ) ;
7171 this . red = Scheme . findColor ( theme . customColors , ColorName . red , isDark ) ;
7272 this . green = Scheme . findColor ( theme . customColors , ColorName . green , isDark ) ;
7373 this . yellow = Scheme . findColor ( theme . customColors , ColorName . yellow , isDark ) ;
7474 this . blue = Scheme . findColor ( theme . customColors , ColorName . blue , isDark ) ;
7575 this . purple = Scheme . findColor ( theme . customColors , ColorName . purple , isDark ) ;
7676 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 ) ) ;
7979 this . brightRed = Scheme . findColor ( theme . customColors , ColorName . brightRed , isDark ) ;
8080 this . brightGreen = Scheme . findColor ( theme . customColors , ColorName . brightGreen , isDark ) ;
8181 this . brightYellow = Scheme . findColor ( theme . customColors , ColorName . brightYellow , isDark ) ;
8282 this . brightBlue = Scheme . findColor ( theme . customColors , ColorName . brightBlue , isDark ) ;
8383 this . brightPurple = Scheme . findColor ( theme . customColors , ColorName . brightPurple , isDark ) ;
8484 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 ) ) ;
8686 }
8787
8888 /**
0 commit comments