design system token v0.1

This commit is contained in:
Juan
2026-04-13 15:33:00 -05:00
parent 52b4156653
commit c3215945f2
63 changed files with 11562 additions and 181 deletions

49
tokens/shadows.json Normal file
View File

@@ -0,0 +1,49 @@
{
"shadow": {
"$description": "Greyhaven Design System — Shadow Tokens (subtle, warm-neutral)",
"xs": {
"$type": "shadow",
"$value": {
"offsetX": "0",
"offsetY": "1px",
"blur": "2px",
"spread": "0",
"color": "rgba(22, 22, 20, 0.05)"
},
"$description": "Subtle shadow for buttons, inputs"
},
"sm": {
"$type": "shadow",
"$value": {
"offsetX": "0",
"offsetY": "1px",
"blur": "3px",
"spread": "0",
"color": "rgba(22, 22, 20, 0.1)"
},
"$description": "Small shadow for cards"
},
"md": {
"$type": "shadow",
"$value": {
"offsetX": "0",
"offsetY": "4px",
"blur": "6px",
"spread": "-1px",
"color": "rgba(22, 22, 20, 0.1)"
},
"$description": "Medium shadow for dropdowns, popovers"
},
"lg": {
"$type": "shadow",
"$value": {
"offsetX": "0",
"offsetY": "10px",
"blur": "15px",
"spread": "-3px",
"color": "rgba(22, 22, 20, 0.1)"
},
"$description": "Large shadow for dialogs, modals"
}
}
}