From f9d211eb728f4c7b3acc4b2c6a027d7f61281e0b Mon Sep 17 00:00:00 2001 From: Max Richter Date: Thu, 14 Mar 2024 13:02:19 +0100 Subject: [PATCH] feat: introduce css variables --- frontend/src/routes/app.css | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/frontend/src/routes/app.css b/frontend/src/routes/app.css index 0cb0dc3..adde2c5 100644 --- a/frontend/src/routes/app.css +++ b/frontend/src/routes/app.css @@ -22,6 +22,42 @@ :root { font-family: 'Fira Code', monospace; + + /* Colors */ + --primary-color: #007bff; + /* Primary brand color */ + --secondary-color: #6c757d; + /* Secondary color */ + --background-color: #151515; + --background-color-lightest: #ffffff; + --background-color-lighter: #202020; + --background-color-dark: #dae0e5; + --background-color-darkest: #c8d1d7; + /* Background color */ + --text-color: #aeaeae; + /* Text color */ + --accent-color: #ffc107; + /* Accent color */ + + /* Typography */ + --font-family: Arial, sans-serif; + --font-size-base: 16px; + /* Base font size */ + --line-height-base: 1.5; + /* Base line height */ + + /* Spacing */ + --spacing-xs: 4px; + /* Extra small spacing */ + --spacing-sm: 8px; + /* Small spacing */ + --spacing-md: 16px; + /* Medium spacing */ + --spacing-lg: 24px; + /* Large spacing */ + --spacing-xl: 32px; + /* Extra large spacing */ + } body {