From 8d3feec321239817ee47c480a0461d7b9c5b6ede Mon Sep 17 00:00:00 2001
From: Rico Hoppe
Date: Sat, 18 Mar 2023 14:08:01 +0000
Subject: [PATCH] changed default color for text & title
---
src/sass/main.sass | 14 ++++++++++++++
src/templates/static/legal.html | 16 ++++++++--------
2 files changed, 22 insertions(+), 8 deletions(-)
diff --git a/src/sass/main.sass b/src/sass/main.sass
index 632ff608..e027d956 100644
--- a/src/sass/main.sass
+++ b/src/sass/main.sass
@@ -11,6 +11,7 @@ $primary: #ff2e52
$green: #3adb76
$yellow: #e7e247
$red: #cc4b47
+$black: #000000
// Custom Colours
$lwl: #6534C8
@@ -20,9 +21,22 @@ $custom-colors: ("lwl" : ($lwl, $white))
// Use the primary colour for links
$link: #000000
+// Use black for titles
+$title-color: $black
+
+// Use dark grey for text
+$text: #4f4f4f
+
+@import "../third-party/bulma/sass/utilities/derived-variables.sass"
+
// Controls
$control-border-width: 4px
+// Breadcrumbs
+$breadcrumb-item-color: $primary
+$breadcrumb-item-hover-color: $primary-dark
+$breadcrumb-item-active-color: $primary
+
// Import Bulma
@import "../third-party/bulma/sass/utilities/_all.sass"
@import "../third-party/bulma/sass/base/_all.sass"
diff --git a/src/templates/static/legal.html b/src/templates/static/legal.html
index 67733d03..f75de129 100644
--- a/src/templates/static/legal.html
+++ b/src/templates/static/legal.html
@@ -8,16 +8,16 @@
-
-
-
-
{{ _("Legal") }}
-
+
+ {{ _("Legal") }}
--
2.47.3