configure_theme
Customize theme settings for its-just-ui React components by adjusting colors, mode, typography, and border radius to align with design requirements.
Instructions
Configure theme settings including colors, mode, and typography
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| borderRadius | No | ||
| colors | No | ||
| fontFamily | No | ||
| mode | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "borderRadius": {
      "type": "string"
    },
    "colors": {
      "properties": {
        "error": {
          "type": "string"
        },
        "info": {
          "type": "string"
        },
        "primary": {
          "type": "string"
        },
        "secondary": {
          "type": "string"
        },
        "success": {
          "type": "string"
        },
        "warning": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "fontFamily": {
      "type": "string"
    },
    "mode": {
      "enum": [
        "light",
        "dark",
        "system"
      ],
      "type": "string"
    }
  },
  "type": "object"
}