Fix color scheme for dark mode

This commit is contained in:
Brian Picciano 2023-08-09 16:15:39 +02:00
parent f56acd65b0
commit 65933b5cb3

View File

@ -20,6 +20,7 @@
<style>
:root {
--domani-text: #233340;
--domani-bg: #fffef9;
--domani-blue: #1a477e;
--domani-orange: #c35136;
@ -28,6 +29,7 @@
body {
background-color: var(--domani-bg);
padding-bottom: 3rem;
color: var(--domani-text);
}
h1, h2, h3, h4, h5, h1 a {
@ -59,6 +61,7 @@
}
input {
color: var(--domani-text);
background-color: white;
border: 1px solid var(--domani-blue);
}