# blockenberg/2.0.7/blocks/random-picker/block.json

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 162 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/random-picker/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/random-picker/block.json
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/random-picker/block.json#L10-L20`.

```json
{
    "apiVersion": 3,
    "name": "blockenberg/random-picker",
    "title": "Random Picker",
    "description": "Enter a list of items and pick a random winner with an animated highlight effect.",
    "category": "bkbg-interactive",
    "icon": "randomize",
    "keywords": [
        "random",
        "picker",
        "lottery",
        "raffle",
        "chooser",
        "wheel"
    ],
    "textdomain": "blockenberg",
    "editorScript": "bkbg-random-picker-editor",
    "style": "bkbg-random-picker-style",
    "viewScript": "bkbg-random-picker-frontend",
    "attributes": {
        "title": {
            "type": "string",
            "default": "Random Picker"
        },
        "subtitle": {
            "type": "string",
            "default": "Enter your items, click Pick, and let luck decide!"
        },
        "showTitle": {
            "type": "boolean",
            "default": true
        },
        "showSubtitle": {
            "type": "boolean",
            "default": true
        },
        "defaultItems": {
            "type": "string",
            "default": "Alice\nBob\nCarol\nDave\nEve\nFrank"
        },
        "buttonLabel": {
            "type": "string",
            "default": "Pick Random!"
        },
        "allowRepick": {
            "type": "boolean",
            "default": true
        },
        "showHistory": {
            "type": "boolean",
            "default": true
        },
        "animSteps": {
            "type": "number",
            "default": 12
        },
        "animSpeedMs": {
            "type": "number",
            "default": 60
        },
        "inputMode": {
            "type": "string",
            "default": "lines"
        },
        "accentColor": {
            "type": "string",
            "default": "#6c3fb5"
        },
        "cardBg": {
            "type": "string",
            "default": "#ffffff"
        },
        "winnerBg": {
            "type": "string",
            "default": "#6c3fb5"
        },
        "winnerColor": {
            "type": "string",
            "default": "#ffffff"
        },
        "itemBg": {
            "type": "string",
            "default": "#f5f3ff"
        },
        "itemColor": {
            "type": "string",
            "default": "#374151"
        },
        "highlightBg": {
            "type": "string",
            "default": "#ede9fe"
        },
        "historyBg": {
            "type": "string",
            "default": "#f9fafb"
        },
        "historyColor": {
            "type": "string",
            "default": "#6b7280"
        },
        "buttonColor": {
            "type": "string",
            "default": "#ffffff"
        },
        "labelColor": {
            "type": "string",
            "default": "#374151"
        },
        "titleColor": {
            "type": "string",
            "default": "#1f2937"
        },
        "subtitleColor": {
            "type": "string",
            "default": "#6b7280"
        },
        "sectionBg": {
            "type": "string",
            "default": ""
        },
        "titleTypo": {
            "type": "object",
            "default": {}
        },
        "subtitleTypo": {
            "type": "object",
            "default": {}
        },
        "winnerTypo": {
            "type": "object",
            "default": {}
        },
        "cardRadius": {
            "type": "number",
            "default": 16
        },
        "itemRadius": {
            "type": "number",
            "default": 8
        },
        "maxWidth": {
            "type": "number",
            "default": 520
        },
        "paddingTop": {
            "type": "number",
            "default": 60
        },
        "paddingBottom": {
            "type": "number",
            "default": 60
        }
    },
    "supports": {
        "html": false,
        "align": [
            "wide",
            "full"
        ]
    }
}

```
