order status updates working

This commit is contained in:
Tim Olson
2023-11-08 23:18:36 -04:00
parent 077e664a30
commit f1bc632074
14 changed files with 259 additions and 21 deletions

View File

@@ -12,19 +12,29 @@ import 'vuetify/styles'
import { createVuetify } from 'vuetify'
// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
const black = '#333'
export default createVuetify({
theme: {
themes: {
light: {
colors: {
background: '#fffefd',
surface: '#fffefd',
primary: '#1A6CAB',
background: '#fdfffe',
surface: '#fdfffe',
// primary: '#1A6CAB',
primary: '#00CC33',
// secondary: '#59B8FF',
success: '#00CC33',
// info: '#fba92c',
warning: '#ffcc00',
error: '#CC0033',
"on-background": black,
"on-surface": black,
"on-primary": black,
"on-secondary": black,
"on-success": black,
"on-info": black,
"on-warning": black,
"on-error": black,
},
dark: false,
variables: {},