From 5605163607e28abe57b69cb16a3fd7e63f538b19 Mon Sep 17 00:00:00 2001 From: KingRainbow44 Date: Thu, 18 May 2023 22:20:38 -0400 Subject: [PATCH] Add/fix colors also fix tailwind --- src/handbook/src/css/App.scss | 19 +++++++++++++++++++ src/handbook/src/css/widgets/Card.scss | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/src/handbook/src/css/App.scss b/src/handbook/src/css/App.scss index 13e54ff32..60db90723 100644 --- a/src/handbook/src/css/App.scss +++ b/src/handbook/src/css/App.scss @@ -1,3 +1,7 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + @font-face { font-family: 'Poppins'; src: url('/data/assets/Poppins-Regular.ttf') @@ -15,6 +19,21 @@ html { --legendary-color: #926d45; --epic-color: #7b5c90; + // pq = Primary Quest + --pq-bg: #333d49; + --pq-text: #d3bc8e; + --pq-text2: #8c836f; + + --quest-unselected: #4e5765; + --quest-selected: #ede5da; + --quest-accent: #9b927d; + + // qt = Quest Text + --qt-unselected: #ede5da; + --qt2-unselected: #8e9295; + --qt-selected: #4d5568; + --qt2-selected: #a6a5a7; + overflow: hidden; } diff --git a/src/handbook/src/css/widgets/Card.scss b/src/handbook/src/css/widgets/Card.scss index d68683797..8ccca3fe2 100644 --- a/src/handbook/src/css/widgets/Card.scss +++ b/src/handbook/src/css/widgets/Card.scss @@ -10,7 +10,7 @@ padding: 10px; box-sizing: border-box; - background-color: var(--secondary-color); + background-color: var(--primary-color); } .Card_Content {