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.

🛟 Updated. 28d5985 · on v1.0.2 · k33g · 16h ago
monochrome-dark.toml · 103 lines · 4.5 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
 97
 98
 99
100
101
102
103
name = "Monochrome Dark"
description = "Greys only, telling code apart by weight rather than by hue. A dark theme."

# There is no colour here at all, so everything the other themes say with hue
# this one has to say with lightness and with bold, italic and underline. That
# is the point: it stays readable on a projector, on a failing screen, and to
# a reader who does not see the difference between the red and the green the
# other themes rely on.
#
# This file shipped as "monochrome" until monochrome-light joined it. That name
# still loads, through the alias in load.go, so no settings file had to change.
inherits = "turbo-classic"

[colors]
default = { fg = "#b2b2b2", bg = "#121212" }

desktop = { fg = "#303030", bg = "#000000" }
shadow = { fg = "#4e4e4e", bg = "#000000" }

"menu.bar" = { fg = "#d0d0d0", bg = "#303030" }
"menu.item" = { fg = "#d0d0d0", bg = "#303030" }
"menu.selected" = { fg = "#121212", bg = "#d0d0d0" }
"menu.shortcut" = { fg = "#ffffff", bg = "#303030", bold = true }
"menu.disabled" = { fg = "#6c6c6c", bg = "#303030" }

"window.frame.active" = { fg = "#d0d0d0", bg = "#121212" }
"window.frame.inactive" = { fg = "#585858", bg = "#121212" }
"window.title.active" = { fg = "#ffffff", bg = "#121212", bold = true }
"window.title.inactive" = { fg = "#8a8a8a", bg = "#121212" }
"window.body" = { fg = "#b2b2b2", bg = "#121212" }

statusbar = { fg = "#d0d0d0", bg = "#303030" }
"statusbar.key" = { fg = "#ffffff", bg = "#303030", bold = true }
"statusbar.hint" = { fg = "#8a8a8a", bg = "#303030" }

scrollbar = { fg = "#3a3a3a", bg = "#262626" }
"scrollbar.thumb" = { fg = "#b2b2b2", bg = "#262626" }

"dialog.frame" = { fg = "#d0d0d0", bg = "#303030" }
"dialog.body" = { fg = "#d0d0d0", bg = "#303030" }
"dialog.title" = { fg = "#ffffff", bg = "#303030", bold = true }
"dialog.label" = { fg = "#d0d0d0", bg = "#303030" }

button = { fg = "#121212", bg = "#b2b2b2" }
"button.focused" = { fg = "#121212", bg = "#ffffff", bold = true }
"button.shortcut" = { fg = "#000000", bg = "#b2b2b2", bold = true, underline = true }

input = { fg = "#e4e4e4", bg = "#3a3a3a" }
"input.focused" = { fg = "#ffffff", bg = "#4e4e4e" }
"input.selection" = { fg = "#121212", bg = "#d0d0d0" }

list = { fg = "#d0d0d0", bg = "#303030" }
"list.selected" = { fg = "#121212", bg = "#d0d0d0" }
"list.unfocused" = { fg = "#8a8a8a", bg = "#303030" }

checkbox = { fg = "#d0d0d0", bg = "#303030" }
"checkbox.focused" = { fg = "#121212", bg = "#d0d0d0" }

"editor.text" = { fg = "#b2b2b2", bg = "#121212" }
"editor.selection" = { fg = "#121212", bg = "#9e9e9e" }
"editor.linenumber" = { fg = "#585858", bg = "#121212" }
"editor.currentline" = { fg = "#e4e4e4", bg = "#2e2e2e" }
"editor.cursor" = { fg = "#121212", bg = "#ffffff" }

"terminal.text" = { fg = "#b2b2b2", bg = "#000000" }
"terminal.cursor" = { fg = "#000000", bg = "#ffffff" }

"tree.text" = { fg = "#b2b2b2", bg = "#121212" }
"tree.directory" = { fg = "#ffffff", bg = "#121212", bold = true }
"tree.selected" = { fg = "#121212", bg = "#d0d0d0" }
"tree.unfocused" = { fg = "#b2b2b2", bg = "#3a3a3a" }

# Weight and slant do the work hue does elsewhere. Keywords are the brightest
# thing on the page and bold; comments the dimmest and italic; a link is the
# body colour and can only be told by its underline, which is what a link is.
"syntax.identifier" = { fg = "#b2b2b2" }
"syntax.keyword" = { fg = "#ffffff", bold = true }
"syntax.type" = { fg = "#d0d0d0" }
"syntax.builtin" = { fg = "#d0d0d0", bold = true }
"syntax.constant" = { fg = "#e4e4e4" }
"syntax.function" = { fg = "#e4e4e4", bold = true }
"syntax.string" = { fg = "#949494" }
"syntax.char" = { fg = "#949494" }
"syntax.number" = { fg = "#e4e4e4" }
# 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 = "#808080", italic = true }
"syntax.operator" = { fg = "#a8a8a8" }
"syntax.punctuation" = { fg = "#8a8a8a" }
"syntax.heading" = { fg = "#ffffff", bold = true, underline = true }
"syntax.tag" = { fg = "#d0d0d0", bold = true }
"syntax.attribute" = { fg = "#949494", italic = true }
"syntax.emphasis" = { fg = "#e4e4e4", bold = true }
"syntax.link" = { fg = "#b2b2b2", underline = true }

"completion.frame" = { fg = "#d0d0d0", bg = "#303030" }
"completion.item" = { fg = "#d0d0d0", bg = "#303030" }
"completion.selected" = { fg = "#121212", bg = "#d0d0d0", bold = true }
"completion.detail" = { fg = "#8a8a8a", bg = "#303030" }

"diagnostic.error" = { fg = "#ffffff", bold = true, underline = true }
"diagnostic.warning" = { fg = "#e4e4e4", bold = true }
"diagnostic.info" = { fg = "#b2b2b2", italic = true }