get_theme_info
Retrieve design system theme details like colors, spacing, typography, and breakpoints. Use to extract CSS custom properties and streamline design system adoption or refactoring.
Instructions
Get design system theme information (colors, spacing, typography, breakpoints)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeAll | No | Whether to include all CSS custom properties found (default: false) |
Input Schema (JSON Schema)
{
"properties": {
"includeAll": {
"description": "Whether to include all CSS custom properties found (default: false)",
"type": "boolean"
}
},
"type": "object"
}