dotfiles/.config/nvim/lua/config/highlights.lua
Sarthak f341989335 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
2026-09-04 00:19:36 +05:30

36 lines
1.1 KiB
Lua

-- Force LazyVim UI elements to use Carrie's green 🐾🌿
local green = "#8fae74"
local green_bright = "#a8c68d"
local bg = "#0f0d17"
local function hi(group, opts)
vim.api.nvim_set_hl(0, group, opts)
end
-- ✅ WhichKey menu (the big popup cheat sheet)
hi("WhichKey", { fg = green_bright })
hi("WhichKeyGroup", { fg = green })
hi("WhichKeyDesc", { fg = green_bright })
hi("WhichKeyBorder", { fg = green })
-- ✅ Lazy.nvim plugin manager UI
hi("LazyNormal", { bg = bg })
hi("LazyButton", { fg = green })
hi("LazyButtonActive", { fg = bg, bg = green_bright, bold = true })
hi("LazyH1", { fg = green_bright, bold = true })
-- ✅ Completion menu (nvim-cmp)
hi("CmpItemAbbr", { fg = green_bright })
hi("CmpItemAbbrMatch", { fg = green, bold = true })
hi("CmpBorder", { fg = green })
hi("CmpNormal", { bg = bg })
-- ✅ Telescope menus (if you use it)
hi("TelescopeBorder", { fg = green })
hi("TelescopePromptBorder", { fg = green })
hi("TelescopeSelection", { bg = "#2e2842" })
hi("TelescopePromptPrefix", { fg = green_bright })
-- ✅ Floating menus in general
hi("FloatBorder", { fg = green })