Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
Color palette and placeholder text color updates (#434)
Browse files Browse the repository at this point in the history
* updated color palette values
* adjust placeholder text color
* adjusted input disabled color
  • Loading branch information
pixelflips authored Oct 1, 2020
1 parent f5a12cd commit b47a9af
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;

@include placeholder {
color: inherit;
color: sage-color(charcoal, 100);
}

&:hover:not(:disabled) {
Expand Down Expand Up @@ -139,6 +139,9 @@
color: $sage-inputfield-color-disabled;
background-color: $sage-inputfield-bg-disabled;
cursor: not-allowed;
@include placeholder {
color: sage-color(grey, 400);
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;

@include placeholder {
color: inherit;
color: sage-color(charcoal, 100);
}

&:hover:not(:active):not(:focus),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ $sage-colors: (
100: #fcf8e8,
200: #fdf0b9,
300: #f0c024,
400: #946a00,
500: #472d00,
400: #8d5c2f,
500: #5c381e,
),
red: (
100: #fcf3f3,
Expand Down Expand Up @@ -54,8 +54,8 @@ $sage-colors: (
500: #94a6b8,
),
charcoal: (
100: #8c9bab,
200: #556577,
100: #65778b,
200: #526275,
300: #465462,
400: #304050,
500: #263240,
Expand Down

0 comments on commit b47a9af

Please sign in to comment.