mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-14 20:58:30 +00:00
16 lines
414 B
JavaScript
16 lines
414 B
JavaScript
|
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,
|
||
|
warning: colors.amber,
|
||
|
error: colors.deepOrange.accent4,
|
||
|
success: colors.green.accent3
|
||
|
}
|
||
|
})
|