feat: update navbar and add footer, we have global css files now

This commit is contained in:
JustTemmie 2025-05-28 07:13:06 +02:00
parent 45c7311621
commit ed076c3edc
6 changed files with 181 additions and 36 deletions

6
public/global.css Normal file
View file

@ -0,0 +1,6 @@
.pansexual-gradient {
background: linear-gradient(to right, #FE218C, #FED84E, #1CB3F7);
background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}

31
public/variables.css Normal file
View file

@ -0,0 +1,31 @@
/* this file may want to be moved to a /styles folder, or /assets folder, or smth */
:root {
--text-colour: #141210;
--background-colour: #f4ebe0;
--background-secondary-colour: #efe4db;
--primary-colour: #f97635;
--secondary-colour: #cab39b;
--tertiary-colour: #e8ac84;
--accent-colour: #ed7a41;
}
@media (prefers-color-scheme: dark) {
:root {
--text-colour: #efedec;
--background-colour: #201d19;
--background-secondary-colour: #1d1915;
--primary-colour: #f97635;
--secondary-colour: #b35618;
--tertiary-colour: #7c4018;
--accent-colour: #cc764a;
}
}
/* unchanging no matter the theme */
:root {
--text-on-primary-colour: #fff;
--text-on-secondary-colour: #fff;
--text-on-accent-colour: #fff;
}