|
@@ -1,25 +1,47 @@
|
|
export const themes: any = {
|
|
export const themes: any = {
|
|
dark: {
|
|
dark: {
|
|
- "--color-primary": "#4583ff",
|
|
|
|
- "--color-primary-hover": "#1677ff",
|
|
|
|
- "--color-primary-disabled": "#bae7ff",
|
|
|
|
- "--color-background": "#1e2430",
|
|
|
|
- "--color-background-active": "#161f2c",
|
|
|
|
- "--color-background-hover": "#181f29",
|
|
|
|
- "--color-background-input": "#303746",
|
|
|
|
- "--color-background-editor": "#0f151f",
|
|
|
|
- "--color-background-popup": "#303746",
|
|
|
|
|
|
+ '--color': '#bdc7db',
|
|
|
|
+ '--color-title': '#e3e8f4',
|
|
|
|
+ '--color-desc': '#617b91',
|
|
|
|
+ '--color-gray': '#4f5b75',
|
|
|
|
+ '--color-background': '#1e2430',
|
|
|
|
+ '--color-background-active': '#161f2c',
|
|
|
|
+ '--color-background-hover': '#181f29',
|
|
|
|
+ '--color-background-input': '#303746',
|
|
|
|
+ '--color-background-popup': '#303746',
|
|
|
|
+ '--color-background-popup-hover': '#454f64',
|
|
|
|
+ '--color-border': '#000000',
|
|
|
|
+ '--color-border-input': '#535f79',
|
|
|
|
+ '--color-border-input-hover': '#454f64',
|
|
|
|
+ '--color-scrollbar': '#dad7d7',
|
|
|
|
+ '--color-scrollbar-hover': '#e5e5e5',
|
|
|
|
+ '--td-component-border': '#42516c',
|
|
|
|
+ '--color-background-editor': '#181b24',
|
|
|
|
+ '--color-border-editor': '#1e2430',
|
|
|
|
+ '--color-border-popup': 'transparent',
|
|
|
|
+ '--shadow-popup': 'none',
|
|
},
|
|
},
|
|
light: {
|
|
light: {
|
|
- "--color-primary": "#1890ff",
|
|
|
|
- "--color-primary-hover": "#1791ff",
|
|
|
|
- "--color-primary-disabled": "#bae7ff",
|
|
|
|
- "--color-background": "#fff",
|
|
|
|
- "--color-background-active": "#161f2c",
|
|
|
|
- "--color-background-hover": "#181f29",
|
|
|
|
- "--color-background-input": "#303746",
|
|
|
|
- "--color-background-editor": "#0f151f",
|
|
|
|
- "--color-background-popup": "#303746",
|
|
|
|
|
|
+ '--color': '#595959',
|
|
|
|
+ '--color-title': '#262626',
|
|
|
|
+ '--color-desc': '#8c8c8c',
|
|
|
|
+ '--color-gray': '#bfbfbf',
|
|
|
|
+ '--color-background': '#ffffff',
|
|
|
|
+ '--color-background-active': '#f7f8f9',
|
|
|
|
+ '--color-background-hover': '#181f29',
|
|
|
|
+ '--color-background-input': '#303746',
|
|
|
|
+ '--color-background-popup': '#ffffff',
|
|
|
|
+ '--color-background-popup-hover': '#454f64',
|
|
|
|
+ '--color-border': '#000000',
|
|
|
|
+ '--color-border-input': '#535f79',
|
|
|
|
+ '--color-border-input-hover': '#454f64',
|
|
|
|
+ '--color-scrollbar': '#dad7d7',
|
|
|
|
+ '--color-scrollbar-hover': '#e5e5e5',
|
|
|
|
+ '--td-component-border': '#42516c',
|
|
|
|
+ '--color-background-editor': '#181b24',
|
|
|
|
+ '--color-border-editor': '#1e2430',
|
|
|
|
+ '--color-border-popup': '#dddddd',
|
|
|
|
+ '--shadow-popup': '0 5px 8px 0px rgb(0 0 0 / 10%)',
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
|