发现很多主题不自带缩进条的颜色更改,自己弄了一个。。
/* 浅色模式 - 淡蓝色标尺 */
.theme-light .cm-indent::before {
background-color: #7abebd !important;
opacity: 0.65 !important;
}
/* 深色模式 - 亮绿色标尺 */
.theme-dark .cm-indent::before {
background-color: #29FF00 !important;
opacity: 0.6 !important;
}
/* 核心显示设置 */
.cm-line .cm-indent::before {
position: relative;
border-color: transparent !important;
margin-left: -0.8px !important;
}
/* 增强多层级缩进显示 /
.cm-indent::before {
border-left: 1px solid currentColor !important;
transition: background-color 0.3s ease; / 保留主题切换时的渐变效果 */
}