update colours
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Cat Flynn 2025-04-24 09:58:01 +01:00
parent 5d0a8731e5
commit 052254894a
2 changed files with 19 additions and 12 deletions

View File

@ -1,12 +1,4 @@
:root { :root {
/* Special */
--background: #eee;
--background-alt: #b8b8b8;
--foreground: #444;
--foreground-inactive: #777;
--accent: #ff369a;
--clear: rgba(0,0,0,0);
/* Colors */ /* Colors */
--color0: #0000ff; --color0: #0000ff;
--color1: #00ff00; --color1: #00ff00;
@ -14,6 +6,22 @@
--color3: #ff00ff; --color3: #ff00ff;
--color4: #ffff00; --color4: #ffff00;
--color5: #00ffff; --color5: #00ffff;
--clear: rgba(0,0,0,0);
--error: #f0f;
--dblue: #211953;
--lblue: #748FE8;
--lpink: #F8C8DC;
--pink: #eeafbd;
--purple: #330e39;
--white: var(--lpink);
/* Special */
--background: var(--lpink);
--background-alt: var(--dblue);
--foreground: var(--lblue);
--foreground-inactive: var(--dblue);
--accent: var(--lblue);
/* TODO: extract general varibles file ? */ /* TODO: extract general varibles file ? */
/* Text */ /* Text */

View File

@ -193,18 +193,17 @@ ul.nav-links {
margin: 0; margin: 0;
margin-left: -1.5em; margin-left: -1.5em;
padding: .2em 1.3em; padding: .2em 1.3em;
color: var(--foreground-inactive); color: var(--white);
font-size: 1.1em; font-size: 1.1em;
/*font-weight: bold;*/
line-height: 1.25em; line-height: 1.25em;
background-color: var(--background); background-color: var(--purple);
border-radius: 1.5em; border-radius: 1.5em;
width: 100%; width: 100%;
border-color: var(--background-alt); border-color: var(--clear);
border-width: 3px; border-width: 3px;
border-style: solid; border-style: solid;
} }