Curated source subset assembled by klammertext-dev's doc/make_dist.sh: the Klammermachine (mac), the Standard Klammer Set (sks), the commands (com), editor plugins and install guides (doc), a test subset (tst), and lib/bin placeholders. Builds with 'make -C com'. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
61 lines
2.0 KiB
Plaintext
61 lines
2.0 KiB
Plaintext
// Klammertext colors for the "Sixteen" 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 Sixteen by filename; recolors only
|
|
// .klammertext scopes. (The highlighting was first developed as an Emacs
|
|
// major mode; see Klammertext_in_Sublime_Text.md.)
|
|
//
|
|
// #b8b8b8 removed text (Sixteen'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": "Sixteen",
|
|
"rules": [
|
|
{
|
|
"scope": "comment.line.klammertext, comment.block.klammertext",
|
|
"foreground": "#b8b8b8"
|
|
},
|
|
{
|
|
"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": ""
|
|
}
|
|
]
|
|
}
|