pixelsrc 0.2.0

Pixelsrc - GenAI-native pixel art format and compiler
Documentation
1
2
3
4
5
6
7
{"type": "palette", "name": "theme", "colors": {"--primary": "#4169E1", "--secondary": "coral", "--bg": "#1a1a2e", "--fg": "#eaeaea", "--accent": "hsl(45, 100%, 50%)", "{_}": "transparent", "{primary}": "var(--primary)", "{secondary}": "var(--secondary)", "{bg}": "var(--bg)", "{fg}": "var(--fg)", "{accent}": "var(--accent)", "{primary_shadow}": "color-mix(in oklch, var(--primary) 70%, black)", "{primary_highlight}": "color-mix(in oklch, var(--primary) 70%, white)", "{secondary_shadow}": "color-mix(in oklch, var(--secondary) 70%, black)", "{muted}": "color-mix(in srgb, var(--fg) 50%, var(--bg))", "{fallback_color}": "var(--undefined, #888888)", "{nested}": "var(--deep, var(--deeper, var(--primary)))"}}
{"type": "sprite", "name": "button_normal", "palette": "theme", "grid": ["{primary_highlight}{primary}{primary}", "{primary}{primary}{primary}", "{primary}{primary}{primary_shadow}"]}
{"type": "sprite", "name": "button_hover", "palette": "theme", "grid": ["{accent}{accent}{accent}", "{accent}{primary}{accent}", "{accent}{accent}{accent}"]}
{"type": "sprite", "name": "icon_base", "palette": "theme", "grid": ["{_}{fg}{_}", "{fg}{fg}{fg}", "{_}{fg}{_}"]}
{"type": "sprite", "name": "icon_muted", "palette": "theme", "grid": ["{_}{muted}{_}", "{muted}{muted}{muted}", "{_}{muted}{_}"]}
{"type": "sprite", "name": "panel_bg", "palette": "theme", "grid": ["{bg}{bg}{bg}{bg}", "{bg}{muted}{muted}{bg}", "{bg}{muted}{muted}{bg}", "{bg}{bg}{bg}{bg}"]}
{"type": "animation", "name": "button_pulse", "frames": ["button_normal", "button_hover", "button_normal"], "duration": "300ms", "loop": true}