Last active
April 29, 2019 20:59
-
-
Save swdunlop/ff328dd48a3f4b89b934388af84a826a to your computer and use it in GitHub Desktop.
Kasugano Colors for Sublime Text 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// scope reference: https://www.sublimetext.com/docs/3/scope_naming.html | |
{ "name": "Kasugano Color Scheme" | |
, "variables": | |
{ "comment": "#707070" | |
, "keyword": "#95A7CC" | |
, "entity": "#EDEFF2" | |
, "invalid": "#899AFF" | |
, "reserved": "#7882BF" | |
, "constant": "#899AFF" | |
, "string": "#98C9BB" | |
} | |
, "globals": | |
{ "background": "#1B1B1B" | |
, "foreground": "#C8CACC" | |
, "caret": "white" | |
} | |
, "rules": | |
[ { "scope": "comment", "foreground": "var(comment)" } | |
, { "scope": "string", "foreground": "var(string)" } | |
, { "scope": "constant", "foreground": "var(constant)" } | |
, { "scope": "keyword", "foreground": "var(keyword)" } | |
, { "scope": "support", "foreground": "var(keyword)" } | |
, { "scope": "storage", "foreground": "var(keyword)" } | |
, { "scope": "entity", "foreground": "var(entity)" } | |
, { "scope": "invalid", "foreground": "var(invalid)" } | |
// , { "scope": "variable", "foreground": "var(variable)" } | |
, { "scope": "markup.heading", "background": "#242424" } | |
, { "scope": "markup.italic", "fontStyle": "italic" } | |
, { "scope": "markup.bold", "fontStyle": "bold" } | |
, { "scope": "markup.underline", "fontStyle": "underline" } | |
, { "scope": "markup.raw.code-fence", "background": "#141414" } | |
, { "scope": "markup.raw.block", "background": "#141414" } | |
, { "scope": "markup.raw", "foreground": "#A0A0A0" } | |
, { "scope": "punctuation.definition.raw", "foreground": "#A0A0A0" } | |
, { "scope": "entity.name.reference.link", "foreground": "var(constant)" } | |
, { "scope": "markup.underline.link", "foreground": "var(constant)" } | |
, { "scope": "string.other.link.title", "foreground": "var(constant)" } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a port of the Kasugano color scheme by Kori Ayakashi to Sublime Text 3. I use this in tandem with https://gist.github.com/swdunlop/8169da366cb92f427ac60d9562504d8d in iTerm to limit noisy colors while I work.