commit cf59bbf95dfe8ef4f4b16929aa1c94a59adfa2cb Author: flash Date: Sat Mar 2 21:08:07 2024 +0000 stinky sublime theme diff --git a/Monokai.sublime-color-scheme b/Monokai.sublime-color-scheme new file mode 100644 index 0000000..5600943 --- /dev/null +++ b/Monokai.sublime-color-scheme @@ -0,0 +1,164 @@ +// Documentation at https://www.sublimetext.com/docs/color_schemes.html +{ + "variables": + { + }, + "globals": + { + "foreground": "#eee", + "background": "#121212", + "line_highlight": "#242424", + "selection": "#363636", + "selection_border": "#242424", + "find_highlight_foreground": "#121212", + "find_highlight": "#eee", + }, + "rules": + [ + { + "name": "Comment", + "scope": "comment", + "foreground": "#70647b", + "font_style": "italic" + }, + { + "name": "String", + "scope": "string", + "foreground": "#76b38a" + }, + { + "name": "Number", + "scope": "constant.numeric", + "foreground": "#b2b376" + }, + { + "name": "Number suffix", + "scope": "storage.type.numeric", + "foreground": "#b2b376", + "font_style": "normal" + }, + { + "name": "Built-in constant", + "scope": "constant.language", + "foreground": "#b2b376" + }, + { + "name": "Library constant", + "scope": "support.constant", + "foreground": "#b2b376" + }, + { + "name": "User-defined constant", + "scope": "constant.character, constant.other", + "foreground": "#b37fae" + }, + { + "name": "Keyword", + "scope": "keyword - (source.c keyword.operator | source.c++ keyword.operator | source.objc keyword.operator | source.objc++ keyword.operator), keyword.operator.word, source.ruby keyword.declaration", + "foreground": "#9475b2" + }, + { + "name": "Function argument", + "scope": "variable.parameter - (source.c | source.c++ | source.objc | source.objc++)", + "foreground": "#eee", + "font_style": "italic" + }, + { + "name": "Language variable", + "scope": "variable.language", + "foreground": "#b37fae", + "font_style": "normal" + }, + { + "name": "Function call", + "scope": "variable.function, variable.annotation", + "foreground": "#c8b9d7" + }, + { + "name": "Library function", + "scope": "support.function, support.macro", + "foreground": "#c8b9d7" + }, + { + "name": "Library class/type", + "scope": "support.type, support.class", + "foreground": "#b37fae", + "font_style": "normal" + }, + { + "name": "Storage", + "scope": "storage", + "foreground": "#9475b2" + }, + { + "name": "Storage type", + "scope": "storage.type", + "foreground": "#9475b2", + "font_style": "normal" + }, + { + "name": "Entity name", + "scope": "entity.name - (entity.name.filename | entity.name.section | entity.name.tag | entity.name.label)", + "foreground": "#c8b9d7" + }, + { + "name": "Annotation Punctuation", + "scope": "punctuation.definition.annotation", + "foreground": "#70647b" + }, + { + "name": "Inherited class", + "scope": "entity.other.inherited-class", + "foreground": "#c8b9d7", + "font_style": "normal" + }, + { + "name": "Tag name", + "scope": "entity.name.tag | meta.mapping.key string.unquoted", + "foreground": "#9475b2" + }, + { + "name": "Tag attribute", + "scope": "entity.other.attribute-name", + "foreground": "#c8b9d7" + }, + { + "name": "markup h1", + "scope": "markup.heading.1 | markup.heading.1 punctuation.definition.heading", + "foreground": "#9475b2" + }, + { + "name": "markup headings", + "scope": "markup.heading | markup.heading punctuation.definition.heading", + "foreground": "#9475b2" + }, + { + "name": "markup bullets", + "scope": "markup.list.numbered.bullet", + "foreground": "#b2b376" + }, + { + "name": "diff.header", + "scope": "meta.diff, meta.diff.header", + "foreground": "#70647b" + }, + { + "name": "diff.deleted", + "scope": "markup.deleted", + "background": "#4d0e0e", + "foreground": "#eee" + }, + { + "name": "diff.inserted", + "scope": "markup.inserted", + "background": "#0e4d0e", + "foreground": "#eee" + }, + { + "name": "diff.changed", + "scope": "markup.changed", + "background": "#4d4d0e", + "foreground": "#eee" + }, + ] +}