mirror of
https://github.com/Art051/it-tools.git
synced 2025-08-11 19:29:03 +00:00
feat(style): theme overrides
This commit is contained in:
25
src/themes.ts
Normal file
25
src/themes.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { GlobalThemeOverrides } from 'naive-ui';
|
||||
|
||||
export const lightThemeOverrides: GlobalThemeOverrides = {
|
||||
Layout: { color: '#f1f5f9' },
|
||||
};
|
||||
|
||||
export const darkThemeOverrides: GlobalThemeOverrides = {
|
||||
common: {
|
||||
primaryColor: '#1ea54cFF',
|
||||
primaryColorHover: '#36AD6AFF',
|
||||
primaryColorPressed: '#0C7A43FF',
|
||||
primaryColorSuppl: '#36AD6AFF',
|
||||
},
|
||||
|
||||
Layout: {
|
||||
color: '#121212',
|
||||
siderColor: '#1e1e1e',
|
||||
siderBorderColor: 'transparent',
|
||||
},
|
||||
|
||||
Card: {
|
||||
color: '#1e1e1e',
|
||||
borderColor: 'transparent',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user