it-tools/src/plugins/vuetify.js
Corentin Thomasset 40b2695c8d refactor: font awesome 5 icons
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-06-07 13:39:45 +02:00

30 lines
504 B
JavaScript

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: {
primary: '#4CAF50',
secondary: '#424242',
accent: '#4CAF50',
error: '#FF5252',
info: '#2196F3',
success: '#4CAF50',
warning: '#FFC107'
},
},
},
icons: {
iconfont: 'fa',
},
});