turbo-editors/turbo-corepublic Fork 0
28d59854361aeda8541d853093e732126f3d7bff
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.

🛟 Updated. 28d5985 · on 28d59854361aeda8541d853093e732126f3d7bff · k33g · 16h ago
cobalt.toml · 96 lines · 3.9 KBTOML Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name = "Cobalt"
description = "Deep navy with vivid accents, after the Cobalt palette. A dark theme."

# The accent colours are the ones the Cobalt palette is recognised by — the
# yellow, the orange, the acid green — kept as they are rather than muted to
# match the other themes. A theme called Cobalt that is not that blue is a
# different theme with a borrowed name.
inherits = "turbo-classic"

[colors]
default = { fg = "#ffffff", bg = "#193549" }

desktop = { fg = "#204d6e", bg = "#0d1f2d" }
shadow = { fg = "#15374d", bg = "#06121b" }

"menu.bar" = { fg = "#ffffff", bg = "#1f4662" }
"menu.item" = { fg = "#ffffff", bg = "#1f4662" }
"menu.selected" = { fg = "#193549", bg = "#ffc600" }
"menu.shortcut" = { fg = "#ff628c", bg = "#1f4662" }
"menu.disabled" = { fg = "#5a7a90", bg = "#1f4662" }

"window.frame.active" = { fg = "#ffc600", bg = "#193549" }
"window.frame.inactive" = { fg = "#3a6b82", bg = "#193549" }
"window.title.active" = { fg = "#ffffff", bg = "#193549", bold = true }
"window.title.inactive" = { fg = "#7ea3ba", bg = "#193549" }
"window.body" = { fg = "#ffffff", bg = "#193549" }

statusbar = { fg = "#ffffff", bg = "#1f4662" }
"statusbar.key" = { fg = "#ff628c", bg = "#1f4662" }
"statusbar.hint" = { fg = "#7ea3ba", bg = "#1f4662" }

scrollbar = { fg = "#204d6e", bg = "#15374d" }
"scrollbar.thumb" = { fg = "#ffc600", bg = "#15374d" }

"dialog.frame" = { fg = "#ffc600", bg = "#1f4662" }
"dialog.body" = { fg = "#ffffff", bg = "#1f4662" }
"dialog.title" = { fg = "#ffc600", bg = "#1f4662", bold = true }
"dialog.label" = { fg = "#ffffff", bg = "#1f4662" }

button = { fg = "#193549", bg = "#ffc600" }
"button.focused" = { fg = "#193549", bg = "#ffd74a", bold = true }
"button.shortcut" = { fg = "#8a2b00", bg = "#ffc600", bold = true }

input = { fg = "#ffffff", bg = "#204d6e" }
"input.focused" = { fg = "#ffffff", bg = "#2a5f86" }
"input.selection" = { fg = "#ffffff", bg = "#0050a4" }

list = { fg = "#ffffff", bg = "#1f4662" }
"list.selected" = { fg = "#193549", bg = "#ffc600" }
"list.unfocused" = { fg = "#7ea3ba", bg = "#1f4662" }

checkbox = { fg = "#ffffff", bg = "#1f4662" }
"checkbox.focused" = { fg = "#193549", bg = "#ffc600" }

"editor.text" = { fg = "#ffffff", bg = "#193549" }
"editor.selection" = { fg = "#ffffff", bg = "#0050a4" }
"editor.linenumber" = { fg = "#4a7897", bg = "#193549" }
"editor.currentline" = { fg = "#ffffff", bg = "#204d6e" }
"editor.cursor" = { fg = "#193549", bg = "#ffc600" }

"terminal.text" = { fg = "#ffffff", bg = "#0d1f2d" }
"terminal.cursor" = { fg = "#0d1f2d", bg = "#ffc600" }

"tree.text" = { fg = "#ffffff", bg = "#193549" }
"tree.directory" = { fg = "#80fcff", bg = "#193549", bold = true }
"tree.selected" = { fg = "#193549", bg = "#ffc600" }
"tree.unfocused" = { fg = "#ffffff", bg = "#204d6e" }

"syntax.identifier" = { fg = "#ffffff" }
"syntax.keyword" = { fg = "#ff9d00" }
"syntax.type" = { fg = "#80fcff" }
"syntax.builtin" = { fg = "#80fcff", bold = true }
"syntax.constant" = { fg = "#ff628c" }
"syntax.function" = { fg = "#ffc600" }
"syntax.string" = { fg = "#3ad900" }
"syntax.char" = { fg = "#3ad900" }
"syntax.number" = { fg = "#ff628c" }
# A comment is prose, read word by word, so it clears 4.5:1 against its
# background even though it is the quietest colour here.
"syntax.comment" = { fg = "#4da6ff", italic = true }
"syntax.operator" = { fg = "#e1efff" }
"syntax.punctuation" = { fg = "#a5c8de" }
"syntax.heading" = { fg = "#ff9d00", bold = true }
"syntax.tag" = { fg = "#80fcff" }
"syntax.attribute" = { fg = "#ffc600" }
"syntax.emphasis" = { fg = "#ffffff", bold = true }
"syntax.link" = { fg = "#c792ea", underline = true }

"completion.frame" = { fg = "#ffc600", bg = "#1f4662" }
"completion.item" = { fg = "#ffffff", bg = "#1f4662" }
"completion.selected" = { fg = "#193549", bg = "#ffc600", bold = true }
"completion.detail" = { fg = "#7ea3ba", bg = "#1f4662" }

"diagnostic.error" = { fg = "#ff628c", bold = true }
"diagnostic.warning" = { fg = "#ffc600" }
"diagnostic.info" = { fg = "#80fcff" }