added new color theme
parent
8a6c959240
commit
9bca0225dd
|
|
@ -0,0 +1,11 @@
|
||||||
|
Your selected colors:
|
||||||
|
|
||||||
|
Primary: #daeafb (RGB: 218, 234, 251)
|
||||||
|
Secondary: #000000 (RGB: 0, 0, 0)
|
||||||
|
Primary Button: #5b9a66 (RGB: 91, 154, 102)
|
||||||
|
Secondary Button: #120320 (RGB: 18, 3, 32)
|
||||||
|
Accent: #b574f1 (RGB: 181, 116, 241)
|
||||||
|
|
||||||
|
Realtime Colors link for selected colors: https://realtimecolors.com/?colors=daeafb-000000-5b9a66-120320-b574f1
|
||||||
|
|
||||||
|
Thanks for using RealtimeColors.com!
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
|
|
@ -4,7 +4,7 @@ import { NavigationModel } from "./components/Index.js";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="app-containe">
|
<div class="app-container bg-background">
|
||||||
<NavigationModel />
|
<NavigationModel />
|
||||||
<div class="container px-3 mx-auto">
|
<div class="container px-3 mx-auto">
|
||||||
<router-view class="mt-4" />
|
<router-view class="mt-4" />
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<div class="exerciseList">
|
<div class="exerciseList">
|
||||||
<ul class="exerciseItem" v-for="exercise in filterExercises()" :key="exercise.name">
|
<ul class="exerciseItem" v-for="exercise in filterExercises()" :key="exercise.name">
|
||||||
<button @click="exerciseClick(exercise)" class="btn bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4" >{{ exercise.name }}</button>
|
<button @click="exerciseClick(exercise)" class="btn bg-secondary-button hover:bg-accent text-text font-bold py-2 px-4" >{{ exercise.name }}</button>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div v-for="selectedExercise in selectedExercises" :key="selectedExercise" class="show">
|
<div v-for="selectedExercise in selectedExercises" :key="selectedExercise" class="show">
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
justify-content: start;
|
justify-content: start;
|
||||||
background: rgb(36, 165, 75);
|
background: rgb(91, 154, 102);
|
||||||
}
|
}
|
||||||
.navbar-nav{
|
.navbar-nav{
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -39,9 +39,14 @@
|
||||||
color: white;
|
color: white;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-item:hover{
|
.nav-item:hover{
|
||||||
color: orangered;
|
color: rgb(91, 154, 102);
|
||||||
|
background: #4510b7;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
transition: 0.5s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo{
|
.logo{
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,15 @@ export default {
|
||||||
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
||||||
],
|
],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {},
|
extend: {
|
||||||
|
colors: {
|
||||||
|
'primary-button':'#5b9a66',
|
||||||
|
'secondary-button':'#0d1406',
|
||||||
|
'background':'#000000',
|
||||||
|
'text': '#daeafb',
|
||||||
|
'accent': '#b574f1',
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
plugins: [],
|
plugins: [],
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue