1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-26 00:29:38 +02:00
it-tools/src/plugins/vuetify.js

30 lines
504 B
JavaScript
Raw Normal View History

2020-04-25 18:43:17 +02:00
import Vue from 'vue';
import Vuetify, { VSnackbar, VBtn, VIcon } from 'vuetify/lib'
Vue.use(Vuetify, {
components: {
VSnackbar,
VBtn,
VIcon
}
})
export default new Vuetify({
theme: {
themes: {
theme: 'dark',
dark: {
2020-04-25 18:43:17 +02:00
primary: '#4CAF50',
secondary: '#424242',
accent: '#4CAF50',
error: '#FF5252',
info: '#2196F3',
success: '#4CAF50',
warning: '#FFC107'
},
},
},
icons: {
iconfont: 'fa',
2020-04-25 18:43:17 +02:00
},
});