Distribute all the main.css styles to their own stylesheets and remove main.css

This commit is contained in:
Eryn Wells 2022-10-09 12:12:44 -07:00
parent 37ff53bd94
commit d1171e992f
5 changed files with 146 additions and 310 deletions

View file

@ -1,7 +1,26 @@
.chroma { line-height: 1.4; }
:root {
--highlight-background-color: rgb(var(--super-lt-gray));
--highlight-foreground-color: var(--foreground-body-color);
}
@media (prefers-color-scheme: dark) {
:root {
}
}
.chroma {
line-height: var(--body-line-height);
}
.bg {
color: var(--highlight-foreground-color);
background-color: var(--highlight-background-color);
}
.chroma {
color: var(--highlight-foreground-color);
background-color: var(--highlight-background-color);
}
/* Background */ .bg { color: #272822; background-color: #fafafa }
/* PreWrapper */ .chroma { color: #272822; background-color: #fafafa; }
/* Other */ .chroma .x { }
/* Error */ .chroma .err { color: #960050; background-color: #1e0010 }
/* CodeLine */ .chroma .cl { }