-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
34 lines (33 loc) · 878 Bytes
/
app.config.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
import { _colors, _fontFamily } from '#tailwind-config/theme.mjs'
export default defineAppConfig({
naiveui: {
themeConfig: {
shared: {
common: {
fontFamily: _fontFamily.sans.join(', '),
},
},
light: {
common: {
primaryColor: _colors.teal[600],
primaryColorHover: _colors.teal[500],
primaryColorPressed: _colors.teal[700],
},
},
dark: {
common: {
primaryColor: _colors.teal[500],
primaryColorHover: _colors.teal[400],
primaryColorPressed: _colors.teal[600],
bodyColor: _colors.slate[800],
cardColor: _colors.slate[900],
},
Layout: {
siderColor: _colors.slate[800],
headerColor: _colors.slate[800],
footerColor: _colors.slate[800],
},
},
},
},
})