From 1ac66b4ece26d46ef7d055a1dcb20a7bddfec59c Mon Sep 17 00:00:00 2001 From: James Collins Date: Mon, 10 Apr 2023 21:18:16 +1000 Subject: [PATCH] update default background color --- resources/css/app.scss | 1 + resources/css/variables.scss | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/css/app.scss b/resources/css/app.scss index 9242313..2558dee 100644 --- a/resources/css/app.scss +++ b/resources/css/app.scss @@ -19,6 +19,7 @@ body { font-size: $font-size; color: $font-color; min-height: 100vh; + background-color: $background-color; } // Who knows why ion-icon randomally sets this to hidden..... diff --git a/resources/css/variables.scss b/resources/css/variables.scss index a3624e3..3e882a7 100644 --- a/resources/css/variables.scss +++ b/resources/css/variables.scss @@ -3,7 +3,8 @@ $font-family: Nunito, Arial, Helvetica, sans-serif; $font-size: 1.1rem; -$font-color: rgba(0, 0, 0, 0.7); +$font-color: rgba(255, 255, 255, 0.7); +$background-color: rgba(40, 44, 48, 1); $primary-color-lighter: #cce8fb; $primary-color-light: #67bbf4;