52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
/* Xeslint-disable */
|
|
|
|
// import Vue from "vue";
|
|
// import Vuetify from "vuetify";
|
|
// import "vuetify/dist/vuetify.min.css";
|
|
|
|
// Vue.use(Vuetify, {
|
|
// iconfont: "fa",
|
|
// theme: {
|
|
// primary: "#00205B", //Canucks dark blue
|
|
// secondary: "#00843D", //canucks green
|
|
|
|
// accent: "#db7022", //lighter orangey red, more friendly looking though not as much clarity it seems
|
|
// //error: "#b71c1c", //dark red, easy to read but not error-y enough possibly
|
|
|
|
// //accent: "#BD491A", //dark orangey red, more clarity, less friendly looking
|
|
// error: "#ff5252", //lighter red, have to see if it's good for all screens and sizes as it's a bit light but it stands out as an error condition better
|
|
|
|
// disabled: "#e0e0e0"
|
|
// }
|
|
// });
|
|
|
|
// v2.0
|
|
// src/plugins/vuetify.js
|
|
|
|
import Vue from "vue";
|
|
import Vuetify from "vuetify/lib";
|
|
|
|
// console.log(Vue);
|
|
// console.log(Vuetify);
|
|
// debugger;
|
|
|
|
Vue.use(Vuetify);
|
|
|
|
export default new Vuetify({
|
|
icons: {
|
|
iconfont: "fa",
|
|
theme: {
|
|
primary: "#00205B", //Canucks dark blue
|
|
secondary: "#00843D", //canucks green
|
|
|
|
accent: "#db7022", //lighter orangey red, more friendly looking though not as much clarity it seems
|
|
//error: "#b71c1c", //dark red, easy to read but not error-y enough possibly
|
|
|
|
//accent: "#BD491A", //dark orangey red, more clarity, less friendly looking
|
|
error: "#ff5252", //lighter red, have to see if it's good for all screens and sizes as it's a bit light but it stands out as an error condition better
|
|
|
|
disabled: "#e0e0e0"
|
|
}
|
|
}
|
|
});
|