-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvuetify.js
More file actions
40 lines (35 loc) · 753 Bytes
/
vuetify.js
File metadata and controls
40 lines (35 loc) · 753 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
31
32
33
34
35
36
37
38
39
40
// Styles
import '@mdi/font/css/materialdesignicons.css'
import 'vuetify/styles'
// Vuetify
import { createVuetify } from 'vuetify'
// Translations provided by Vuetify
import { he, en } from 'vuetify/locale'
const myCustomLightTheme = {
dark: false,
colors: {
background: '#FFFFFF',
surface: '#FFFFFF',
primary: '#3678f4',
'primary-darken-1': '#3700B3',
secondary: '#4994EC',
'secondary-darken-1': '#018786',
error: '#B00020',
info: '#2196F3',
success: '#4CAF50',
warning: '#FB8C00',
}
}
export default createVuetify({
locale: {
locale: 'he',
fallback: 'en',
messages: { he, en }
},
theme: {
defaultTheme: 'myCustomLightTheme',
themes: {
myCustomLightTheme,
}
}
})