HUGE REFACTOR / CLEANUP

if there is a issue it's probably something in here that was changed
This commit is contained in:
2021-09-28 20:19:44 +00:00
parent 51eddfede9
commit d0afdd9855
238 changed files with 3127 additions and 8614 deletions

View File

@@ -1,5 +1,3 @@
/* xeslint-disable */
import Vue from "vue";
import Vuetify from "vuetify/lib";
@@ -11,6 +9,7 @@ import { library } from "@fortawesome/fontawesome-svg-core";
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; //https://github.com/FortAwesome/vue-fontawesome
/*
NOTES: in case need to get fancy
https://github.com/FortAwesome/vue-fontawesome#advanced
import {
FontAwesomeIcon,
@@ -1511,20 +1510,19 @@ export default new Vuetify({
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: "#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
primary: "#00205B", //dark blue
secondary: "#00843D", //green
accent: "#db7022", //lighter orangey red, more friendly looking
error: "#ff5252", //lighter red
disabled: "#c7c7c7",
readonlybanner: "#808080"
},
dark: {
//here you will define primary secondary stuff for dark theme
//color adjuster tool: https://www.hexcolortool.com/#00205c
primary: "#7F9FDA", //Canucks dark blue LIGHTENED 50%
secondary: "#006B24", //canucks green DARKENED 10%
accent: "#db7022", //lighter orangey red, more friendly looking though not as much clarity it seems
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
primary: "#7F9FDA", //dark blue LIGHTENED 50%
secondary: "#006B24", //green DARKENED 10%
accent: "#db7022", //lighter orangey red, more friendly looking
error: "#ff5252", //lighter red
disabled: "#c7c7c7",
readonlybanner: "#808080"
}