Pre-upgrade of client plugins

This commit is contained in:
2019-11-06 19:02:58 +00:00
parent 990cd4c2ac
commit c65f99fa75
11 changed files with 477 additions and 451 deletions

View File

@@ -1,10 +1,37 @@
/* xeslint-disable */
import Vue from "vue";
import Vuetify from "vuetify/lib";
//import myLang from "../api/en";
Vue.use(Vuetify);
export default new Vuetify({
// lang: { locales: { myLang }, current: "myLang" },
theme: {
themes: {
light: {
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"
}
}
},
icons: {
iconfont: "mdi"
iconfont: "fa"
}
});
// export default new Vuetify({
// lang: {
// locales: { zhHans, pl, sv },
// current: 'zhHans',
// },
// })