turbo-editors/turbo-corepublic Fork 0
v1.0.2
Commits
Clone
git clone https://git.rickub.com/turbo-editors/turbo-core.git
git clone ssh://git@rickub.com/turbo-editors/turbo-core.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

monochrome-dark.toml · 103 lines · 4.5 KBTOML Blame HistoryRaw
🛟 Updated. 28d5985 k33g 17h ago1name = "Monochrome Dark"
2description = "Greys only, telling code apart by weight rather than by hue. A dark theme."
3
4# There is no colour here at all, so everything the other themes say with hue
5# this one has to say with lightness and with bold, italic and underline. That
6# is the point: it stays readable on a projector, on a failing screen, and to
7# a reader who does not see the difference between the red and the green the
8# other themes rely on.
9#
10# This file shipped as "monochrome" until monochrome-light joined it. That name
11# still loads, through the alias in load.go, so no settings file had to change.
12inherits = "turbo-classic"
13
14[colors]
15default = { fg = "#b2b2b2", bg = "#121212" }
16
17desktop = { fg = "#303030", bg = "#000000" }
18shadow = { fg = "#4e4e4e", bg = "#000000" }
19
20"menu.bar" = { fg = "#d0d0d0", bg = "#303030" }
21"menu.item" = { fg = "#d0d0d0", bg = "#303030" }
22"menu.selected" = { fg = "#121212", bg = "#d0d0d0" }
23"menu.shortcut" = { fg = "#ffffff", bg = "#303030", bold = true }
24"menu.disabled" = { fg = "#6c6c6c", bg = "#303030" }
25
26"window.frame.active" = { fg = "#d0d0d0", bg = "#121212" }
27"window.frame.inactive" = { fg = "#585858", bg = "#121212" }
28"window.title.active" = { fg = "#ffffff", bg = "#121212", bold = true }
29"window.title.inactive" = { fg = "#8a8a8a", bg = "#121212" }
30"window.body" = { fg = "#b2b2b2", bg = "#121212" }
31
32statusbar = { fg = "#d0d0d0", bg = "#303030" }
33"statusbar.key" = { fg = "#ffffff", bg = "#303030", bold = true }
34"statusbar.hint" = { fg = "#8a8a8a", bg = "#303030" }
35
36scrollbar = { fg = "#3a3a3a", bg = "#262626" }
37"scrollbar.thumb" = { fg = "#b2b2b2", bg = "#262626" }
38
39"dialog.frame" = { fg = "#d0d0d0", bg = "#303030" }
40"dialog.body" = { fg = "#d0d0d0", bg = "#303030" }
41"dialog.title" = { fg = "#ffffff", bg = "#303030", bold = true }
42"dialog.label" = { fg = "#d0d0d0", bg = "#303030" }
43
44button = { fg = "#121212", bg = "#b2b2b2" }
45"button.focused" = { fg = "#121212", bg = "#ffffff", bold = true }
46"button.shortcut" = { fg = "#000000", bg = "#b2b2b2", bold = true, underline = true }
47
48input = { fg = "#e4e4e4", bg = "#3a3a3a" }
49"input.focused" = { fg = "#ffffff", bg = "#4e4e4e" }
50"input.selection" = { fg = "#121212", bg = "#d0d0d0" }
51
52list = { fg = "#d0d0d0", bg = "#303030" }
53"list.selected" = { fg = "#121212", bg = "#d0d0d0" }
54"list.unfocused" = { fg = "#8a8a8a", bg = "#303030" }
55
56checkbox = { fg = "#d0d0d0", bg = "#303030" }
57"checkbox.focused" = { fg = "#121212", bg = "#d0d0d0" }
58
59"editor.text" = { fg = "#b2b2b2", bg = "#121212" }
60"editor.selection" = { fg = "#121212", bg = "#9e9e9e" }
61"editor.linenumber" = { fg = "#585858", bg = "#121212" }
62"editor.currentline" = { fg = "#e4e4e4", bg = "#2e2e2e" }
63"editor.cursor" = { fg = "#121212", bg = "#ffffff" }
64
65"terminal.text" = { fg = "#b2b2b2", bg = "#000000" }
66"terminal.cursor" = { fg = "#000000", bg = "#ffffff" }
67
68"tree.text" = { fg = "#b2b2b2", bg = "#121212" }
69"tree.directory" = { fg = "#ffffff", bg = "#121212", bold = true }
70"tree.selected" = { fg = "#121212", bg = "#d0d0d0" }
71"tree.unfocused" = { fg = "#b2b2b2", bg = "#3a3a3a" }
72
73# Weight and slant do the work hue does elsewhere. Keywords are the brightest
74# thing on the page and bold; comments the dimmest and italic; a link is the
75# body colour and can only be told by its underline, which is what a link is.
76"syntax.identifier" = { fg = "#b2b2b2" }
77"syntax.keyword" = { fg = "#ffffff", bold = true }
78"syntax.type" = { fg = "#d0d0d0" }
79"syntax.builtin" = { fg = "#d0d0d0", bold = true }
80"syntax.constant" = { fg = "#e4e4e4" }
81"syntax.function" = { fg = "#e4e4e4", bold = true }
82"syntax.string" = { fg = "#949494" }
83"syntax.char" = { fg = "#949494" }
84"syntax.number" = { fg = "#e4e4e4" }
85# A comment is prose, read word by word, so it clears 4.5:1 against its
86# background even though it is the quietest colour here.
87"syntax.comment" = { fg = "#808080", italic = true }
88"syntax.operator" = { fg = "#a8a8a8" }
89"syntax.punctuation" = { fg = "#8a8a8a" }
90"syntax.heading" = { fg = "#ffffff", bold = true, underline = true }
91"syntax.tag" = { fg = "#d0d0d0", bold = true }
92"syntax.attribute" = { fg = "#949494", italic = true }
93"syntax.emphasis" = { fg = "#e4e4e4", bold = true }
94"syntax.link" = { fg = "#b2b2b2", underline = true }
95
96"completion.frame" = { fg = "#d0d0d0", bg = "#303030" }
97"completion.item" = { fg = "#d0d0d0", bg = "#303030" }
98"completion.selected" = { fg = "#121212", bg = "#d0d0d0", bold = true }
99"completion.detail" = { fg = "#8a8a8a", bg = "#303030" }
100
101"diagnostic.error" = { fg = "#ffffff", bold = true, underline = true }
102"diagnostic.warning" = { fg = "#e4e4e4", bold = true }
103"diagnostic.info" = { fg = "#b2b2b2", italic = true }