v1 forced an accent→accentAlt 45deg gradient on every theme's window
border; the legacy identity themes all used a *solid* border — accent for
nord/retro-82/lumon, the text tone for kanagawa/summer-day/summer-night.
Add a palette-resolved `border` field ({active, inactive}, each a palette
key or literal hex) to the theme schema with accent/overlay defaults in
theme.nix, consume it solid in hyprland.nix, and declare it in every
preset (and the live state). Declaring it everywhere is required because
`nomarchy-theme-sync apply` deep-merges presets — an omitted field would
stick across switches, like colors already are fully specified per theme.
All six identity themes resolve to their exact legacy active border
(verified: nord #81a1c1, retro-82 #faa968, lumon #f2fcff, kanagawa
#dcd7ba, summer-night #d3c6aa, summer-day #5c6a72). nix flake check passes.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
44 lines
743 B
JSON
44 lines
743 B
JSON
{
|
|
"version": 1,
|
|
"name": "Matte Black",
|
|
"slug": "matte-black",
|
|
"mode": "dark",
|
|
"wallpaper": "",
|
|
"colors": {
|
|
"base": "#121212",
|
|
"mantle": "#0f0f0f",
|
|
"surface": "#333333",
|
|
"overlay": "#8a8a8d",
|
|
"text": "#bebebe",
|
|
"subtext": "#bebebe",
|
|
"muted": "#8a8a8d",
|
|
"accent": "#e68e0d",
|
|
"accentAlt": "#D35F5F",
|
|
"good": "#FFC107",
|
|
"warn": "#b91c1c",
|
|
"bad": "#D35F5F"
|
|
},
|
|
"border": {
|
|
"active": "accent",
|
|
"inactive": "overlay"
|
|
},
|
|
"ansi": [
|
|
"#333333",
|
|
"#D35F5F",
|
|
"#FFC107",
|
|
"#b91c1c",
|
|
"#e68e0d",
|
|
"#D35F5F",
|
|
"#bebebe",
|
|
"#bebebe",
|
|
"#8a8a8d",
|
|
"#B91C1C",
|
|
"#FFC107",
|
|
"#b90a0a",
|
|
"#f59e0b",
|
|
"#B91C1C",
|
|
"#eaeaea",
|
|
"#ffffff"
|
|
]
|
|
}
|