| 🛟 Updated. 28d5985 k33g 17h ago | 1 | name = "Catppuccin Latte" |
| 2 | description = "The Catppuccin Latte palette: warm paper with saturated accents. A light theme." |
| 3 | |
| 4 | # The Catppuccin palette, light flavour. Colours are taken from the published |
| 5 | # Latte palette unchanged — a theme called Catppuccin that is not those exact |
| 6 | # values is a different theme with a borrowed name. |
| 7 | # |
| 8 | # Latte is the flavour that needs the most care in a Turbo layout. Its accents |
| 9 | # are far more saturated than Frappé's, because they have to carry against |
| 10 | # paper rather than against slate; using Frappé's mapping with Latte's numbers |
| 11 | # would give a page that is legible and a menu bar that is not. |
| 12 | # |
| 13 | # Base #eff1f5 Text #4c4f69 |
| 14 | # Mantle #e6e9ef Subtext1 #5c5f77 |
| 15 | # Crust #dce0e8 Subtext0 #6c6f85 |
| 16 | inherits = "turbo-classic" |
| 17 | |
| 18 | [colors] |
| 19 | default = { fg = "#4c4f69", bg = "#eff1f5" } |
| 20 | |
| 21 | desktop = { fg = "#bcc0cc", bg = "#dce0e8" } |
| 22 | shadow = { fg = "#dce0e8", bg = "#dce0e8" } |
| 23 | |
| 24 | "menu.bar" = { fg = "#4c4f69", bg = "#e6e9ef" } |
| 25 | "menu.item" = { fg = "#4c4f69", bg = "#e6e9ef" } |
| 26 | "menu.selected" = { fg = "#eff1f5", bg = "#1e66f5" } |
| 27 | "menu.shortcut" = { fg = "#d20f39", bg = "#e6e9ef", bold = true } |
| 28 | "menu.disabled" = { fg = "#9ca0b0", bg = "#e6e9ef" } |
| 29 | |
| 30 | "window.frame.active" = { fg = "#1e66f5", bg = "#eff1f5" } |
| 31 | "window.frame.inactive" = { fg = "#acb0be", bg = "#eff1f5" } |
| 32 | "window.title.active" = { fg = "#4c4f69", bg = "#eff1f5", bold = true } |
| 33 | "window.title.inactive" = { fg = "#9ca0b0", bg = "#eff1f5" } |
| 34 | "window.body" = { fg = "#4c4f69", bg = "#eff1f5" } |
| 35 | |
| 36 | statusbar = { fg = "#4c4f69", bg = "#e6e9ef" } |
| 37 | "statusbar.key" = { fg = "#fe640b", bg = "#e6e9ef", bold = true } |
| 38 | "statusbar.hint" = { fg = "#6c6f85", bg = "#e6e9ef" } |
| 39 | |
| 40 | scrollbar = { fg = "#bcc0cc", bg = "#ccd0da" } |
| 41 | "scrollbar.thumb" = { fg = "#9ca0b0", bg = "#ccd0da" } |
| 42 | |
| 43 | "dialog.frame" = { fg = "#1e66f5", bg = "#ccd0da" } |
| 44 | "dialog.body" = { fg = "#4c4f69", bg = "#ccd0da" } |
| 45 | "dialog.title" = { fg = "#4c4f69", bg = "#ccd0da", bold = true } |
| 46 | "dialog.label" = { fg = "#5c5f77", bg = "#ccd0da" } |
| 47 | |
| 48 | button = { fg = "#eff1f5", bg = "#1e66f5" } |
| 49 | "button.focused" = { fg = "#eff1f5", bg = "#7287fd", bold = true } |
| 50 | "button.shortcut" = { fg = "#df8e1d", bg = "#1e66f5", bold = true, underline = true } |
| 51 | |
| 52 | input = { fg = "#4c4f69", bg = "#ccd0da" } |
| 53 | "input.focused" = { fg = "#4c4f69", bg = "#bcc0cc" } |
| 54 | "input.selection" = { fg = "#eff1f5", bg = "#1e66f5" } |
| 55 | |
| 56 | list = { fg = "#4c4f69", bg = "#ccd0da" } |
| 57 | "list.selected" = { fg = "#eff1f5", bg = "#1e66f5" } |
| 58 | "list.unfocused" = { fg = "#6c6f85", bg = "#ccd0da" } |
| 59 | |
| 60 | checkbox = { fg = "#4c4f69", bg = "#ccd0da" } |
| 61 | "checkbox.focused" = { fg = "#eff1f5", bg = "#1e66f5" } |
| 62 | |
| 63 | "editor.text" = { fg = "#4c4f69", bg = "#eff1f5" } |
| 64 | "editor.selection" = { fg = "#4c4f69", bg = "#bcc0cc" } |
| 65 | "editor.linenumber" = { fg = "#9ca0b0", bg = "#eff1f5" } |
| 66 | "editor.currentline" = { fg = "#4c4f69", bg = "#ccd0da" } |
| 67 | # Mauve, not a darker grey: on paper the cursor has to be a hue the page has |
| 68 | # nowhere else, or it disappears into the highlighted line it sits on. |
| 69 | "editor.cursor" = { fg = "#eff1f5", bg = "#8839ef" } |
| 70 | |
| 71 | "terminal.text" = { fg = "#4c4f69", bg = "#dce0e8" } |
| 72 | "terminal.cursor" = { fg = "#eff1f5", bg = "#8839ef" } |
| 73 | |
| 74 | "tree.text" = { fg = "#4c4f69", bg = "#eff1f5" } |
| 75 | "tree.directory" = { fg = "#1e66f5", bg = "#eff1f5", bold = true } |
| 76 | "tree.selected" = { fg = "#eff1f5", bg = "#1e66f5" } |
| 77 | "tree.unfocused" = { fg = "#6c6f85", bg = "#ccd0da" } |
| 78 | |
| 79 | # Catppuccin's own syntax mapping. Constant and number share peach, and type |
| 80 | # and tag share yellow, because each pair is one idea; everything a reader |
| 81 | # meets beside something else is a different hue. |
| 82 | "syntax.identifier" = { fg = "#4c4f69" } |
| 83 | "syntax.keyword" = { fg = "#8839ef" } |
| 84 | "syntax.type" = { fg = "#df8e1d" } |
| 85 | "syntax.builtin" = { fg = "#d20f39" } |
| 86 | "syntax.constant" = { fg = "#fe640b" } |
| 87 | "syntax.function" = { fg = "#1e66f5" } |
| 88 | "syntax.string" = { fg = "#40a02b" } |
| 89 | "syntax.char" = { fg = "#179299" } |
| 90 | "syntax.number" = { fg = "#fe640b" } |
| 91 | "syntax.comment" = { fg = "#8c8fa1", italic = true } |
| 92 | "syntax.operator" = { fg = "#04a5e5" } |
| 93 | "syntax.punctuation" = { fg = "#7c7f93" } |
| 94 | "syntax.heading" = { fg = "#1e66f5", bold = true } |
| 95 | "syntax.tag" = { fg = "#df8e1d" } |
| 96 | "syntax.attribute" = { fg = "#179299" } |
| 97 | "syntax.emphasis" = { fg = "#e64553", italic = true } |
| 98 | "syntax.link" = { fg = "#209fb5", underline = true } |
| 99 | |
| 100 | "completion.frame" = { fg = "#1e66f5", bg = "#ccd0da" } |
| 101 | "completion.item" = { fg = "#4c4f69", bg = "#ccd0da" } |
| 102 | "completion.selected" = { fg = "#eff1f5", bg = "#1e66f5", bold = true } |
| 103 | "completion.detail" = { fg = "#6c6f85", bg = "#ccd0da" } |
| 104 | |
| 105 | "diagnostic.error" = { fg = "#d20f39", bold = true } |
| 106 | "diagnostic.warning" = { fg = "#df8e1d", bold = true } |
| 107 | "diagnostic.info" = { fg = "#04a5e5", italic = true } |