Skip to content

Commit 8d93ef6

Browse files
author
Stefanie Hein
committed
Colors: separate out blue and blue-light color, so we can use blue for the focused color and blue-light for the tag color. See #77074
1 parent 47dfd3d commit 8d93ef6

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/scss/themes/fylr/_variables.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ $grays: map.merge(
7676
$grays
7777
);
7878

79-
$blue: #6bb2bb !default;
79+
$blue: #0261f8 !default;
80+
$blue-light: #8bceec !default;
8081
$indigo: #6610f2 !default;
8182
$purple: #6f42c1 !default;
8283
$pink: #b64b7c !default;
@@ -94,6 +95,7 @@ $colors: () !default;
9495
$colors: map.merge(
9596
(
9697
'blue': $blue,
98+
'blue-light': $blue-light,
9799
'indigo': $indigo,
98100
'purple': $purple,
99101
'pink': $pink,
@@ -121,7 +123,7 @@ $danger-bg-light: color.adjust($danger, $lightness: 39%) !default;
121123
$light: $gray-100 !default;
122124
$dark: $gray-800 !default;
123125
$muted: $gray-600 !default; // used in field-label, block description, empty label
124-
$focused: #0261f8 !default;
126+
$focused: $blue !default;
125127
$disabled: $muted !default;
126128

127129
$disabled-opacity: 0.5 !default;

0 commit comments

Comments
 (0)