-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.config.js
More file actions
30 lines (28 loc) · 768 Bytes
/
app.config.js
File metadata and controls
30 lines (28 loc) · 768 Bytes
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
import colors from 'vuetify/es5/util/colors'
const primaryColor = colors.blue.base
export default {
name: 'FinWa',
host: 'https://finwa.yeger.eu',
theme: {
primary: primaryColor,
light: {
primary: primaryColor,
secondary: colors.amber.darken4,
info: colors.teal.lighten1,
warning: colors.amber.base,
error: colors.deepOrange.accent4,
success: colors.green.accent3,
background: colors.shades.white,
},
dark: {
primary: primaryColor,
accent: colors.grey.darken3,
secondary: colors.orange.lighten2,
info: colors.teal.lighten3,
warning: colors.amber.base,
error: colors.deepOrange.accent4,
success: colors.green.accent3,
background: '#121212',
},
},
}