| 🛟 Updated. 28d5985 k33g 18h ago | 1 | name = "Turbo Dark" |
| 2 | description = "The Turbo layout on a modern dark grey, for terminals with true colour." |
| 3 | |
| 4 | # Only the keys that differ from Turbo Classic are set: everything else is |
| 5 | # inherited. That is what "inherits" is for, and it is how a theme of your own |
| 6 | # should usually start. |
| 7 | inherits = "turbo-classic" |
| 8 | |
| 9 | [colors] |
| 10 | default = { fg = "#c6c6c6", bg = "#1c1c1c" } |
| 11 | |
| 12 | desktop = { fg = "#3a3a3a", bg = "#121212" } |
| 13 | shadow = { fg = "#585858", bg = "#000000" } |
| 14 | |
| 15 | "menu.bar" = { fg = "#c6c6c6", bg = "#303030" } |
| 16 | "menu.item" = { fg = "#c6c6c6", bg = "#303030" } |
| 17 | "menu.selected" = { fg = "#1c1c1c", bg = "#5fafd7" } |
| 18 | "menu.shortcut" = { fg = "#ff8787", bg = "#303030" } |
| 19 | "menu.disabled" = { fg = "#6c6c6c", bg = "#303030" } |
| 20 | |
| 21 | "window.frame.active" = { fg = "#5fafd7", bg = "#1c1c1c" } |
| 22 | "window.frame.inactive" = { fg = "#4e4e4e", bg = "#1c1c1c" } |
| 23 | "window.title.active" = { fg = "#ffd787", bg = "#1c1c1c", bold = true } |
| 24 | "window.title.inactive" = { fg = "#8a8a8a", bg = "#1c1c1c" } |
| 25 | "window.body" = { fg = "#c6c6c6", bg = "#1c1c1c" } |
| 26 | |
| 27 | statusbar = { fg = "#c6c6c6", bg = "#303030" } |
| 28 | "statusbar.key" = { fg = "#ff8787", bg = "#303030" } |
| 29 | "statusbar.hint" = { fg = "#8a8a8a", bg = "#303030" } |
| 30 | |
| 31 | scrollbar = { fg = "#3a3a3a", bg = "#262626" } |
| 32 | "scrollbar.thumb" = { fg = "#5fafd7", bg = "#262626" } |
| 33 | |
| 34 | "dialog.frame" = { fg = "#5fafd7", bg = "#303030" } |
| 35 | "dialog.body" = { fg = "#c6c6c6", bg = "#303030" } |
| 36 | "dialog.title" = { fg = "#ffd787", bg = "#303030", bold = true } |
| 37 | "dialog.label" = { fg = "#c6c6c6", bg = "#303030" } |
| 38 | |
| 39 | button = { fg = "#1c1c1c", bg = "#5fafd7" } |
| 40 | "button.focused" = { fg = "#1c1c1c", bg = "#87d7ff", bold = true } |
| 41 | "button.shortcut" = { fg = "#870000", bg = "#5fafd7", bold = true } |
| 42 | |
| 43 | input = { fg = "#e4e4e4", bg = "#3a3a3a" } |
| 44 | "input.focused" = { fg = "#ffffff", bg = "#444444" } |
| 45 | "input.selection" = { fg = "#1c1c1c", bg = "#5fafd7" } |
| 46 | |
| 47 | list = { fg = "#c6c6c6", bg = "#303030" } |
| 48 | "list.selected" = { fg = "#1c1c1c", bg = "#5fafd7" } |
| 49 | "list.unfocused" = { fg = "#8a8a8a", bg = "#303030" } |
| 50 | |
| 51 | checkbox = { fg = "#c6c6c6", bg = "#303030" } |
| 52 | "checkbox.focused" = { fg = "#1c1c1c", bg = "#5fafd7" } |
| 53 | |
| 54 | "editor.text" = { fg = "#c6c6c6", bg = "#1c1c1c" } |
| 55 | "editor.selection" = { fg = "#1c1c1c", bg = "#87afd7" } |
| 56 | "editor.linenumber" = { fg = "#585858", bg = "#1c1c1c" } |
| 57 | "editor.currentline" = { fg = "#e4e4e4", bg = "#303030" } |
| 58 | "editor.cursor" = { fg = "#1c1c1c", bg = "#ffd787" } |
| 59 | |
| 60 | "terminal.text" = { fg = "#c6c6c6", bg = "#121212" } |
| 61 | "terminal.cursor" = { fg = "#121212", bg = "#ffd787" } |
| 62 | |
| 63 | "tree.text" = { fg = "#c6c6c6", bg = "#1c1c1c" } |
| 64 | "tree.directory" = { fg = "#87d7ff", bg = "#1c1c1c", bold = true } |
| 65 | "tree.selected" = { fg = "#1c1c1c", bg = "#5fafd7" } |
| 66 | "tree.unfocused" = { fg = "#c6c6c6", bg = "#3a3a3a" } |
| 67 | |
| 68 | "syntax.identifier" = { fg = "#c6c6c6" } |
| 69 | "syntax.keyword" = { fg = "#ff87d7" } |
| 70 | "syntax.type" = { fg = "#5fd7d7" } |
| 71 | "syntax.builtin" = { fg = "#5fd7d7", bold = true } |
| 72 | "syntax.constant" = { fg = "#d7af5f" } |
| 73 | "syntax.function" = { fg = "#87d7ff" } |
| 74 | "syntax.string" = { fg = "#a8d76f" } |
| 75 | "syntax.char" = { fg = "#a8d76f" } |
| 76 | "syntax.number" = { fg = "#d7af5f" } |
| 77 | # A comment is prose, read word by word, so it clears 4.5:1 against its |
| 78 | # background even though it is the quietest colour here. |
| 79 | "syntax.comment" = { fg = "#878787", italic = true } |
| 80 | "syntax.operator" = { fg = "#9e9e9e" } |
| 81 | "syntax.punctuation" = { fg = "#767676" } |
| 82 | "syntax.heading" = { fg = "#ff87d7", bold = true } |
| 83 | "syntax.tag" = { fg = "#5fd7d7" } |
| 84 | "syntax.attribute" = { fg = "#d7af5f" } |
| 85 | "syntax.emphasis" = { fg = "#e4e4e4", bold = true } |
| 86 | "syntax.link" = { fg = "#87d7ff", underline = true } |
| 87 | |
| 88 | "completion.frame" = { fg = "#5fafd7", bg = "#303030" } |
| 89 | "completion.item" = { fg = "#c6c6c6", bg = "#303030" } |
| 90 | "completion.selected" = { fg = "#1c1c1c", bg = "#5fafd7", bold = true } |
| 91 | "completion.detail" = { fg = "#8a8a8a", bg = "#303030" } |
| 92 | |
| 93 | "diagnostic.error" = { fg = "#ff5f5f", bold = true } |
| 94 | "diagnostic.warning" = { fg = "#d7af5f" } |
| 95 | "diagnostic.info" = { fg = "#5fafd7" } |