update css
This commit is contained in:
parent
0d32bc0273
commit
e83466c074
|
@ -1,5 +1,20 @@
|
|||
@import url("../fonts/Inter-VariableFont_slnt\,wght.ttf");
|
||||
|
||||
:root {
|
||||
color-scheme: light dark;
|
||||
|
||||
--light-bg: #fafafa;
|
||||
--light-color: rgba(0, 0, 0, 0.8);
|
||||
|
||||
--dark-bg: #242424;
|
||||
--dark-color: #ffffff;
|
||||
}
|
||||
|
||||
* {
|
||||
background-color: light-dark(var(--light-bg), var(--dark-bg));
|
||||
color: light-dark(var(--light-color), var(--dark-color));
|
||||
}
|
||||
|
||||
html, body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-optical-sizing: auto;
|
||||
|
@ -7,7 +22,21 @@ html, body {
|
|||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
background-color: #242424;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.light {
|
||||
color-scheme: light;
|
||||
}
|
||||
|
||||
.dark {
|
||||
color-scheme: dark;
|
||||
}
|
Loading…
Reference in New Issue