Created
March 28, 2019 14:36
-
-
Save BalzGuenat/2c587e2f50bc78ecaa9ad248be78fff8 to your computer and use it in GitHub Desktop.
IntelliJ's Darcula color scheme for Sublime Text 3
This file contains hidden or 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
Show hidden characters
{ | |
"name": "Darcula", | |
"variables": | |
{ | |
"bg": "#2B2B2B", | |
}, | |
"globals": | |
{ | |
"background": "var(bg)", | |
"foreground": "#A9B7C6", | |
"caret": "#BBB", | |
"line_highlight": "color(var(bg) l(+ 5%))", | |
"accent": "#629755", | |
"gutter": "#313335", | |
"selection": "#214283", | |
"brackets_options": "bold", | |
"brackets_foreground": "#FFEF28", | |
}, | |
"rules": | |
[ | |
{ | |
"name": "Comment", | |
"scope": "comment", | |
"foreground": "#808080" | |
}, | |
{ | |
"name": "JavaDoc", | |
"scope": "text.html.javadoc", | |
"foreground": "#629755" | |
}, | |
{ | |
"name": "String", | |
"scope": "string", | |
"foreground": "#6A8759", | |
}, | |
{ | |
"name": "Number", | |
"scope": "constant.numeric", | |
"foreground": "#6897BB", | |
}, | |
{ | |
"name": "Invalid", | |
"scope": "invalid", | |
"foreground": "#F00", | |
}, | |
{ | |
"name": "Keyword", | |
"scope": "keyword", | |
"foreground": "#CC7832", | |
}, | |
{ | |
"name": "Semicolon", | |
"scope": "punctuation.terminator", | |
"foreground": "#CC7832", | |
}, | |
{ | |
"name": "Instanceof", | |
"scope": "keyword.operator.word", | |
"foreground": "#CC7832", | |
}, | |
{ | |
"name": ".class", | |
"scope": "variable.language", | |
"foreground": "#CC7832", | |
}, | |
{ | |
"name": "Operators", | |
"scope": "keyword.operator", | |
"foreground": "#A9B7C6", | |
}, | |
{ | |
"name": "Lambda arrow", | |
"scope": "storage.type.function", | |
"foreground": "#A9B7C6", | |
}, | |
{ | |
"name": "Arrays", | |
"scope": "storage.modifier.array", | |
"foreground": "#A9B7C6", | |
}, | |
{ | |
"name": "Function", | |
"scope": "variable.function", | |
"foreground": "#20B0D4", | |
}, | |
{ | |
"name": "Static Function", | |
"scope": "variable.function.static", | |
"font_style": "italic", | |
}, | |
{ | |
"name": "Qualifier", | |
"scope": "storage", | |
"foreground": "#CC7832", | |
}, | |
{ | |
"name": "Method Declaration", | |
"scope": "meta.method.identifier", | |
"foreground": "#FFC66D", | |
}, | |
{ | |
"name": "Type Parameter", | |
"scope": "variable.parameter.type", | |
"foreground": "#507874", | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment