forked from CorentinTh/it-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemes.ts
54 lines (44 loc) · 930 Bytes
/
themes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import type { GlobalThemeOverrides } from 'naive-ui';
export const lightThemeOverrides: GlobalThemeOverrides = {
Menu: {
itemHeight: '32px',
},
Layout: { color: '#f1f5f9' },
AutoComplete: {
peers: {
InternalSelectMenu: { height: '500px' },
},
},
};
export const darkThemeOverrides: GlobalThemeOverrides = {
common: {
primaryColor: '#1ea54cFF',
primaryColorHover: '#36AD6AFF',
primaryColorPressed: '#0C7A43FF',
primaryColorSuppl: '#36AD6AFF',
},
Notification: {
color: '#333333',
},
AutoComplete: {
peers: {
InternalSelectMenu: { height: '500px', color: '#1e1e1e' },
},
},
Menu: {
itemHeight: '32px',
},
Layout: {
color: '#1c1c1c',
siderColor: '#232323',
siderBorderColor: 'transparent',
},
Card: {
color: '#232323',
borderColor: '#282828',
},
Table: {
tdColor: '#232323',
thColor: '#353535',
},
};