43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
// Documentation at https://www.sublimetext.com/docs/color_schemes.html
|
|
{
|
|
"variables":
|
|
{
|
|
"bluegray1": "hsl(240, 2%, 18%)", // interface bg
|
|
"bluegray2": "hsl(204, 4%, 23%)", // line number highlight
|
|
"bluegray3": "hsl(220, 4%, 28%)", // line highlighting
|
|
"bluegray4": "hsl(220, 3%, 40%)", // comments
|
|
"bluegray5": "hsl(220, 9%, 75%)", // plaintext
|
|
//"pink1": "hsl(357, 61%, 70%)", // html entities
|
|
"pink1": "hsl(326, 50%, 67%)",
|
|
//"green2": "hsl(150, 37%, 65%)", // json text, css properties
|
|
"green1": "hsl(139, 23%, 38%)", // diff added
|
|
"green2": "hsl(139, 51%, 65%)", // brighter than above
|
|
"purple1": "hsl(287, 60%, 72%)", // bools, operators, hex
|
|
"purple2": "hsl(288, 25%, 54%)", // diff error (replaced)
|
|
"yellow1": "hsl(54, 63%, 68%)", // css class/id, css values
|
|
"yellow3": "hsl(54, 29%, 51%)", // diff modified
|
|
"blue2": "hsl(201, 85%, 70%)",
|
|
//"blue2": "hsl(190, 100%, 78%)",
|
|
"red2": "hsl(2, 46%, 55%)" // diff error
|
|
},
|
|
"globals":
|
|
{
|
|
"line_diff_added": "var(green1)",
|
|
"line_diff_modified": "var(yellow3)",
|
|
"line_diff_deleted": "var(red2)",
|
|
},
|
|
"rules":
|
|
[
|
|
// changes opacity on strings
|
|
{
|
|
"scope": "string",
|
|
"foreground": "color(var(green2) alpha(0.95))"
|
|
},
|
|
// changes html classes/ids to blue
|
|
{
|
|
"scope": "entity.other.attribute-name",
|
|
"foreground": "var(blue2)"
|
|
},
|
|
]
|
|
}
|