Skip to content

Commit

Permalink
Merge pull request #452 from verdigado/fix-427-2
Browse files Browse the repository at this point in the history
Fix #427 again. Use proper gray color in block backgrounds
  • Loading branch information
albig committed Dec 3, 2023
2 parents 0792027 + 5e269ef commit 1498a6f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions sass/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ $custom-colors: (
himmel: #0ba1dd,
black: #000,
black-500: #201d1b,
gray: #6b7a80,
gray: #eff2ed,
gray-500: #6b7a80,
white: #fff
);

$very-light-gray: #d6d9d6;

$primary: map-get($custom-colors, "klee");
$secondary: map-get($custom-colors, "tanne");
Expand All @@ -24,16 +24,18 @@ $black-500: map-get($custom-colors, "black-500");
$white: map-get($custom-colors, "white");
$white-90: rgba(255, 255, 255, 0.9);


$dark: #ddd;
$gray-500: map-get($custom-colors, "gray-500");
$darkgray: #333;
$lightgray: #aeb2ad;
$very-dark-green: #072415;
$very-light-gray: #d6d9d6;

$body-color: #201d1b;
$sidebar-color: #afafaf;

$lightgreen: #e5f3eb;
$darkgreen: #002216;
$very-dark-green: #072415;

$border-radius: 3px;
$border-radius-small: 1px;
Expand Down
6 changes: 3 additions & 3 deletions sass/_widgets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
position: relative;

li {
border-bottom: 1px solid map-get($custom-colors, "gray");
border-bottom: 1px solid $gray-500;
padding: 0.75rem 0;
position: relative;
}
Expand Down Expand Up @@ -39,11 +39,11 @@

input,
input:focus {
border: 1px solid map-get($custom-colors, "gray");
border: 1px solid $gray-500;
padding: 4px;
border-radius: 2px;
background: none;
color: map-get($custom-colors, "gray");
color: $gray-500;
}

label {
Expand Down

0 comments on commit 1498a6f

Please sign in to comment.