# blockenberg/2.0.7/blocks/drawing-canvas/block.json

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

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/drawing-canvas/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/drawing-canvas/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/drawing-canvas/block.json#L10-L20`.

```json
{
    "apiVersion": 3,
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "name": "blockenberg/drawing-canvas",
    "title": "Drawing Canvas",
    "category": "bkbg-interactive",
    "icon": "edit",
    "description": "A fully interactive freehand drawing canvas with multiple tools, undo, and download — right in your page.",
    "textdomain": "blockenberg",
    "editorScript": "bkbg-drawing-canvas-editor",
    "style": "bkbg-drawing-canvas-style",
    "viewScript": "bkbg-drawing-canvas-frontend",
    "supports": {
        "html": false,
        "anchor": true,
        "className": true,
        "align": [
            "wide",
            "full"
        ]
    },
    "attributes": {
        "title": {
            "type": "string",
            "default": "Drawing Canvas"
        },
        "subtitle": {
            "type": "string",
            "default": "Draw anything — your creativity is the limit!"
        },
        "canvasWidth": {
            "type": "number",
            "default": 800
        },
        "canvasHeight": {
            "type": "number",
            "default": 480
        },
        "defaultTool": {
            "type": "string",
            "default": "pen"
        },
        "defaultColor": {
            "type": "string",
            "default": "#1e1b4b"
        },
        "defaultLineWidth": {
            "type": "number",
            "default": 4
        },
        "showGrid": {
            "type": "boolean",
            "default": false
        },
        "showToolbar": {
            "type": "boolean",
            "default": true
        },
        "showDownload": {
            "type": "boolean",
            "default": true
        },
        "showUndo": {
            "type": "boolean",
            "default": true
        },
        "backgroundColor": {
            "type": "string",
            "default": "#ffffff"
        },
        "gridColor": {
            "type": "string",
            "default": "#e5e7eb"
        },
        "sectionBg": {
            "type": "string",
            "default": "#f8fafc"
        },
        "titleColor": {
            "type": "string",
            "default": "#1e1b4b"
        },
        "accentColor": {
            "type": "string",
            "default": "#6366f1"
        },
        "fontSize": {
            "type": "number",
            "default": 26
        },
        "fontWeight": {
            "type": "string",
            "default": "800"
        },
        "lineHeight": {
            "type": "number",
            "default": 1.2
        },
        "subtitleSize": {
            "type": "number",
            "default": 14
        },
        "subtitleFontWeight": {
            "type": "string",
            "default": "400"
        },
        "subtitleLineHeight": {
            "type": "number",
            "default": 1.5
        },
        "typoTitle": {
            "type": "object",
            "default": {}
        },
        "typoSubtitle": {
            "type": "object",
            "default": {}
        }
    }
}

```
