-
Notifications
You must be signed in to change notification settings - Fork 2
/
vuetify.options.js
74 lines (73 loc) · 1.66 KB
/
vuetify.options.js
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import {
mdiEmail,
mdiBook,
mdiStore,
mdiText,
mdiCogOutline,
mdiPaletteSwatch,
mdiWeb,
mdiTranslate,
mdiRun,
mdiAccountCircle,
mdiMapMarker,
mdiDownload,
mdiCalendarCheck,
} from '@mdi/js';
// vuetify.options.js
export default {
icons: {
iconfont: 'mdiSvg',
values: {
email: mdiEmail,
book: mdiBook,
store: mdiStore,
notes: mdiText,
settings: mdiCogOutline,
style: mdiPaletteSwatch,
language: mdiWeb,
translate: mdiTranslate,
run: mdiRun,
account_circle: mdiAccountCircle,
place: mdiMapMarker,
get_app: mdiDownload,
'calendar-check': mdiCalendarCheck,
},
},
// lang: {},
// rtl: true,
// theme: { disable: true },
theme: {
themes: {
light: {
// orange: '#e0611d'
// primary: '#4DBA87',
/*
My text color is #4FBA88 at 14 px and regular weight
My background color is #F5F5F5
My design must be AAA compliant
https://accessible-colors.com/
*/
primary: '#255D43',
/*
My text color is #4FBA87 at 14 px and regular weight
My background color is #F5F5F5
My design must be AA compliant
https://accessible-colors.com/
*/
// primary: '#317E5A',
// primary: '#e0611d',
// primary: '#8A3C12',
},
dark: {
// primary: '#4DBA87',
/**
My text color is #4FBA88 at 14px and regular weight
My background color is #F5F5F5
My design must be AAA compliant
https://accessible-colors.com/
*/
primary: '#67C498',
},
},
},
};