mirror of
https://github.com/maciejpedzich/racemash.git
synced 2024-11-27 16:15:47 +01:00
Add GitHub and Discord branding colors
This commit is contained in:
parent
d4f1cbf637
commit
bf18b7c4c7
@ -18,13 +18,17 @@ export default createVuetify({
|
|||||||
light: {
|
light: {
|
||||||
colors: {
|
colors: {
|
||||||
primary: '#3f51b5',
|
primary: '#3f51b5',
|
||||||
secondary: '#5cbbf6'
|
secondary: '#5cbbf6',
|
||||||
|
github: '#2b3137',
|
||||||
|
discord: '#5865f2'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
colors: {
|
colors: {
|
||||||
primary: '#1a237e',
|
primary: '#1a237e',
|
||||||
secondary: '#3949ab'
|
secondary: '#3949ab',
|
||||||
|
github: '#2b3137',
|
||||||
|
discord: '#5865f2'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -26,10 +26,14 @@ onMounted(() => {
|
|||||||
<v-container>
|
<v-container>
|
||||||
<v-row align="center" justify="center">
|
<v-row align="center" justify="center">
|
||||||
<v-col cols="auto">
|
<v-col cols="auto">
|
||||||
<v-btn size="large" @click="logIn('github')">GitHub</v-btn>
|
<v-btn color="github" size="large" @click="logIn('github')"
|
||||||
|
>GitHub</v-btn
|
||||||
|
>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="auto">
|
<v-col cols="auto">
|
||||||
<v-btn size="large" @click="logIn('discord')">Discord</v-btn>
|
<v-btn color="discord" size="large" @click="logIn('discord')"
|
||||||
|
>Discord</v-btn
|
||||||
|
>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-container>
|
</v-container>
|
||||||
|
Loading…
Reference in New Issue
Block a user