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
737 B
JSON
44 lines
737 B
JSON
{
|
|
"version": 1,
|
|
"name": "Ethereal",
|
|
"slug": "ethereal",
|
|
"mode": "dark",
|
|
"wallpaper": "",
|
|
"colors": {
|
|
"base": "#060B1E",
|
|
"mantle": "#05091a",
|
|
"surface": "#060B1E",
|
|
"overlay": "#6d7db6",
|
|
"text": "#ffcead",
|
|
"subtext": "#F99957",
|
|
"muted": "#6d7db6",
|
|
"accent": "#7d82d9",
|
|
"accentAlt": "#c89dc1",
|
|
"good": "#92a593",
|
|
"warn": "#E9BB4F",
|
|
"bad": "#ED5B5A"
|
|
},
|
|
"border": {
|
|
"active": "accent",
|
|
"inactive": "overlay"
|
|
},
|
|
"ansi": [
|
|
"#060B1E",
|
|
"#ED5B5A",
|
|
"#92a593",
|
|
"#E9BB4F",
|
|
"#7d82d9",
|
|
"#c89dc1",
|
|
"#a3bfd1",
|
|
"#F99957",
|
|
"#6d7db6",
|
|
"#faaaa9",
|
|
"#c4cfc4",
|
|
"#f7dc9c",
|
|
"#c2c4f0",
|
|
"#ead7e7",
|
|
"#dfeaf0",
|
|
"#ffcead"
|
|
]
|
|
}
|