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; --black: #232D37;
--white: #FAE2D3; --white: #FAE2D3;
--success: #3CB57F; --success: #3CB57F;
} --fail: #F52D0A;
}
body { body {
color: var(--black); color: var(--black);
@ -13,3 +14,8 @@ a {
color: inherit; color: inherit;
text-decoration: none; text-decoration: none;
} }
section.error {
background-color: var(--fail);
color: var(--white)
}