generated at
インデントに応じて箇条書きのbulletの色を薄くする
同じ色だと深さをそろえにくいので変えたい
とりあえず深くなるにつれて箇条書きの行頭文字の色を薄くしようと思う

style.css
.line .indent-mark .dot { opacity: 0.0; } .line .indent-mark .c-0 + .dot { opacity: 1.0; } .line .indent-mark .c-1 + .dot { opacity: 0.8; } .line .indent-mark .c-2 + .dot { opacity: 0.6; } .line .indent-mark .c-3 + .dot { opacity: 0.4; } .line .indent-mark .c-4 + .dot { opacity: 0.2; }

#2020-12-28 10:01:41