61 lines
2.0 KiB
Plaintext
61 lines
2.0 KiB
Plaintext
|
|
// Klammertext colors for the "Celeste" scheme (light ground).
|
||
|
|
// One hue system across all schemes: application = blue, definition =
|
||
|
|
// green, system = orange; each opens bright and its close is 80%% of the
|
||
|
|
// open (a klammer "begins bright and gets dark"). Shown at full intensity
|
||
|
|
// on dark grounds, at 60%% on light grounds for contrast. Delimiters are
|
||
|
|
// forced to normal style. Merged onto Celeste by filename; recolors only
|
||
|
|
// .klammertext scopes. (The highlighting was first developed as an Emacs
|
||
|
|
// major mode; see Klammertext_in_Sublime_Text.md.)
|
||
|
|
//
|
||
|
|
// #9a9a9a removed text (Celeste's comment grey)
|
||
|
|
// #994040 removal markers
|
||
|
|
// #528599 @name open blue
|
||
|
|
// #426a7a name@ close darker blue
|
||
|
|
// #758b55 @@name open green
|
||
|
|
// #5e7044 name@@ close darker green
|
||
|
|
// #996743 @@@name open orange
|
||
|
|
// #7a5236 name@@@ close darker orange
|
||
|
|
{
|
||
|
|
"name": "Celeste",
|
||
|
|
"rules": [
|
||
|
|
{
|
||
|
|
"scope": "comment.line.klammertext, comment.block.klammertext",
|
||
|
|
"foreground": "#9a9a9a"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "punctuation.definition.comment.klammertext",
|
||
|
|
"foreground": "#994040"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "entity.name.function.begin.klammertext",
|
||
|
|
"foreground": "#528599",
|
||
|
|
"font_style": ""
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "entity.name.function.end.klammertext",
|
||
|
|
"foreground": "#426a7a",
|
||
|
|
"font_style": ""
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "storage.type.begin.klammertext",
|
||
|
|
"foreground": "#758b55",
|
||
|
|
"font_style": ""
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "storage.type.end.klammertext",
|
||
|
|
"foreground": "#5e7044",
|
||
|
|
"font_style": ""
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "keyword.control.begin.klammertext",
|
||
|
|
"foreground": "#996743",
|
||
|
|
"font_style": ""
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "keyword.control.end.klammertext",
|
||
|
|
"foreground": "#7a5236",
|
||
|
|
"font_style": ""
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|