✅vscode-scbのインデントカラーを検討する
とりあえずyuiseki rainbowにしてみる
以下まとめ
吉良野すた: 8色使う(色合いはテキトーw)
yuiseki rainbow: light系で4色
nishio式: 無とグレーの2色で、縦にストライプ
-.icon
https://gyazo.com/3de359383ea381b9e56a7056bfafcd76
見づらいのは
2の青
3の青みたいの
1は浅いのは濃い色が良いのではないか
ダーク背景だから青が見づらいのか?sta.icon
まあ色はsettings.jsonに書かせるので各自好きにカスタマイズすればええんやけどね
テキトーに
https://gyazo.com/6f33f3adbcc0e1437673195d00b785a6
code:json
{
"name": "indent1",
"scope": [
"indent.1.scb"
],
"settings": {
"foreground": "#ff0000",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent2",
"scope": [
"indent.2.scb"
],
"settings": {
"foreground": "#ffa500",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent3",
"scope": [
"indent.3.scb"
],
"settings": {
"foreground": "#008000",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent4",
"scope": [
"indent.4.scb"
],
"settings": {
"foreground": "#90ee90",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent5",
"scope": [
"indent.5.scb"
],
"settings": {
"foreground": "#ffff00",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent6",
"scope": [
"indent.6.scb"
],
"settings": {
"foreground": "#ee82ee",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent7",
"scope": [
"indent.7.scb"
],
"settings": {
"foreground": "#b22222",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent8",
"scope": [
"indent.8.scb"
],
"settings": {
"foreground": "#ffd700",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent9over",
"scope": [
"indent.over9.scb"
],
"settings": {
"foreground": "#f0ffff",
"fontStyle" : "strikethrough"
}
},
yuiseki indent-rainbow
https://gyazo.com/cb2ff6ff38a51b987d6d2fc1d499fac2
lightblue
lightpink
lightyellow
lightgreen
パクってみるねsta.icon
ぐ、カラーコードじゃねえとダメか
https://gyazo.com/e7fb24980abdc4d90e6a7c90d3e92f2f
table:t
lightblue add8e6
lightpink ffb6c1
lightyellow ffffe0
lightgreen 90ee90
どう?
https://gyazo.com/4f773de406e3dc2c8c9bd96d341f5bd8
code:json
{
"name": "indent1",
"scope": [
"indent.1.scb"
],
"settings": {
"foreground": "#add8e6",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent2",
"scope": [
"indent.2.scb"
],
"settings": {
"foreground": "#ffb6c1",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent3",
"scope": [
"indent.3.scb"
],
"settings": {
"foreground": "#ffffe0",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent4",
"scope": [
"indent.4.scb"
],
"settings": {
"foreground": "#90ee90",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent5",
"scope": [
"indent.5.scb"
],
"settings": {
"foreground": "#add8e6",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent6",
"scope": [
"indent.6.scb"
],
"settings": {
"foreground": "#ffb6c1",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent7",
"scope": [
"indent.7.scb"
],
"settings": {
"foreground": "#ffffe0",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent8",
"scope": [
"indent.8.scb"
],
"settings": {
"foreground": "#90ee90",
"fontStyle" : "strikethrough"
}
},
{
"name": "indent9over",
"scope": [
"indent.over9.scb"
],
"settings": {
"foreground": "#add8e6",
"fontStyle" : "strikethrough"
}
},
nishio式2色
たしか2色で交互だったはず
https://gyazo.com/a7429ee44a4da7af3cb0decc4659cb06
train.icon
(レベル2以上のページが中々見つからなかった)
---
あー、これ縦に並ぶ感じにしなきゃだから、正規表現のキャプチャのやり方変えることになるなー
いったんいいやsta.icon
yuseki rainbowがどうしてもダメそうならまた戻ってくる