added some base code

This commit is contained in:
CodingPhoenixx
2026-02-12 14:42:45 +01:00
parent a62ce26bfa
commit 49bf7522b9
13 changed files with 236 additions and 46 deletions
+37
View File
@@ -0,0 +1,37 @@
:root {
--color-bg: #f5f5f5;
--color-bg-nav: #ffffffcc;
--color-text: #111;
--color-accent: #2b6cb0;
--color-border: #ddd;
}
:root[data-theme='dark'] {
--color-bg: #1a1a1a;
--color-bg-nav: #222;
--color-text: #f5f5f5;
--color-accent: #63b3ed;
--color-border: #333;
}
* {
transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
html,
body {
margin: 0;
padding: 0;
background: var(--color-bg);
color: var(--color-text);
font-family: 'Inter', system-ui, sans-serif;
}
a {
color: var(--color-accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}