Skip to content

Commit

Permalink
Tune colors
Browse files Browse the repository at this point in the history
  • Loading branch information
g3force committed Jan 27, 2024
1 parent e3ba9e1 commit 557ebd2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const dev = computed(() => {
</div>
</q-page-container>

<q-footer elevated class="bg-grey-8 text-white">
<q-footer elevated class="bg-primary">
<MatchStateToolbar/>
</q-footer>

Expand Down
6 changes: 3 additions & 3 deletions frontend/src/assets/main.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.body--dark {
--q-primary: #487A91;
--q-secondary: #26A69A;
--q-primary: #0794B9;
--q-secondary: #aaa8a8;
--q-accent: #9C27B0;
--q-positive: #21BA45;
--q-negative: #C10015;
Expand All @@ -11,7 +11,7 @@

.body--light {
--q-primary: #0794B9;
--q-secondary: #17DFD5;
--q-secondary: #545454;
--q-accent: #9C27B0;
--q-positive: #21BA45;
--q-negative: #C10015;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/protocol/ProtocolItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function revert() {
<q-icon :name="change.icon" color="primary" size="15px" v-if="dense" class="q-mr-xs"/>
<TeamBadge :team="change.forTeam"/>
<span class="text-weight-medium">{{ change.title }}</span>
<span class="text-grey-8"> - {{ origin }}</span>
<span class="text-secondary"> - {{ origin }}</span>
<OriginIcon :origin="origin"/>
<span v-if="hasGameEventOrigins">(</span>
<OriginIcon
Expand Down

0 comments on commit 557ebd2

Please sign in to comment.