-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvuetify.config.ts
More file actions
58 lines (57 loc) · 1.16 KB
/
vuetify.config.ts
File metadata and controls
58 lines (57 loc) · 1.16 KB
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
55
56
57
58
import { defineVuetifyConfiguration } from "vuetify-nuxt-module/custom-configuration";
export default defineVuetifyConfiguration({
defaults: {
global: {
flat: true,
ripple: false,
rounded: "lg",
},
VCard: {
border: true,
},
VAppBar: {
border: false,
rounded: false,
},
VFooter: {
border: false,
rounded: false,
},
VExpansionPanels: {
border: true,
rounded: false,
},
VBtn: {
rounded: "md",
},
},
theme: {
defaultTheme: "dark",
themes: {
light: {
colors: {
primary: "#006A71",
secondary: "#48A6A7",
background: "#ffffff",
surface: "#ffffff",
"secondary-text": "#003a3d",
error: "#dc2626",
border: "#e5e7eb",
panels: "#f6f6f6",
},
},
dark: {
colors: {
primary: "#1f2937",
secondary: "#374151",
background: "#111827",
surface: "#111827",
"secondary-text": "#b3b4b7",
error: "#dc2626",
border: "#374151",
panels: "#1a212f",
},
},
},
},
});