PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / pixel-art / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/pixel-art/block.json

107 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/pixel-art",
5 "title": "Pixel Art Editor",
6 "category": "bkbg-interactive",
7 "icon": "art",
8 "description": "An interactive pixel art canvas. Visitors paint, fill, and erase pixels then download their creation as a PNG.",
9 "keywords": [
10 "pixel",
11 "art",
12 "draw",
13 "paint",
14 "canvas",
15 "editor",
16 "sprite",
17 "8-bit"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-pixel-art-editor",
21 "style": "bkbg-pixel-art-style",
22 "viewScript": "bkbg-pixel-art-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "title": {
34 "type": "string",
35 "default": "Pixel Art"
36 },
37 "subtitle": {
38 "type": "string",
39 "default": "Draw something pixel by pixel!"
40 },
41 "titleTypo": {
42 "type": "object",
43 "default": {}
44 },
45 "subtitleTypo": {
46 "type": "object",
47 "default": {}
48 },
49 "gridCols": {
50 "type": "number",
51 "default": 32
52 },
53 "gridRows": {
54 "type": "number",
55 "default": 32
56 },
57 "cellSize": {
58 "type": "number",
59 "default": 16
60 },
61 "showGrid": {
62 "type": "boolean",
63 "default": true
64 },
65 "showDownload": {
66 "type": "boolean",
67 "default": true
68 },
69 "palette": {
70 "type": "array",
71 "default": [
72 "#000000",
73 "#ffffff",
74 "#ef4444",
75 "#f97316",
76 "#f59e0b",
77 "#22c55e",
78 "#06b6d4",
79 "#3b82f6",
80 "#8b5cf6",
81 "#ec4899",
82 "#78716c",
83 "#94a3b8"
84 ]
85 },
86 "canvasBg": {
87 "type": "string",
88 "default": "#ffffff"
89 },
90 "gridLineColor": {
91 "type": "string",
92 "default": "#e5e7eb"
93 },
94 "sectionBg": {
95 "type": "string",
96 "default": "#f8fafc"
97 },
98 "titleColor": {
99 "type": "string",
100 "default": "#1e1b4b"
101 },
102 "accentColor": {
103 "type": "string",
104 "default": "#6366f1"
105 }
106 }
107 }