民间模板:HTMLtag/styles.css
来自EaseCation Wiki
更多操作
/*标签文字颜色*/
.htmltag{
color:#14866D;
}
/*选中时样式*/
.htmltag-code{
display:inline-block;
line-height:1;
}
.htmltag-code::selection,
.htmltag-code *::selection{
background-color:#D7D4F0;
color:inherit;
}
/*深色模式*/
html.skin-theme-clientpref-night .htmltag{
color:#97B757;
}
html.skin-theme-clientpref-night .htmltag-code::selection,
html.skin-theme-clientpref-night .htmltag-code *::selection{
background-color:#4E536D;
}
/*系统深色*/
@media (prefers-color-scheme:dark){
html.skin-theme-clientpref-os .htmltag{
color:#97B757;
}
html.skin-theme-clientpref-os .htmltag-code::selection,
html.skin-theme-clientpref-os .htmltag-code *::selection{
background-color:#4E536D;
}
}