
This commit mainly changes the color definitions. Mostly, those changes are semantically equally, but there are a few changes that occurred to align the color scheme within the app.
10 lines
193 B
SCSS
10 lines
193 B
SCSS
// CSS for highlight.js
|
|
|
|
html[data-bs-theme="light"] {
|
|
@import 'highlight.js/styles/base16/tomorrow';
|
|
}
|
|
|
|
html[data-bs-theme="dark"] {
|
|
@import 'highlight.js/styles/base16/tomorrow-night';
|
|
}
|