-
Notifications
You must be signed in to change notification settings - Fork 2
/
vuetify.config.ts
43 lines (41 loc) · 1.01 KB
/
vuetify.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
35
36
37
38
39
40
41
42
43
import { defineVuetifyConfiguration } from 'vuetify-nuxt-module/custom-configuration'
import type { ThemeDefinition } from 'vuetify'
const LVDark: ThemeDefinition = {
dark: true,
colors: {
primary: "#47978F",
secondary: "#424242",
background: "#000000",
tabs: "#1E1E1E",
foreground: "#323232"
},
}
const LVLight: ThemeDefinition = {
dark: false,
colors: {
primary: "#47978F",
secondary: "#476460",
background: "#FFFFFF",
tabs: "#476460",
foreground: "#EBEFED"
},
}
export default defineVuetifyConfiguration({
labComponents: ["VTreeview", "VTreeviewGroup", "VTreeviewItem"],
theme: {
defaultTheme: 'LVDark',
themes: {
LVDark,
LVLight
},
variations: {
colors: ['primary', 'secondary', 'tabs', 'foreground', 'surface'],
lighten: 5,
darken: 5,
}
},
icons: {
defaultSet: 'mdi',
sets: ['mdi', 'fa']
}
})