19 lines
No EOL
486 B
JavaScript
19 lines
No EOL
486 B
JavaScript
import Vue from 'vue'
|
|
import Vuetify from 'vuetify/lib'
|
|
import colors from 'vuetify/es5/util/colors'
|
|
import 'material-design-icons-iconfont/dist/material-design-icons.css'
|
|
|
|
Vue.use(Vuetify, {
|
|
theme: {
|
|
primary: colors.blue.darken2,
|
|
accent: colors.grey.darken3,
|
|
secondary: colors.amber.darken3,
|
|
info: colors.teal.lighten1,
|
|
warning: colors.amber.base,
|
|
error: colors.deepOrange.accent4,
|
|
success: colors.green.accent3
|
|
},
|
|
icons: {
|
|
iconfont: 'md',
|
|
},
|
|
}) |