61 lines
2.0 KiB
Plaintext
61 lines
2.0 KiB
Plaintext
|
|
// Klammertext colors for the "Monokai" scheme (dark 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 Monokai by filename; recolors only
|
||
|
|
// .klammertext scopes. (The highlighting was first developed as an Emacs
|
||
|
|
// major mode; see Klammertext_in_Sublime_Text.md.)
|
||
|
|
//
|
||
|
|
// #8a8272 removed text (Monokai's comment grey)
|
||
|
|
// #ff6b6b removal markers
|
||
|
|
// #89ddff @name open blue
|
||
|
|
// #6eb1cc name@ close darker blue
|
||
|
|
// #c3e88d @@name open green
|
||
|
|
// #9cba71 name@@ close darker green
|
||
|
|
// #ffab70 @@@name open orange
|
||
|
|
// #cc895a name@@@ close darker orange
|
||
|
|
{
|
||
|
|
"name": "Monokai",
|
||
|
|
"rules": [
|
||
|
|
{
|
||
|
|
"scope": "comment.line.klammertext, comment.block.klammertext",
|
||
|
|
"foreground": "#8a8272"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "punctuation.definition.comment.klammertext",
|
||
|
|
"foreground": "#ff6b6b"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "entity.name.function.begin.klammertext",
|
||
|
|
"foreground": "#89ddff",
|
||
|
|
"font_style": ""
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "entity.name.function.end.klammertext",
|
||
|
|
"foreground": "#6eb1cc",
|
||
|
|
"font_style": ""
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "storage.type.begin.klammertext",
|
||
|
|
"foreground": "#c3e88d",
|
||
|
|
"font_style": ""
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "storage.type.end.klammertext",
|
||
|
|
"foreground": "#9cba71",
|
||
|
|
"font_style": ""
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "keyword.control.begin.klammertext",
|
||
|
|
"foreground": "#ffab70",
|
||
|
|
"font_style": ""
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"scope": "keyword.control.end.klammertext",
|
||
|
|
"foreground": "#cc895a",
|
||
|
|
"font_style": ""
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|