Files
codeocean/app/javascript/highlight.scss
Sebastian Serth 944b455194 Introduce Dark Mode
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.
2023-07-31 11:48:42 +02:00

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';
}