1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"name": "Grammalecte Color Scheme",
"globals":
{
"background": "hsl(210, 20%, 15%)",
"foreground": "hsl(210, 20%, 95%)",
"caret": "hsl(210, 20%, 80%)",
"block_caret": "red",
"line_highlight": "hsl(210, 60%, 25%)",
"bracket_options": "underline bold",
"selection": "hsl(210, 50%, 20%)",
"selection_border": "hsl(210, 80%, 40%)",
"selection_border_width": "1",
"selection_corner_style": "cut",
"selection_corner_radius": "3",
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"name": "Grammalecte Color Scheme",
"globals":
{
"background": "hsl(210, 20%, 15%)",
"foreground": "hsl(210, 20%, 95%)",
"caret": "hsl(210, 20%, 80%)",
"block_caret": "red",
"line_highlight": "hsl(210, 60%, 30%)",
"bracket_options": "underline bold",
"selection": "hsl(210, 50%, 20%)",
"selection_border": "hsl(210, 80%, 40%)",
"selection_border_width": "1",
"selection_corner_style": "cut",
"selection_corner_radius": "3",
|
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
{ "name": "Entity Valid", "scope": "entity.valid", "foreground": "hsl(150, 100%, 80%)", "background": "hsl(150, 100%, 20%)", "font_style": "bold", },
{ "name": "Entity Invalid", "scope": "entity.invalid", "foreground": "hsl(0, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", },
{ "name": "Token meta", "scope": "string.meta", "foreground": "hsl(270, 100%, 90%)", "background": "hsl(270, 100%, 40%)", },
{ "name": "Token token", "scope": "string.token", "foreground": "hsl(240, 50%, 90%)", "background": "hsl(240, 50%, 40%)", },
{ "name": "Token Jumptoken", "scope": "string.jumptoken", "foreground": "hsl(0, 50%, 90%)", "background": "hsl(10, 50%, 40%)", },
{ "name": "Token lemma", "scope": "string.lemma", "foreground": "hsl(210, 100%, 80%)", "background": "hsl(210, 100%, 15%)", },
{ "name": "Token tag", "scope": "string.tag", "foreground": "hsl(30, 100%, 90%)", "background": "hsl(30, 100%, 20%)", },
{ "name": "Token regex", "scope": "string.regex", "foreground": "hsl(60, 100%, 80%)", "background": "hsl(60, 100%, 10%)", },
{ "name": "Token morph regex", "scope": "string.morph.regex", "foreground": "hsl(150, 80%, 90%)", "background": "hsl(150, 80%, 10%)", },
{ "name": "Token morph negregex", "scope": "string.morph.negregex","foreground": "hsl(0, 80%, 90%)", "background": "hsl(0, 80%, 10%)", },
{ "name": "Keyword Python", "scope": "keyword.python", "foreground": "#A0A0A0", },
|
>
|
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
{ "name": "Entity Valid", "scope": "entity.valid", "foreground": "hsl(150, 100%, 80%)", "background": "hsl(150, 100%, 20%)", "font_style": "bold", },
{ "name": "Entity Invalid", "scope": "entity.invalid", "foreground": "hsl(0, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", },
{ "name": "Token meta", "scope": "string.meta", "foreground": "hsl(270, 100%, 90%)", "background": "hsl(270, 100%, 40%)", },
{ "name": "Token token", "scope": "string.token", "foreground": "hsl(240, 50%, 90%)", "background": "hsl(240, 50%, 40%)", },
{ "name": "Token Jumptoken", "scope": "string.jumptoken", "foreground": "hsl(0, 50%, 90%)", "background": "hsl(10, 50%, 40%)", },
{ "name": "Token lemma", "scope": "string.lemma", "foreground": "hsl(210, 100%, 80%)", "background": "hsl(210, 100%, 15%)", },
{ "name": "Token phonet", "scope": "string.phonet", "foreground": "hsl(90, 100%, 80%)", "background": "hsl(90, 100%, 10%)", },
{ "name": "Token tag", "scope": "string.tag", "foreground": "hsl(30, 100%, 90%)", "background": "hsl(30, 100%, 20%)", },
{ "name": "Token regex", "scope": "string.regex", "foreground": "hsl(60, 100%, 80%)", "background": "hsl(60, 100%, 10%)", },
{ "name": "Token morph regex", "scope": "string.morph.regex", "foreground": "hsl(150, 80%, 90%)", "background": "hsl(150, 80%, 10%)", },
{ "name": "Token morph negregex", "scope": "string.morph.negregex","foreground": "hsl(0, 80%, 90%)", "background": "hsl(0, 80%, 10%)", },
{ "name": "Keyword Python", "scope": "keyword.python", "foreground": "#A0A0A0", },
|