add error color

This commit is contained in:
edbrz9 2022-12-30 22:20:15 +01:00
parent 0a7d43a8ef
commit 9f57527708
1 changed files with 7 additions and 1 deletions

View File

@ -2,7 +2,8 @@
--black: #232D37;
--white: #FAE2D3;
--success: #3CB57F;
}
--fail: #F52D0A;
}
body {
color: var(--black);
@ -12,4 +13,9 @@ body {
a {
color: inherit;
text-decoration: none;
}
section.error {
background-color: var(--fail);
color: var(--white)
}