turbo-editors/turbo-corepublic Fork 0
v1.0.1
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.

turbo-classic.toml · 102 lines · 4.1 KBTOML Blame HistoryRaw
🛟 Updated. 28d5985 k33g 13h ago1name = "Turbo Classic"
2description = "The Borland blue: navy desktop, grey menus, green buttons."
3
4# Every key the editor asks for is listed here, so this file doubles as the
5# reference for what a theme may set. A theme of your own need not be this
6# complete: undefined keys fall back along the dots, so setting just "syntax"
7# already colours every token.
8#
9# Colours are ANSI names understood by tcell ("navy", "aqua", "silver", ...),
10# "#rrggbb" literals, or "default" for whatever the terminal itself uses.
11
12[colors]
13default = { fg = "silver", bg = "navy" }
14
15# The patterned backdrop behind the windows, and the shadow they cast.
16desktop = { fg = "blue", bg = "navy" }
17shadow = { fg = "gray", bg = "black" }
18
19"menu.bar" = { fg = "black", bg = "silver" }
20"menu.item" = { fg = "black", bg = "silver" }
21"menu.selected" = { fg = "black", bg = "green" }
22"menu.shortcut" = { fg = "maroon", bg = "silver" }
23"menu.disabled" = { fg = "gray", bg = "silver" }
24
25"window.frame.active" = { fg = "white", bg = "navy" }
26"window.frame.inactive" = { fg = "silver", bg = "navy" }
27"window.title.active" = { fg = "yellow", bg = "navy", bold = true }
28"window.title.inactive" = { fg = "silver", bg = "navy" }
29"window.body" = { fg = "silver", bg = "navy" }
30
31statusbar = { fg = "black", bg = "silver" }
32"statusbar.key" = { fg = "maroon", bg = "silver" }
33"statusbar.hint" = { fg = "navy", bg = "silver" }
34
35scrollbar = { fg = "navy", bg = "teal" }
36"scrollbar.thumb" = { fg = "aqua", bg = "teal" }
37
38"dialog.frame" = { fg = "white", bg = "silver" }
39"dialog.body" = { fg = "black", bg = "silver" }
40"dialog.title" = { fg = "black", bg = "silver", bold = true }
41"dialog.label" = { fg = "black", bg = "silver" }
42
43button = { fg = "black", bg = "green" }
44"button.focused" = { fg = "white", bg = "green", bold = true }
45"button.shortcut" = { fg = "yellow", bg = "green", bold = true }
46
47input = { fg = "black", bg = "teal" }
48"input.focused" = { fg = "white", bg = "teal" }
49"input.selection" = { fg = "teal", bg = "silver" }
50
51list = { fg = "black", bg = "silver" }
52"list.selected" = { fg = "white", bg = "navy" }
53"list.unfocused" = { fg = "black", bg = "gray" }
54
55checkbox = { fg = "black", bg = "silver" }
56"checkbox.focused" = { fg = "white", bg = "navy" }
57
58"editor.text" = { fg = "silver", bg = "navy" }
59"editor.selection" = { fg = "navy", bg = "silver" }
60"editor.linenumber" = { fg = "teal", bg = "navy" }
61"editor.currentline" = { fg = "silver", bg = "#00005f" }
62"editor.cursor" = { fg = "navy", bg = "aqua" }
63
64"terminal.text" = { fg = "silver", bg = "black" }
65"terminal.cursor" = { fg = "black", bg = "aqua" }
66
67"tree.text" = { fg = "silver", bg = "navy" }
68"tree.directory" = { fg = "white", bg = "navy", bold = true }
69"tree.selected" = { fg = "black", bg = "aqua" }
70"tree.unfocused" = { fg = "black", bg = "gray" }
71
72# Plain identifiers stay yellow, the colour Turbo C used for all its text;
73# every other class of token is pulled away from it so the eye can sort them.
74"syntax.identifier" = { fg = "yellow" }
75"syntax.keyword" = { fg = "white", bold = true }
76"syntax.type" = { fg = "aqua" }
77"syntax.builtin" = { fg = "aqua", bold = true }
78"syntax.constant" = { fg = "fuchsia" }
79"syntax.function" = { fg = "yellow", bold = true }
80"syntax.string" = { fg = "lime" }
81"syntax.char" = { fg = "lime" }
82"syntax.number" = { fg = "fuchsia" }
83# Hex rather than an ANSI name: nothing sits between gray (#808080, which
84# reads at 4.05:1 on this navy — too dim to read) and silver, which is
85# already the operators.
86"syntax.comment" = { fg = "#8f8f8f" }
87"syntax.operator" = { fg = "silver" }
88"syntax.punctuation" = { fg = "silver" }
89"syntax.heading" = { fg = "white", bold = true }
90"syntax.tag" = { fg = "aqua" }
91"syntax.attribute" = { fg = "yellow" }
92"syntax.emphasis" = { fg = "fuchsia", bold = true }
93"syntax.link" = { fg = "aqua", underline = true }
94
95"completion.frame" = { fg = "white", bg = "teal" }
96"completion.item" = { fg = "black", bg = "teal" }
97"completion.selected" = { fg = "white", bg = "navy", bold = true }
98"completion.detail" = { fg = "navy", bg = "teal" }
99
100"diagnostic.error" = { fg = "red", bold = true }
101"diagnostic.warning" = { fg = "yellow" }
102"diagnostic.info" = { fg = "aqua" }