You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
644 B
28 lines
644 B
import Vue from "vue";
|
|
import Vuetify from "vuetify";
|
|
import colors from "vuetify/lib/util/colors";
|
|
import "vuetify/dist/vuetify.min.css";
|
|
import "@mdi/font/css/materialdesignicons.css";
|
|
Vue.use(Vuetify);
|
|
|
|
const options = {
|
|
theme: {
|
|
light: true,
|
|
themes: {
|
|
light: {
|
|
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: "mdi"
|
|
}
|
|
};
|
|
|
|
export default new Vuetify(options);
|