mirror of
https://github.com/szymon-jozef/static-site-generator.git
synced 2026-09-07 12:10:42 +02:00
added first draft at html bullshit
This commit is contained in:
20
style/style.css
Normal file
20
style/style.css
Normal file
@@ -0,0 +1,20 @@
|
||||
:root {
|
||||
color-scheme: light dark;
|
||||
|
||||
--light-bg: ghostwhite;
|
||||
--light-color: darkslategray;
|
||||
--light-code: tomato;
|
||||
|
||||
--dark-bg: darkslategray;
|
||||
--dark-color: ghostwhite;
|
||||
--dark-code: gold;
|
||||
}
|
||||
|
||||
* {
|
||||
background-color: light-dark(var(--light-bg), var(--dark-bg));
|
||||
color: light-dark(var(--light-color), var(--dark-color));
|
||||
}
|
||||
|
||||
code {
|
||||
color: light-dark(var(--light-code), var(--dark-code));
|
||||
}
|
||||
Reference in New Issue
Block a user