generate_design_tokens
Create a tailored design token system by specifying primary color, style, and dark mode preferences, enabling consistent and scalable UI development across frameworks.
Instructions
Generate a comprehensive design token system
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| darkMode | No | Include dark mode tokens | |
| primaryColor | No | Primary brand color | |
| style | Yes | Overall design style |
Input Schema (JSON Schema)
{
"properties": {
"darkMode": {
"description": "Include dark mode tokens",
"type": "boolean"
},
"primaryColor": {
"description": "Primary brand color",
"type": "string"
},
"style": {
"description": "Overall design style",
"enum": [
"modern",
"minimal",
"corporate",
"playful",
"elegant"
],
"type": "string"
}
},
"required": [
"style"
],
"type": "object"
}