From 95a1d9ba46b115f67da1dd2682bec85431f3a792 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Sat, 4 May 2024 17:26:42 +0200 Subject: Update default colors --- assets/sass/researcher.scss | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'assets/sass/researcher.scss') diff --git a/assets/sass/researcher.scss b/assets/sass/researcher.scss index 781b047..5794a12 100644 --- a/assets/sass/researcher.scss +++ b/assets/sass/researcher.scss @@ -3,8 +3,8 @@ $max-width: {{ .Param "style.pageWidth" | default "750px;" }}; $avatar-size: {{ .Param "style.avatarSize" | default "90px;" }}; // Colors -$black: {{ .Param "style.colorBlack" | default "#222222" }}; -$red: {{ .Param "style.colorRed" | default "#dc3545" }}; +$firstColor: {{ .Param "style.firstColor" | default "#696969" }}; +$secondColor: {{ .Param "style.secondColor" | default "#006400" }}; // Font $font-family: {{ .Param "style.fontFamily" | default "Inconsolata" }}; @@ -16,24 +16,24 @@ $y-medium: 1.0rem; // Placeholders %link-default { - color: $red; + color: $secondColor; text-decoration: none; & * { - color: $red; + color: $secondColor; } &:hover { - color: $red; + color: $secondColor; text-decoration: underline; } } %link-dark { - color: $black; + color: $firstColor; text-decoration: none; & * { - color: $black; + color: $firstColor; } &:hover { - color: $black; + color: $firstColor; text-decoration: underline; } } @@ -45,7 +45,7 @@ $y-medium: 1.0rem; // Style * { - color: $black; + color: $firstColor; font-family: $font-family; font-size: $font-size; line-height: 1.2; @@ -141,7 +141,7 @@ $y-medium: 1.0rem; padding: 8px 8px; } code { - color: $black; + color: $firstColor; background-color: #f8f8f8; border: 1px solid #cccccc; border-radius: 10%; -- cgit v1.2.3