Fix: only have dark notices in body.dark-mode

This commit is contained in:
tituspijean 2021-02-08 18:55:57 +01:00
parent deba62b370
commit e454ef0098

View file

@ -128,25 +128,25 @@ body.dark-mode .success {
background-color: #6a7964; background-color: #6a7964;
} }
.notices.yellow { body.dark-mode .notices.yellow {
border-left-color: rgb(147, 91, 12); border-left-color: rgb(147, 91, 12);
background-color: rgb(49, 34, 11); background-color: rgb(49, 34, 11);
color: rgb(238, 160, 52); color: rgb(238, 160, 52);
} }
.notices.red { body.dark-mode .notices.red {
border-left-color: rgb(137, 33, 30); border-left-color: rgb(137, 33, 30);
background-color: rgb(46, 11, 11); background-color: rgb(46, 11, 11);
color: rgb(219, 90, 86); color: rgb(219, 90, 86);
} }
.notices.note { body.dark-mode .notices.note {
border-left-color: rgb(27, 110, 134); border-left-color: rgb(27, 110, 134);
background-color: rgb(19, 34, 42); background-color: rgb(19, 34, 42);
color: rgb(75, 185, 218); color: rgb(75, 185, 218);
} }
.notices.green { body.dark-mode .notices.green {
border-left-color: rgb(52, 120, 52); border-left-color: rgb(52, 120, 52);
background-color: rgb(25, 44, 19); background-color: rgb(25, 44, 19);
color: rgb(122, 197, 122); color: rgb(122, 197, 122);