From 81217e574929efd5eb9e6b488d947ee454c6361f Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 19 Jul 2026 18:42:46 -0700 Subject: [PATCH] Generate vantablack neovim/vscode/btop configs from the colorset too Tuned muted, dark_foreground, and lighter_background to the tiers the explicit themes used, which also fixes muted falling back to pure white in the generated terminal configs. Co-Authored-By: Claude Fable 5 --- themes/vantablack/btop.theme | 70 ----------------------------------- themes/vantablack/colors.toml | 4 +- themes/vantablack/neovim.lua | 12 ------ themes/vantablack/vscode.json | 4 -- 4 files changed, 3 insertions(+), 87 deletions(-) delete mode 100644 themes/vantablack/btop.theme delete mode 100644 themes/vantablack/neovim.lua delete mode 100644 themes/vantablack/vscode.json diff --git a/themes/vantablack/btop.theme b/themes/vantablack/btop.theme deleted file mode 100644 index a1ed2790..00000000 --- a/themes/vantablack/btop.theme +++ /dev/null @@ -1,70 +0,0 @@ -# Main background, empty for terminal default, need to be empty if you want transparent background -theme[main_bg]="#000000" - -# Main text color -theme[main_fg]="#ffffff" - -# Title color for boxes -theme[title]="#9b9b9b" - -# Highlight color for keyboard shortcuts -theme[hi_fg]="#b0b0b0" - -# Background color of selected item in processes box -theme[selected_bg]="#fdfdfd" - -# Foreground color of selected item in processes box -theme[selected_fg]="#ffffff" - -# Color of inactive/disabled text -theme[inactive_fg]="#fdfdfd" - -# Misc colors for processes box including mini cpu graphs, details memory graph and details status text -theme[proc_misc]="#9b9b9b" - -# Box outline and divider line color -theme[cpu_box]="#b6b6b6" -theme[mem_box]="#b6b6b6" -theme[net_box]="#b6b6b6" -theme[proc_box]="#b6b6b6" -theme[div_line]="#fdfdfd" - -# Gradient for all meters and graphs -theme[temp_start]="#b0b0b0" -theme[temp_mid]="#8d8d8d" -theme[temp_end]="#b6b6b6" - - -theme[cpu_start]="#b0b0b0" -theme[cpu_mid]="#8d8d8d" -theme[cpu_end]="#b6b6b6" - - -theme[free_start]="#8d8d8d" -theme[free_mid]="#cecece" -theme[free_end]="#cecece" - - -theme[cached_start]="#cecece" -theme[cached_mid]="#cecece" -theme[cached_end]="#cecece" - - -theme[available_start]="#b0b0b0" -theme[available_mid]="#b0b0b0" -theme[available_end]="#b0b0b0" - - -theme[used_start]="#b6b6b6" -theme[used_mid]="#b6b6b6" -theme[used_end]="#b6b6b6" - - -theme[download_start]="#cecece" -theme[download_mid]="#b0b0b0" -theme[download_end]="#8d8d8d" - - -theme[upload_start]="#cecece" -theme[upload_mid]="#b0b0b0" -theme[upload_end]="#8d8d8d" \ No newline at end of file diff --git a/themes/vantablack/colors.toml b/themes/vantablack/colors.toml index 808406d4..9a8a8e44 100644 --- a/themes/vantablack/colors.toml +++ b/themes/vantablack/colors.toml @@ -2,13 +2,15 @@ mode = "dark" accent = "#8d8d8d" selection = "#1a1a1a" +muted = "#7a7a7a" background = "#000000" dark_background = "#090909" darker_background = "#070707" -lighter_background = "#000000" +lighter_background = "#1a1a1a" foreground = "#ffffff" +dark_foreground = "#505050" light_foreground = "#ececec" bright_foreground = "#ffffff" diff --git a/themes/vantablack/neovim.lua b/themes/vantablack/neovim.lua deleted file mode 100644 index f9d96169..00000000 --- a/themes/vantablack/neovim.lua +++ /dev/null @@ -1,12 +0,0 @@ -return { - { - "bjarneo/vantablack.nvim", - priority = 1000, - }, - { - "LazyVim/LazyVim", - opts = { - colorscheme = "vantablack", - }, - }, -} diff --git a/themes/vantablack/vscode.json b/themes/vantablack/vscode.json deleted file mode 100644 index 4221b9ea..00000000 --- a/themes/vantablack/vscode.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "name": "Vantablack", - "extension": "Bjarne.vantablack-omarchy" -}