Files
config/LCZ-simple.sublime-color-scheme

93 lines
2.1 KiB
Plaintext
Raw Permalink Normal View History

{
"name": "Luca's Color Scheme",
"variables":
{
"black": "#1E1E1E",
"white": "#FFFFFF",
"grey1": "#2E3436",
"grey2": "#6C6C6C",
"grey3": "#555753",
"yellow": "#FCE94F",
"yellow2": "#FFF9C8",
"cyan1": "#34E2E2",
"cyan2": "#06989A",
"blue": "#5FD7FF",
"purple": "#AD7FA8",
"green": "#87FFAF",
"red": "#FF5F5F"
},
"globals":
{
"background": "var(black)",
"foreground": "var(white)",
"caret": "var(white)",
"line_highlight": "var(grey1)",
"gutter": "var(grey1)",
"gutter_foreground": "var(grey2)",
"selection": "var(grey3)",
"highlight": "var(yellow)",
"brackets_options": "foreground",
"brackets_foreground": "var(cyan2)",
"bracket_contents": "underline",
"bracket_contents_foreground": "var(cyan2)"
},
"rules":
[
{
"name": "Comment",
"scope": "comment",
"foreground": "var(cyan1)"
},
{
"name": "String",
"scope": "string",
"foreground": "var(purple)"
},
{
"name": "Numeric",
"scope": "constant",
"foreground": "var(purple)"
},
{
"name": "Preprocessor",
"scope": "keyword.control.import",
"foreground": "var(blue)"
},
{
"name": "Keyword",
"scope": "keyword.control",
"foreground": "var(yellow)"
},
{
"name": "Types",
"scope": "storage, support.type, storage.type, meta.semantic-token.type, meta.semantic-token.class, meta.semantic-token.struct",
"foreground": "var(green)"
},
{
"name": "Sizeof",
"scope": "keyword.operator.word",
"foreground": "var(yellow)"
},
// {
// "name": "Function call",
// "scope": "variable.function, variable.annotation",
// "foreground": "var(yellow2)"
// },
// {
// "name": "Library function",
// "scope": "support.function, support.macro",
// "foreground": "var(yellow2)"
// },
// {
// "name": "Entity",
// "scope": "entity.name",
// "foreground": "var(red)"
// },
{
"name": "Declaration",
"scope": "keyword.declaration",
"foreground": "var(green)"
},
]
}