diff --git a/ayanova/src/plugins/vuetify.js b/ayanova/src/plugins/vuetify.js index 8d770830..bbcd45f7 100644 --- a/ayanova/src/plugins/vuetify.js +++ b/ayanova/src/plugins/vuetify.js @@ -5,10 +5,15 @@ import "vuetify/dist/vuetify.min.css"; Vue.use(Vuetify, { iconfont: "fa", theme: { - primary: "#00205B", - secondary: "#00843D", - accent: "#ffff00", - error: "#b71c1c", + 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" } });