Skip to content

Instantly share code, notes, and snippets.

@swdunlop
Last active April 29, 2019 20:59
Show Gist options
  • Select an option

  • Save swdunlop/ff328dd48a3f4b89b934388af84a826a to your computer and use it in GitHub Desktop.

Select an option

Save swdunlop/ff328dd48a3f4b89b934388af84a826a to your computer and use it in GitHub Desktop.

Revisions

  1. swdunlop revised this gist Apr 29, 2019. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion kasugano.sublime-color-scheme
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,3 @@
    kasugano.sublime-color-scheme
    // scope reference: https://www.sublimetext.com/docs/3/scope_naming.html
    { "name": "Kasugano Color Scheme"
    , "variables":
  2. swdunlop created this gist Apr 29, 2019.
    42 changes: 42 additions & 0 deletions kasugano.sublime-color-scheme
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,42 @@
    kasugano.sublime-color-scheme
    // 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)" }
    ]
    }