Skip to content

Instantly share code, notes, and snippets.

@ijs01140
Last active May 4, 2018 15:19
Show Gist options
  • Save ijs01140/135663cb8d5af23daf57f9f7ee4482d2 to your computer and use it in GitHub Desktop.
Save ijs01140/135663cb8d5af23daf57f9f7ee4482d2 to your computer and use it in GitHub Desktop.
Gist用VSCode風syntaxhighlight
/*コメント色*/
div.gist .pl-c {
color: #608b4e;
}
/*デフォルト背景色*/
div.gist .blob-code {
background-color: #1E1E1E;
}
/*デフォルト文字色*/
div.gist .blob-code {
color: #D4D4D4;
}
/*変数名*/
div.gist .pl-smi {
color: #9CDCFE;
}
/*変数の囲みや特殊変数名*/
div.gist .pl-k {
color: #569cd6;
}
/*変数文字列内のデフォルト色*/
div.gist .pl-s{
color: #CE9178;
}
/*エスケープシーケンス*/
div.gist .pl-cce {
color: #d7ba7d;
}
/*コマンド*/
div.gist .pl-c1 {
color: #DCDCAA;
}
/*変数文字列内のenv:*/
div.gist .pl-s .pl-c1 {
color: #9CDCFE;
}
/*配列角括弧*/
div.gist .pl-e {
color: #9CDCFE;
}
/*変数の.演算子の後ろ(?)*/
div.gist .pl-en {
color: #DCDCAA;
}
/*数値*/
div.gist .pl-c1 > .pl-c1 {
color: #b5cea8;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment