PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
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 / color-harmony / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/color-harmony/block.json

99 lines 2.4 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/color-harmony",
5 "title": "Color Harmony",
6 "category": "bkbg-dev",
7 "icon": "art",
8 "description": "Pick a base color and instantly see complementary, triadic, analogous, and other harmonic palettes. Click any swatch to copy its hex value.",
9 "keywords": [
10 "color",
11 "harmony",
12 "palette",
13 "complementary",
14 "triadic",
15 "analogous",
16 "design",
17 "wheel"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-color-harmony-editor",
21 "style": "bkbg-color-harmony-style",
22 "viewScript": "bkbg-color-harmony-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": "Color Harmony"
36 },
37 "subtitle": {
38 "type": "string",
39 "default": "Pick a base color to explore harmonic palettes"
40 },
41 "defaultColor": {
42 "type": "string",
43 "default": "#6366f1"
44 },
45 "defaultHarmony": {
46 "type": "string",
47 "default": "complementary"
48 },
49 "swatchSize": {
50 "type": "number",
51 "default": 80
52 },
53 "showHex": {
54 "type": "boolean",
55 "default": true
56 },
57 "showRgb": {
58 "type": "boolean",
59 "default": false
60 },
61 "showExport": {
62 "type": "boolean",
63 "default": true
64 },
65 "accentColor": {
66 "type": "string",
67 "default": "#6366f1"
68 },
69 "sectionBg": {
70 "type": "string",
71 "default": "#f8fafc"
72 },
73 "cardBg": {
74 "type": "string",
75 "default": "#ffffff"
76 },
77 "titleColor": {
78 "type": "string",
79 "default": "#1e1b4b"
80 },
81 "fontSize": {
82 "type": "number",
83 "default": 28
84 },
85 "subtitleSize": {
86 "type": "number",
87 "default": 14
88 },
89 "typoTitle": {
90 "type": "object",
91 "default": {}
92 },
93 "typoSubtitle": {
94 "type": "object",
95 "default": {}
96 }
97 }
98 }
99