{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "modern-fields/color-palette",
  "version": "1.0",
  "title": "Color palette",
  "category": "mf-design-fields",
  "description": "A color palette from the theme.",
  "attributes": {
    "defaultValue": {
      "type": "string",
      "default": ""
    },
    "hasColorPicker": {
      "type": "boolean",
      "default": false
    },
    "enableAlpha": {
      "type": "boolean",
      "default": false
    },
    "showClearButton": {
      "type": "boolean",
      "default": false
    },
    "hasCustomColors": {
      "type": "boolean",
      "default": false
    },
    "customColors": {
      "type": "array",
      "default": [
        {
          "name": "Blue",
          "color": "#00f"
        },
        {
          "name": "White",
          "color": "#fff"
        },
        {
          "name": "Red",
          "color": "#f00"
        }
      ]
    }
  },
  "example": {
    "attributes": {
      "label": "Color palette",
      "defaultValue": "#143C5D",
      "description": "A color palette from the theme.",
      "hasColorPicker": false
    },
    "viewportWidth": 300
  },
  "textdomain": "modern-fields",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}