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