マーカー記法
指定範囲内のテキストの背景色を変更する。
https://gyazo.com/ceff4755f42b1fdfe8285ad92ec0bd3c
/scrasobox/マーカーとは異なる実装。
書式:[# [<color-name>]テキスト]
例:
blueテキスト
greenテキスト
orangeテキスト
purpleテキスト
redテキスト
yellowテキスト
code:style.css
.line:not(.cursor-line) .deco-\# {
&:has(span:nth-child(1) > adata-page-title="blue") {
background-color: hsl(from blue h s l / 35%);
& > span:nth-child(1) > a { display: none; }
}
&:has(span:nth-child(1) > adata-page-title="green") {
background-color: hsl(from green h s l / 35%);
& > span:nth-child(1) > a { display: none; }
}
&:has(span:nth-child(1) > adata-page-title="orange") {
background-color: hsl(from orange h s l / 35%);
& > span:nth-child(1) > a { display: none; }
}
&:has(span:nth-child(1) > adata-page-title="purple") {
background-color: hsl(from purple h s l / 35%);
& > span:nth-child(1) > a { display: none; }
}
&:has(span:nth-child(1) > adata-page-title="red") {
background-color: hsl(from red h s l / 35%);
& > span:nth-child(1) > a { display: none; }
}
&:has(span:nth-child(1) > adata-page-title="yellow") {
background-color: hsl(from gold h s l / 35%);
& > span:nth-child(1) > a { display: none; }
}
}
/nremiel/マーカー記法
UserCSS.icon