dark-custom imported highlight.js's atom-one-light palette while every other dark theme imports atom-one-dark, so syntax-highlighted code blocks rendered dark grey on the theme's dark background. The neighbouring import on the next line already pulls in the dark GitHub markdown stylesheet. Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
11 lines
599 B
Plaintext
11 lines
599 B
Plaintext
@layer compound-tokens, compound-web, shared-components, app-web;
|
|
|
|
@import "../../../../res/css/_font-sizes.pcss" layer(app-web);
|
|
@import "../../legacy-light/css/_fonts.pcss" layer(app-web);
|
|
@import "../../legacy-light/css/_legacy-light.pcss" layer(app-web);
|
|
@import "../../legacy-dark/css/_legacy-dark.pcss" layer(app-web);
|
|
@import "../../light-custom/css/_custom.pcss" layer(app-web);
|
|
@import "../../../../res/css/_components.pcss" layer(app-web);
|
|
@import url("highlight.js/styles/atom-one-dark.min.css") layer(app-web);
|
|
@import url("github-markdown-css/github-markdown-dark.css") layer(app-web);
|