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
731 B
JSON
44 lines
731 B
JSON
{
|
|
"version": 1,
|
|
"name": "Lumon",
|
|
"slug": "lumon",
|
|
"mode": "dark",
|
|
"wallpaper": "",
|
|
"colors": {
|
|
"base": "#16242d",
|
|
"mantle": "#131f26",
|
|
"surface": "#1b2d40",
|
|
"overlay": "#304860",
|
|
"text": "#d6e2ee",
|
|
"subtext": "#d6e2ee",
|
|
"muted": "#304860",
|
|
"accent": "#f2fcff",
|
|
"accentAlt": "#8bc9eb",
|
|
"good": "#5e95bc",
|
|
"warn": "#6fa4c9",
|
|
"bad": "#4d86b0"
|
|
},
|
|
"border": {
|
|
"active": "accent",
|
|
"inactive": "overlay"
|
|
},
|
|
"ansi": [
|
|
"#1b2d40",
|
|
"#4d86b0",
|
|
"#5e95bc",
|
|
"#6fa4c9",
|
|
"#6fb8e3",
|
|
"#8bc9eb",
|
|
"#b4e4f6",
|
|
"#d6e2ee",
|
|
"#304860",
|
|
"#73a6cb",
|
|
"#86b7d8",
|
|
"#9dcae5",
|
|
"#f2fcff",
|
|
"#b1d8ee",
|
|
"#d1eef8",
|
|
"#ffffff"
|
|
]
|
|
}
|