forked from bitwave-tv/bitwave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvuetify.options.js
28 lines (27 loc) · 890 Bytes
/
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
import colors from 'vuetify/es5/util/colors'
// vuetify.options.js
export default {
breakpoint: {},
defaultAssets: false,
icons: {},
lang: {},
rtl: false,
theme: {
dark: true,
themes: {
dark: { // swap primary to #13a9fe
primary: '#13a9fe', // colors.yellow.base // #ffeb3b
anchor: '#13a9fe',
secondary: '#ff4b66', // colors.grey.darken3 // #424242
accent: '#ac4efe', // colors.yellow.accent1, // #82B1FF
// accent: '#ffeb3b', // colors.yellow.accent1, // #82B1FF
error: colors.red.accent2, // #FF5252
info: colors.blue.base, // #2196F3
success: colors.green.base, // #4CAF50
warning: colors.amber.base, // #FFC107
darkwave: '#0a0a19',
// accentwave: '#262639',
},
},
},
}