@adobe/spectrum-tokens
Version:
Design tokens for Spectrum, Adobe's design system
33 lines (32 loc) • 911 B
JSON
{
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json",
"$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/link.json",
"title": "Link",
"description": "Links allow users to navigate to a different location. They can be presented inside a paragraph or as standalone text.",
"meta": {
"category": "actions",
"documentationUrl": "https://spectrum.adobe.com/page/link/"
},
"type": "object",
"properties": {
"variant": {
"type": "string",
"enum": ["primary", "secondary"],
"default": "primary"
},
"isQuiet": {
"type": "boolean",
"default": false
},
"staticColor": {
"type": "string",
"enum": ["white", "black"],
"default": null
},
"state": {
"type": "string",
"enum": ["default", "hover", "down", "keyboard focus"],
"default": "default"
}
}
}