From b561855fe8b9d4dbc023a633146338a53068ebba Mon Sep 17 00:00:00 2001 From: Adrian Simmons Date: Thu, 9 Dec 2021 13:31:49 +0000 Subject: [PATCH] Put overriden bulma defaults in the right section --- src/styles/custom-properties/colors.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/styles/custom-properties/colors.scss b/src/styles/custom-properties/colors.scss index e4bc58221..21a0dae32 100644 --- a/src/styles/custom-properties/colors.scss +++ b/src/styles/custom-properties/colors.scss @@ -236,6 +236,12 @@ --primary-a: 1; --primary-hsl: var(--primary-h), var(--primary-s), var(--primary-l); --primary: hsla(var(--primary-h), var(--primary-s), var(--primary-l), var(--primary-a)); + + --link: var(--primary); + --link-hover: hsla(var(--primary-h), var(--primary-s), var(--primary-l), .75); + --border: var(--grey-200); + --input-disabled-background-color: var(--grey-100); + --input-disabled-border-color: var(--grey-300); // END Overrides of Bulma defaults @@ -246,12 +252,6 @@ --card-border-color: var(--grey-200); --logo-text-color: hsl(180, 1%, 15%); - --link: var(--primary); - --link-hover: hsla(var(--primary-h), var(--primary-s), var(--primary-l), .75); - --border: var(--grey-200); - --input-disabled-background-color: var(--grey-100); - --input-disabled-border-color: var(--grey-300); - &.dark { // Light mode colours reversed for dark mode --grey-900-hsl: 210, 20%, 98%;