modal: Fix button colors in dark theme.

Use the dark purple color we use for `send` buttom on the
`confirm` button.

Fix color of `cancel` and `disabled` buttons in dark mode.
This commit is contained in:
Aman Agrawal 2021-12-05 07:26:24 +00:00 committed by Tim Abbott
parent a23cc709e8
commit 8123ebbfc0
2 changed files with 14 additions and 1 deletions

View File

@ -27,6 +27,19 @@ body.dark-theme {
color: inherit;
}
/************************* MODAL DARK THEME *******************/
.dialog_cancel_button {
background-color: hsl(211, 29%, 14%);
color: hsl(0, 0%, 100%);
border: 1px solid hsla(0, 0%, 0%, 0.6);
}
.modal__btn:disabled {
opacity: 1;
background-color: hsla(0, 0%, 83%, 0.5);
}
.enter_sends kbd {
background-color: hsl(211, 29%, 14%);
border-color: hsl(211, 29%, 14%);

View File

@ -140,7 +140,7 @@
.dialog_submit_button {
margin-left: 12px;
background-color: hsl(214, 100%, 31%);
background-color: hsl(240, 96%, 68%);
color: hsl(0, 0%, 100%) !important;
}