Skip to content

Commit

Permalink
Add disabled color
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusps committed May 6, 2020
1 parent 8fd3dc5 commit a4902f7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions raw.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
--color-on-surface: rgb(28, 28, 30);
--color-surface--hover: rgb(232, 232, 237);
--color-surface--active: rgb(242, 242, 247);
--color-surface--disabled: rgb(222, 222, 222);
--color-primary:rgb(0, 122, 255);
--color-on-primary: rgb(255, 255, 255);
--color-text: rgb(28, 28, 30);
Expand Down Expand Up @@ -128,6 +129,11 @@ button:hover {
background-color: var(--color-surface--hover);
}

input:disabled,
button:disabled {
background-color: var(--color-surface--disabled);
}

input:focus,
button:focus {
outline: none;
Expand Down

0 comments on commit a4902f7

Please sign in to comment.