Nuxt/examples/storybook/plugins/vuetify.js

16 lines
419 B
JavaScript
Raw Normal View History

2018-02-06 02:36:22 +00:00
import Vue from 'vue'
import Vuetify from 'vuetify'
import colors from 'vuetify/es5/util/colors'
Vue.use(Vuetify, {
theme: {
primary: '#121212', // a color that is not in the material colors palette
accent: colors.grey.darken3,
secondary: colors.amber.darken3,
info: colors.teal.lighten1,
2018-02-06 11:56:28 +00:00
warning: colors.amber.base,
2018-02-06 02:36:22 +00:00
error: colors.deepOrange.accent4,
success: colors.green.accent3
}
})