Skip to content

Commit

Permalink
change default color
Browse files Browse the repository at this point in the history
  • Loading branch information
CortezSMz committed Apr 8, 2022
1 parent 632cf7a commit 7d592d0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
16 changes: 6 additions & 10 deletions src/components/Controls.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<template>
<v-footer color="primary lighten-1" app>
<v-footer color="primary" app>
<v-row justify="center" align="center" class="footer-row text-center">
<v-col cols="2">
<v-btn
light
color="primary lighten-1"
color="primary"
fab
small
href="https://github.com/CortezSMz/connectfour"
Expand All @@ -30,11 +30,7 @@
eager
overlay-opacity="0.05"
>
<v-alert
v-model="finished"
class="text-center"
color="primary lighten-1"
>
<v-alert v-model="finished" class="text-center" color="primary">
{{
this.$parent.manager.state.finished
? this.$parent.manager.state.winner === "TIE"
Expand All @@ -50,11 +46,11 @@
<font-awesome-icon
icon="gear"
size="2x"
:style="{ color: 'var(--v-primary-lighten1)' }"
:style="{ color: 'var(--v-primary-base)' }"
/>
</v-btn>
</template>
<v-sheet class="footer-sheet" color="primary lighten-1">
<v-sheet class="footer-sheet" color="primary">
<v-row align="center" justify="center">
<v-col cols="12">
<h3>Connect Four</h3>
Expand All @@ -77,7 +73,7 @@
<font-awesome-icon
icon="save"
size="2x"
:style="{ color: 'var(--v-primary-lighten1)' }"
:style="{ color: 'var(--v-primary-base)' }"
/>
</v-btn>
</v-row>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vuetify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default new Vuetify({
},
themes: {
dark: {
primary: "#2361d7",
primary: "#4e79f4",
secondary: "#FF0000",
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ html {
}

.v-btn {
color: var(--v-primary-lighten1) !important;
color: var(--v-primary-base) !important;
font-weight: 600 !important;
}
2 changes: 1 addition & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ module.exports = defineConfig({
transpileDependencies: true,
pwa: {
name: "Connect Four - Alexandre Cortez",
themeColor: "#2361d7",
themeColor: "#4e79f4",
},
});

0 comments on commit 7d592d0

Please sign in to comment.