Skip to content

Commit

Permalink
Switch button colour to blue
Browse files Browse the repository at this point in the history
Using triadic colour from the red already in use.

https://en.wikipedia.org/wiki/Color_scheme#Triadic
  • Loading branch information
textbook committed Aug 2, 2023
1 parent 47d7832 commit 196b3b7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions client/src/components/Button/Button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,34 +9,34 @@ button.button {
min-width: 150px;

&.primary {
background-color: #bc2a2a;
border: 2px solid #bc2a2a;
background-color: #2a2abc;
border: 2px solid #2a2abc;
color: white;

&:hover,
&:focus {
background-color: #a92525;
border-color: #a92525;
background-color: #2525a9;
border-color: #212196;
}

&:active {
background-color: #962121;
border-color: #962121;
background-color: #263fcb;
border-color: #263fcb;
}
}

&.secondary {
background-color: white;
border: 2px solid #bc2a2a;
color: #bc2a2a;
border: 2px solid #2a2abc;
color: #2a2abc;

&:hover,
&:focus {
background-color: #f8e9e9;
background-color: #e9e9f8;
}

&:active {
background-color: #f1d4d4;
background-color: #d4d4f1;
}
}
}

0 comments on commit 196b3b7

Please sign in to comment.