ovdashboard/ui/src/plugins/vuetify.ts

26 lines
481 B
TypeScript
Raw Normal View History

2022-09-09 16:38:12 +00:00
import Vue from 'vue';
import Vuetify from 'vuetify/lib/framework';
Vue.use(Vuetify);
export default new Vuetify({
2022-09-12 00:38:28 +00:00
theme: {
themes: {
light: {
// ultramarine blue
primary: "#039",
// cyan 30 percent
secondary: "#aae0f9",
// yellow
accent: "#ff0",
// cyan
info: "#00aeef",
// gen: coolors.co
error: "#f66",
success: "#23ce6b",
warning: "#d36135",
},
},
},
2022-09-09 16:38:12 +00:00
});