Skip to content

Commit dd4901e

Browse files
committed
Color scheme adjustments
1 parent 090ae0d commit dd4901e

File tree

5 files changed

+18
-17
lines changed

5 files changed

+18
-17
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### WIP
2+
3+
- Color scheme adjustments
4+
15
### 4.3.2 - Dec 9, 2024
26

37
- Clarified some symbol/keyword edge cases in syntax

Clojure Sublimed Light.sublime-color-scheme

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
"active": "#007ACC",
77
"fg": "#000",
88
"bg": "#fff",
9-
"blue": "#DBF1FF",
10-
"green": "#F1FADF",
11-
"dark_green": "#DBECB6",
12-
"red": "#FFE0E0",
13-
"magenta": "#7A3E9D",
14-
"yellow": "#FFFABC",
15-
"orange": "#FFBC5D",
169
"gray": "#A0A0A0",
1710
},
1811
"globals":
@@ -26,9 +19,9 @@
2619
"inactive_selection": "#E0E0E0",
2720
"selection_border_width": "0",
2821
"selection_corner_radius": "2",
29-
"highlight": "var(orange)",
22+
"highlight": "#FFBC5D",
23+
"find_highlight": "#FFBC5D",
3024
"find_highlight_foreground": "#000",
31-
"find_highlight": "var(orange)",
3225
"brackets_options": "underline",
3326
"brackets_foreground": "var(active)",
3427
"bracket_contents_options": "underline",
@@ -42,19 +35,21 @@
4235
"rules":
4336
[ {"name": "Strings",
4437
"scope": "string - meta.metadata, meta.quoted string - meta.metadata - comment",
45-
"background": "var(green)"},
38+
"background": "#eefbd9",
39+
"foreground": "#3c5c00"},
4640

4741
{"name": "Escapes",
4842
"scope": "constant.character.escape - meta.metadata, constant.other.placeholder - meta.metadata",
49-
"background": "var(dark_green)"},
43+
"background": "#DBECB6"},
5044

5145
{"name": "Constants",
5246
"scope": "constant - constant.character.escape, punctuation.definition.constant",
53-
"foreground": "var(magenta)"},
47+
"foreground": "#8a3eb5"},
5448

5549
{"name": "Definitions",
5650
"scope": "entity.name - entity.name.tag - meta.metadata",
57-
"background": "var(blue)"},
51+
"background": "#DBF1FF",
52+
"foreground": "#195b7c"},
5853

5954
{"name": "Symbol namespaces",
6055
"scope": "meta.namespace.symbol, source.symbol punctuation.definition.namespace",
@@ -74,8 +69,8 @@
7469

7570
{"name": "Line Comments",
7671
"scope": "comment - comment.reader - comment.form, invalid comment, meta.quoted comment.line, meta.quoted comment.line punctuation.definition.comment, meta.metadata comment.line punctuation.definition.comment",
77-
"foreground": "var(fg)",
78-
"background": "var(yellow)"},
72+
"foreground": "#6d6607",
73+
"background": "#FFFABC"},
7974

8075
{"name": "Reader comments",
8176
"scope": "comment.reader, comment.reader keyword.operator, comment.reader string, comment.reader constant, comment.reader punctuation.definition.constant, comment.reader punctuation, comment.reader constant.character.escape, comment.reader invalid.illegal.escape, comment.reader string invalid, comment.reader string invalid punctuation, comment.reader entity.name, comment.reader meta.quoted",
@@ -129,7 +124,7 @@
129124
{"name": "Mistakes",
130125
"scope": "invalid, invalid string, invalid constant, invalid entity.name, invalid punctuation, invalid source.symbol",
131126
"foreground": "#c33",
132-
"background": "var(red)"},
127+
"background": "#FFE0E0"},
133128

134129
// MARKUP
135130

screenshots/scheme.png

3.87 KB
Loading

screenshots/syntaxes.png

49.6 KB
Loading

test_scheme/demo.clj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ clojure.string/index-of
4545

4646

4747
(defn reverse
48-
"Returns a seq of the items in reverse order."
48+
"Returns a seq of \"items\" in reverse order."
4949
{:added "1.0"
5050
:static true}
5151
[coll]
@@ -70,3 +70,5 @@ clojure.string/index-of
7070

7171
(defn ^:private >0? [n]
7272
(clojure.lang.Numbers/gt n 0))
73+
74+

0 commit comments

Comments
 (0)