added new color theme

main
roberts 2023-05-16 19:14:44 +02:00
parent 8a6c959240
commit 9bca0225dd
6 changed files with 29 additions and 5 deletions

11
colors(1)/colors.txt Normal file
View File

@ -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!

BIN
colors(1)/palette.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -4,7 +4,7 @@ import { NavigationModel } from "./components/Index.js";
</script>
<template>
<div class="app-containe">
<div class="app-container bg-background">
<NavigationModel />
<div class="container px-3 mx-auto">
<router-view class="mt-4" />

View File

@ -3,7 +3,7 @@
<div class="flex">
<div class="exerciseList">
<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>
</div>
<div v-for="selectedExercise in selectedExercises" :key="selectedExercise" class="show">

View File

@ -25,7 +25,7 @@
width: 100%;
height: 4rem;
justify-content: start;
background: rgb(36, 165, 75);
background: rgb(91, 154, 102);
}
.navbar-nav{
display: flex;
@ -39,9 +39,14 @@
color: white;
text-decoration: none;
}
.nav-item:hover{
color: orangered;
color: rgb(91, 154, 102);
background: #4510b7;
border-radius: 0.5rem;
transition: 0.5s;
}
.logo{
display: flex;
}

View File

@ -5,7 +5,15 @@ export default {
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
extend: {
colors: {
'primary-button':'#5b9a66',
'secondary-button':'#0d1406',
'background':'#000000',
'text': '#daeafb',
'accent': '#b574f1',
}
},
},
plugins: [],
}