Skip to content

Commit d3d5ab7

Browse files
committed
Change theme colors
1 parent af77962 commit d3d5ab7

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

frontend/src/components/match/ContinueActionButton.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ const color = computed(() => {
2424
case ContinueAction_State.READY_AUTO:
2525
return 'positive'
2626
case ContinueAction_State.READY_MANUAL:
27-
return 'secondary'
27+
return 'primary'
2828
case ContinueAction_State.BLOCKED:
2929
return 'negative'
3030
case ContinueAction_State.WAITING:
3131
return 'warning'
3232
default:
33-
return 'primary'
33+
return 'secondary'
3434
}
3535
})
3636

frontend/src/main.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,17 @@ createApp(App)
2323
.use(Quasar, {
2424
config: {
2525
brand: {
26-
primary: '#1ca3a3',
27-
secondary: '#8511bb',
26+
primary: '#a11a30',
27+
secondary: '#984447',
28+
accent: '#9C27B0',
29+
30+
dark: '#07171a',
31+
'dark-page': '#374040',
32+
33+
positive: '#21BA45',
34+
negative: '#C10015',
35+
info: '#1ad3ed',
36+
warning: '#ddb660'
2837
}
2938
}
3039
})

0 commit comments

Comments
 (0)