Updaated all color values to include Alpha value so pickers offer it as an option to user

This commit is contained in:
2022-03-09 16:19:54 +00:00
parent 8b4762c1a3
commit 9f2a01a31b
28 changed files with 48 additions and 51 deletions

View File

@@ -1534,21 +1534,21 @@ export default new Vuetify({
theme: {
themes: {
light: {
primary: "#00205B", //dark blue
secondary: "#00843D", //green
accent: "#db7022", //lighter orangey red, more friendly looking
error: "#ff5252", //lighter red
disabled: "#c7c7c7",
readonlybanner: "#808080"
primary: "#00205BFF", //dark blue
secondary: "#00843DFF", //green
accent: "#DB7022FF", //lighter orangey red, more friendly looking
error: "#FF5252FF", //lighter red
disabled: "#C7C7C7FF",
readonlybanner: "#808080FF"
},
dark: {
//color adjuster tool: https://www.hexcolortool.com/#00205c
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"
primary: "#7F9FDAFF", //dark blue LIGHTENED 50%
secondary: "#006B24FF", //green DARKENED 10%
accent: "#DB7022FF", //lighter orangey red, more friendly looking
error: "#FF5252FF", //lighter red
disabled: "#C7C7C7FF",
readonlybanner: "#808080FF"
}
},
options: { variations: false }