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
739 B
JSON
44 lines
739 B
JSON
{
|
|
"version": 1,
|
|
"name": "Ristretto",
|
|
"slug": "ristretto",
|
|
"mode": "dark",
|
|
"wallpaper": "",
|
|
"colors": {
|
|
"base": "#2c2525",
|
|
"mantle": "#251f1f",
|
|
"surface": "#72696a",
|
|
"overlay": "#948a8b",
|
|
"text": "#e6d9db",
|
|
"subtext": "#e6d9db",
|
|
"muted": "#948a8b",
|
|
"accent": "#f38d70",
|
|
"accentAlt": "#a8a9eb",
|
|
"good": "#adda78",
|
|
"warn": "#f9cc6c",
|
|
"bad": "#fd6883"
|
|
},
|
|
"border": {
|
|
"active": "accent",
|
|
"inactive": "overlay"
|
|
},
|
|
"ansi": [
|
|
"#72696a",
|
|
"#fd6883",
|
|
"#adda78",
|
|
"#f9cc6c",
|
|
"#f38d70",
|
|
"#a8a9eb",
|
|
"#85dacc",
|
|
"#e6d9db",
|
|
"#948a8b",
|
|
"#ff8297",
|
|
"#c8e292",
|
|
"#fcd675",
|
|
"#f8a788",
|
|
"#bebffd",
|
|
"#9bf1e1",
|
|
"#f1e5e7"
|
|
]
|
|
}
|