From 5a28fb9bf8b07f8437a6f466555bfc852f6d493e Mon Sep 17 00:00:00 2001 From: lzigmann Date: Thu, 17 Apr 2025 18:56:44 +0200 Subject: [PATCH] css: add style.css --- css/style.css | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 css/style.css diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..e4b28f1 --- /dev/null +++ b/css/style.css @@ -0,0 +1,37 @@ +:root { + --base: #191724; + --surface: #1f1d2e; + --overlay: #26233a; + --muted: #6e6a86; + --subtle: #908caa; + --text: #e0def4; + --love: #eb6f92; + --gold: #f6c177; + --rose: #ebbcba; + --pine: #31748f; + --foam: #9ccfd8; + --iris: #c4a7e7; + --highlightLow: #21202e; + --highlightMed: #403d52; + --highlightHigh: #524f67; +} + +html { + background-color: var(--base); + color: var(--text); +} + +body { + min-height: 90vh; + margin: 1em auto; + width: min(40em, 90%); + background-color: var(--surface); + border: 1px solid var(--highlightMed); + padding: 1em; + font-family: serif; + font-size: 110%; +} + +a { + color: var(--iris); +} \ No newline at end of file