Skip to content

Instantly share code, notes, and snippets.

@swdunlop
Last active April 29, 2019 20:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swdunlop/ff328dd48a3f4b89b934388af84a826a to your computer and use it in GitHub Desktop.
Save swdunlop/ff328dd48a3f4b89b934388af84a826a to your computer and use it in GitHub Desktop.
Kasugano Colors for Sublime Text 3
// 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)" }
]
}
@swdunlop
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment