カーソル行を強調するUserCSS
https://gyazo.com/330af3e3363f88745a606ecd3bba3eeb
code:style.css
--cursor-line-bg: rgb(255 255 255 / 4%);
--cursor-line-shadow: rgb(255 255 255 / 40%);
}
.cursor-line {
background-color: var(--cursor-line-bg, rgb(0 0 0 / 2%));
box-shadow: inset 0 -5px 5px -5px var(--cursor-line-shadow, rgb(0 0 0 / 30%));
}
変更点
テーマに合わせて色を変更した