2022-04-04 14:07:24 +02:00
|
|
|
import type { GlobalThemeOverrides } from 'naive-ui';
|
|
|
|
|
|
|
|
export const lightThemeOverrides: GlobalThemeOverrides = {
|
2022-04-15 01:35:28 +02:00
|
|
|
Menu: {
|
|
|
|
itemHeight: '32px',
|
|
|
|
},
|
|
|
|
|
2022-04-04 14:07:24 +02:00
|
|
|
Layout: { color: '#f1f5f9' },
|
2022-12-16 21:44:54 +01:00
|
|
|
|
|
|
|
AutoComplete: {
|
|
|
|
peers: {
|
|
|
|
InternalSelectMenu: { height: '500px' },
|
|
|
|
},
|
|
|
|
},
|
2022-04-04 14:07:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export const darkThemeOverrides: GlobalThemeOverrides = {
|
|
|
|
common: {
|
|
|
|
primaryColor: '#1ea54cFF',
|
|
|
|
primaryColorHover: '#36AD6AFF',
|
|
|
|
primaryColorPressed: '#0C7A43FF',
|
|
|
|
primaryColorSuppl: '#36AD6AFF',
|
|
|
|
},
|
|
|
|
|
2022-12-16 21:44:54 +01:00
|
|
|
AutoComplete: {
|
|
|
|
peers: {
|
|
|
|
InternalSelectMenu: { height: '500px', color: '#1e1e1e' },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2022-04-15 01:35:28 +02:00
|
|
|
Menu: {
|
|
|
|
itemHeight: '32px',
|
|
|
|
},
|
|
|
|
|
2022-04-04 14:07:24 +02:00
|
|
|
Layout: {
|
|
|
|
color: '#121212',
|
|
|
|
siderColor: '#1e1e1e',
|
|
|
|
siderBorderColor: 'transparent',
|
|
|
|
},
|
|
|
|
|
|
|
|
Card: {
|
|
|
|
color: '#1e1e1e',
|
|
|
|
borderColor: 'transparent',
|
|
|
|
},
|
2022-11-14 22:13:26 +01:00
|
|
|
|
|
|
|
Table: {
|
|
|
|
tdColor: '#1e1e1e',
|
|
|
|
thColor: '#353535',
|
|
|
|
},
|
2022-04-04 14:07:24 +02:00
|
|
|
};
|