work on light theme

This commit is contained in:
2024-04-16 00:42:40 +03:00
parent 3033d1f34b
commit ed0ecf9f51
6 changed files with 96 additions and 8 deletions

View File

@ -1,6 +1,6 @@
import { ThemeConfig } from "antd";
export const theme: ThemeConfig = {
export const darkTheme: ThemeConfig = {
token: {
colorText: "white",
colorIcon: "white",
@ -18,3 +18,13 @@ export const theme: ThemeConfig = {
},
},
};
export const lightTheme: ThemeConfig = {
token: {
colorPrimary: "#00d8a4",
colorIconHover: "#00d8a4",
borderRadius: 5,
fontFamily: "Comfortaa",
// colorWarningBg: "#001529",
},
};