From ba8eec587949faf1c1afa4e75d0c270732ee2091 Mon Sep 17 00:00:00 2001 From: Nathan Cummins Date: Thu, 28 Aug 2025 16:02:32 +0930 Subject: [PATCH] Add colour options for primary colour --- src/styles/global.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/styles/global.css b/src/styles/global.css index c5120f4..4dabd68 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -5,6 +5,18 @@ @theme { --color-primary: #ff2d00; + --color-primary-50: oklch(1 0.244 31.9); + --color-primary-100: oklch(0.91 0.244 31.9); + --color-primary-200: oklch(0.84 0.244 31.9); + --color-primary-300: oklch(0.77 0.244 31.9); + --color-primary-400: oklch(0.7 0.244 31.9); + --color-primary-500: #ff2d00; + --color-primary-600: oklch(0.55 0.244 31.9); + --color-primary-700: oklch(0.45 0.244 31.9); + --color-primary-800: oklch(0.35 0.244 31.9); + --color-primary-900: oklch(0.18 0.244 31.9); + --color-primary-950: oklch(0.09 0.244 31.9); + --font-header: "Lutschine Bold", sans-serif; --font-header-alt: "Lutschine Regular", sans-serif; --font-body: "Roboto", sans-serif;