-
diff --git a/src/app/genericComponents/tokens.ts b/src/app/genericComponents/tokens.ts
index ab9f0fd..e8c6cc3 100644
--- a/src/app/genericComponents/tokens.ts
+++ b/src/app/genericComponents/tokens.ts
@@ -36,7 +36,8 @@ export const Neutral300: string = "#88A7B7";
export const Neutral200: string = "#EAF7FF";
export const Neutral100: string = "#F9FDFF";
-export const BackgroundAccent: string = "#1f2424";
+export const BackgroundAccent: string = "#1d1e3b";
+export const QuestionBoxBackgroundColor: string = "#304697";
// Responsive breakpoints
export const MobilePixels: number = 640;
diff --git a/src/app/globals.css b/src/app/globals.css
index 86ef225..e5797a0 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -1,3 +1,9 @@
+:root {
+ --body-color: #1c1e3b;
+ --webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
+ --embla-button-disabled-color: rgb(255, 255, 255);
+}
+
* {
box-sizing: border-box;
padding: 0;
@@ -9,7 +15,7 @@ html,
body {
max-width: 100vw;
overflow-x: hidden; /* Prevents horizontal scrollbar */
- background-color: #181c19;
+ background-color: var(--body-color);
}
.embla {
@@ -58,7 +64,7 @@ body {
align-items: center;
}
.embla__button {
- -webkit-tap-highlight-color: rgba(49, 49, 49, 0.5);
+ -webkit-tap-highlight-color: var(--webkit-tap-highlight-color);
-webkit-appearance: none;
appearance: none;
background-color: transparent;
@@ -79,7 +85,7 @@ body {
justify-content: center;
}
.embla__button:disabled {
- color: rgb(192, 192, 192);
+ color: var(--embla-button-disabled-color);
}
.embla__button__svg {
width: 35%;