Sakura Line: retheme the whole desktop from the wallpaper
Palette sampled from bspwm/wallpaper/wallpaper.jpg and applied per-role (not per-hex, so terminal green stays green and nvim's LineNr/Comment stay recessive) across st, kitty, polybar, rofi, dunst, nvim, qt5ct/qt6ct and GTK 2/3/4. Also: - rofi drun centred, icons enabled - polybar translucent (true ARGB) and rounded; picom corner-radius, with the desktop layer and fullscreen windows excluded - fix qt5ct color_scheme_path pointing at a nonexistent /home/carrie - export QT_QPA_PLATFORMTHEME so qt6ct is actually consulted - point GTK at an icon theme that exists on this system - add .config/rice: one-shot install.sh (--dry-run supported), package list, vendored st config.h (gitignored upstream) and the particles wallpaper-layer source, so a clone reproduces the rice Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Cn3dHfbgNYdbZvzb1b3GQt
This commit is contained in:
parent
45e5fe53d2
commit
f341989335
35 changed files with 3300 additions and 124 deletions
|
|
@ -1,32 +1,32 @@
|
|||
local colors = {
|
||||
bg = "#141414",
|
||||
fg = "#feffd3",
|
||||
cursor = "#ffffff",
|
||||
selection_bg = "#303030",
|
||||
selection_fg = "#141414",
|
||||
bg = "#0f0d17",
|
||||
fg = "#e9eefb",
|
||||
cursor = "#92b9ea",
|
||||
selection_bg = "#2e2842",
|
||||
selection_fg = "#0f0d17",
|
||||
|
||||
black = "#141414",
|
||||
black_bright = "#262626",
|
||||
black = "#0f0d17",
|
||||
black_bright = "#201b30",
|
||||
|
||||
red = "#c06c43",
|
||||
red_bright = "#dd7c4c",
|
||||
red = "#cf6a80",
|
||||
red_bright = "#e0798f",
|
||||
|
||||
green = "#afb979",
|
||||
green_bright = "#cbd88c",
|
||||
green = "#8fae74",
|
||||
green_bright = "#a8c68d",
|
||||
|
||||
yellow = "#c2a86c",
|
||||
yellow_bright = "#e1c47d",
|
||||
yellow = "#d8a87c",
|
||||
yellow_bright = "#e9c79b",
|
||||
|
||||
blue = "#444649",
|
||||
blue_bright = "#5a5d61",
|
||||
blue = "#454063",
|
||||
blue_bright = "#6b6486",
|
||||
|
||||
magenta = "#b4be7b",
|
||||
magenta_bright = "#d0db8e",
|
||||
magenta = "#b483c0",
|
||||
magenta_bright = "#d0a4d8",
|
||||
|
||||
cyan = "#778284",
|
||||
cyan_bright = "#8a989a",
|
||||
cyan = "#8ab6c4",
|
||||
cyan_bright = "#a3c0cb",
|
||||
|
||||
white = "#feffd3",
|
||||
white = "#e9eefb",
|
||||
}
|
||||
|
||||
vim.cmd("highlight clear")
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
-- Force LazyVim UI elements to use Carrie's green 🐾🌿
|
||||
|
||||
local green = "#afb979"
|
||||
local green_bright = "#cbd88c"
|
||||
local bg = "#141414"
|
||||
local green = "#8fae74"
|
||||
local green_bright = "#a8c68d"
|
||||
local bg = "#0f0d17"
|
||||
|
||||
local function hi(group, opts)
|
||||
vim.api.nvim_set_hl(0, group, opts)
|
||||
|
|
@ -29,7 +29,7 @@ hi("CmpNormal", { bg = bg })
|
|||
-- ✅ Telescope menus (if you use it)
|
||||
hi("TelescopeBorder", { fg = green })
|
||||
hi("TelescopePromptBorder", { fg = green })
|
||||
hi("TelescopeSelection", { bg = "#303030" })
|
||||
hi("TelescopeSelection", { bg = "#2e2842" })
|
||||
hi("TelescopePromptPrefix", { fg = green_bright })
|
||||
|
||||
-- ✅ Floating menus in general
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue