{
  "name": "color_converter",
  "description": "在线颜色转换工具，支持 HEX、RGB、RGBA、HSL、HSLA 等常用颜色格式之间的相互转换，纯前端处理，数据不外传。",
  "category": "数据转换",
  "ui_url": "/tools/color_converter/",
  "api_url": null,
  "method": "NONE",
  "parameters": {
    "input": {
      "type": "string",
      "required": true,
      "description": "要转换的颜色值（支持 HEX、RGB、RGBA、HSL、HSLA 格式）"
    },
    "target_format": {
      "type": "string",
      "required": false,
      "description": "目标颜色格式：hex、rgb、rgba、hsl、hsla（默认自动识别并输出所有格式）",
      "enum": ["hex", "rgb", "rgba", "hsl", "hsla"]
    }
  },
  "response": {
    "result": "转换后的颜色字符串（支持多种格式）"
  },
  "example": {
    "input": "#FF5733",
    "target_format": "rgb"
  }
}