From 4cbe47c14d38b2b94798d6e134d2cd2215c2f7ac Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 19 Jul 2026 18:59:20 -0700 Subject: [PATCH] Generate ristretto neovim/vscode configs from the colorset too The colorset is the Monokai Pro Ristretto palette, so the generated themes keep all the accent colors. Brightened muted to Monokai Pro's actual comment color, since comments sit on that key. Co-Authored-By: Claude Fable 5 --- themes/ristretto/colors.toml | 2 +- themes/ristretto/neovim.lua | 31 ------------------------------- themes/ristretto/vscode.json | 4 ---- 3 files changed, 1 insertion(+), 36 deletions(-) delete mode 100644 themes/ristretto/neovim.lua delete mode 100644 themes/ristretto/vscode.json diff --git a/themes/ristretto/colors.toml b/themes/ristretto/colors.toml index 0068c67e..0372dec3 100644 --- a/themes/ristretto/colors.toml +++ b/themes/ristretto/colors.toml @@ -2,7 +2,7 @@ mode = "dark" accent = "#f38d70" selection = "#403e41" -muted = "#5b4a45" +muted = "#72696a" background = "#2c2525" dark_background = "#211b1b" diff --git a/themes/ristretto/neovim.lua b/themes/ristretto/neovim.lua deleted file mode 100644 index 4263da70..00000000 --- a/themes/ristretto/neovim.lua +++ /dev/null @@ -1,31 +0,0 @@ -return { - { - "gthelding/monokai-pro.nvim", - config = function() - require("monokai-pro").setup({ - filter = "ristretto", - override = function() - return { - NonText = { fg = "#948a8b" }, - MiniIconsGrey = { fg = "#948a8b" }, - MiniIconsRed = { fg = "#fd6883" }, - MiniIconsBlue = { fg = "#85dacc" }, - MiniIconsGreen = { fg = "#adda78" }, - MiniIconsYellow = { fg = "#f9cc6c" }, - MiniIconsOrange = { fg = "#f38d70" }, - MiniIconsPurple = { fg = "#a8a9eb" }, - MiniIconsAzure = { fg = "#a8a9eb" }, - MiniIconsCyan = { fg = "#85dacc" }, -- same value as MiniIconsBlue for consistency - } - end, - }) - vim.cmd([[colorscheme monokai-pro]]) - end, - }, - { - "LazyVim/LazyVim", - opts = { - colorscheme = "monokai-pro", - }, - }, -} diff --git a/themes/ristretto/vscode.json b/themes/ristretto/vscode.json deleted file mode 100644 index 41a587e1..00000000 --- a/themes/ristretto/vscode.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "name": "Monokai Pro (Filter Ristretto)", - "extension": "monokai.theme-monokai-pro-vscode" -}