forked from XiaoMo/ChatGPT-Next-Web
fix: light theme code highlight
This commit is contained in:
parent
8f498075b9
commit
6155a190ac
@ -843,7 +843,6 @@
|
|||||||
overflow: auto;
|
overflow: auto;
|
||||||
font-size: 85%;
|
font-size: 85%;
|
||||||
line-height: 1.45;
|
line-height: 1.45;
|
||||||
background-color: var(--color-canvas-subtle);
|
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -121,32 +121,32 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// @mixin light {
|
@mixin light {
|
||||||
// .markdown-body pre[class*="language-"] {
|
.markdown-body pre {
|
||||||
// filter: invert(1) hue-rotate(50deg) brightness(1.3);
|
filter: invert(1) hue-rotate(90deg) brightness(1.3);
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
|
||||||
// @mixin dark {
|
@mixin dark {
|
||||||
// .markdown-body pre[class*="language-"] {
|
.markdown-body pre {
|
||||||
// filter: none;
|
filter: none;
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
|
||||||
// :root {
|
:root {
|
||||||
// @include light();
|
@include light();
|
||||||
// }
|
}
|
||||||
|
|
||||||
// .light {
|
.light {
|
||||||
// @include light();
|
@include light();
|
||||||
// }
|
}
|
||||||
|
|
||||||
// .dark {
|
.dark {
|
||||||
// @include dark();
|
@include dark();
|
||||||
// }
|
}
|
||||||
|
|
||||||
// @media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
// :root {
|
:root {
|
||||||
// @include dark();
|
@include dark();
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user