turbo-editors/turbo-corepublic Fork 0
v0.9.0
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.

cobalt.toml · 96 lines · 3.9 KBTOML Blame HistoryRaw
🛟 Updated. 28d5985 k33g 17h ago1name = "Cobalt"
2description = "Deep navy with vivid accents, after the Cobalt palette. A dark theme."
3
4# The accent colours are the ones the Cobalt palette is recognised by — the
5# yellow, the orange, the acid green — kept as they are rather than muted to
6# match the other themes. A theme called Cobalt that is not that blue is a
7# different theme with a borrowed name.
8inherits = "turbo-classic"
9
10[colors]
11default = { fg = "#ffffff", bg = "#193549" }
12
13desktop = { fg = "#204d6e", bg = "#0d1f2d" }
14shadow = { fg = "#15374d", bg = "#06121b" }
15
16"menu.bar" = { fg = "#ffffff", bg = "#1f4662" }
17"menu.item" = { fg = "#ffffff", bg = "#1f4662" }
18"menu.selected" = { fg = "#193549", bg = "#ffc600" }
19"menu.shortcut" = { fg = "#ff628c", bg = "#1f4662" }
20"menu.disabled" = { fg = "#5a7a90", bg = "#1f4662" }
21
22"window.frame.active" = { fg = "#ffc600", bg = "#193549" }
23"window.frame.inactive" = { fg = "#3a6b82", bg = "#193549" }
24"window.title.active" = { fg = "#ffffff", bg = "#193549", bold = true }
25"window.title.inactive" = { fg = "#7ea3ba", bg = "#193549" }
26"window.body" = { fg = "#ffffff", bg = "#193549" }
27
28statusbar = { fg = "#ffffff", bg = "#1f4662" }
29"statusbar.key" = { fg = "#ff628c", bg = "#1f4662" }
30"statusbar.hint" = { fg = "#7ea3ba", bg = "#1f4662" }
31
32scrollbar = { fg = "#204d6e", bg = "#15374d" }
33"scrollbar.thumb" = { fg = "#ffc600", bg = "#15374d" }
34
35"dialog.frame" = { fg = "#ffc600", bg = "#1f4662" }
36"dialog.body" = { fg = "#ffffff", bg = "#1f4662" }
37"dialog.title" = { fg = "#ffc600", bg = "#1f4662", bold = true }
38"dialog.label" = { fg = "#ffffff", bg = "#1f4662" }
39
40button = { fg = "#193549", bg = "#ffc600" }
41"button.focused" = { fg = "#193549", bg = "#ffd74a", bold = true }
42"button.shortcut" = { fg = "#8a2b00", bg = "#ffc600", bold = true }
43
44input = { fg = "#ffffff", bg = "#204d6e" }
45"input.focused" = { fg = "#ffffff", bg = "#2a5f86" }
46"input.selection" = { fg = "#ffffff", bg = "#0050a4" }
47
48list = { fg = "#ffffff", bg = "#1f4662" }
49"list.selected" = { fg = "#193549", bg = "#ffc600" }
50"list.unfocused" = { fg = "#7ea3ba", bg = "#1f4662" }
51
52checkbox = { fg = "#ffffff", bg = "#1f4662" }
53"checkbox.focused" = { fg = "#193549", bg = "#ffc600" }
54
55"editor.text" = { fg = "#ffffff", bg = "#193549" }
56"editor.selection" = { fg = "#ffffff", bg = "#0050a4" }
57"editor.linenumber" = { fg = "#4a7897", bg = "#193549" }
58"editor.currentline" = { fg = "#ffffff", bg = "#204d6e" }
59"editor.cursor" = { fg = "#193549", bg = "#ffc600" }
60
61"terminal.text" = { fg = "#ffffff", bg = "#0d1f2d" }
62"terminal.cursor" = { fg = "#0d1f2d", bg = "#ffc600" }
63
64"tree.text" = { fg = "#ffffff", bg = "#193549" }
65"tree.directory" = { fg = "#80fcff", bg = "#193549", bold = true }
66"tree.selected" = { fg = "#193549", bg = "#ffc600" }
67"tree.unfocused" = { fg = "#ffffff", bg = "#204d6e" }
68
69"syntax.identifier" = { fg = "#ffffff" }
70"syntax.keyword" = { fg = "#ff9d00" }
71"syntax.type" = { fg = "#80fcff" }
72"syntax.builtin" = { fg = "#80fcff", bold = true }
73"syntax.constant" = { fg = "#ff628c" }
74"syntax.function" = { fg = "#ffc600" }
75"syntax.string" = { fg = "#3ad900" }
76"syntax.char" = { fg = "#3ad900" }
77"syntax.number" = { fg = "#ff628c" }
78# A comment is prose, read word by word, so it clears 4.5:1 against its
79# background even though it is the quietest colour here.
80"syntax.comment" = { fg = "#4da6ff", italic = true }
81"syntax.operator" = { fg = "#e1efff" }
82"syntax.punctuation" = { fg = "#a5c8de" }
83"syntax.heading" = { fg = "#ff9d00", bold = true }
84"syntax.tag" = { fg = "#80fcff" }
85"syntax.attribute" = { fg = "#ffc600" }
86"syntax.emphasis" = { fg = "#ffffff", bold = true }
87"syntax.link" = { fg = "#c792ea", underline = true }
88
89"completion.frame" = { fg = "#ffc600", bg = "#1f4662" }
90"completion.item" = { fg = "#ffffff", bg = "#1f4662" }
91"completion.selected" = { fg = "#193549", bg = "#ffc600", bold = true }
92"completion.detail" = { fg = "#7ea3ba", bg = "#1f4662" }
93
94"diagnostic.error" = { fg = "#ff628c", bold = true }
95"diagnostic.warning" = { fg = "#ffc600" }
96"diagnostic.info" = { fg = "#80fcff" }