fix logo in light mode

This commit is contained in:
mulan xia
2024-01-23 17:19:31 -05:00
parent 1fd31497eb
commit 13da52f31c
5 changed files with 60 additions and 47 deletions
+3
View File
@@ -36,6 +36,7 @@ const ClassicTheme: ThemeColors = {
inputBackground: ColorToken.GrayBlue3,
toggleBackground: ColorToken.GrayBlue3,
logoFill: ColorToken.White,
};
const DarkTheme: ThemeColors = {
@@ -72,6 +73,7 @@ const DarkTheme: ThemeColors = {
inputBackground: ColorToken.DarkGray6,
toggleBackground: ColorToken.DarkGray6,
logoFill: ColorToken.White,
};
const LightTheme: ThemeColors = {
@@ -108,6 +110,7 @@ const LightTheme: ThemeColors = {
inputBackground: ColorToken.White,
toggleBackground: ColorToken.LightGray4,
logoFill: ColorToken.Black,
};
export const Themes = {