forked from Albatross/projectx
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
421 B
24 lines
421 B
5 years ago
|
import Vue from 'vue';
|
||
|
import Vuetify from 'vuetify/lib';
|
||
|
|
||
|
Vue.use(Vuetify);
|
||
|
|
||
|
export default new Vuetify({
|
||
|
theme: {
|
||
|
options: {
|
||
|
customProperties: true,
|
||
|
},
|
||
|
themes: {
|
||
|
light: {
|
||
|
primary: '#ee44aa',
|
||
|
secondary: '#424242',
|
||
|
accent: '#82B1FF',
|
||
|
error: '#FF5252',
|
||
|
info: '#2196F3',
|
||
|
success: '#4CAF50',
|
||
|
warning: '#FFC107'
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|