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-swatch / block.json

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

151 lines 4.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/color-swatch",
4 "title": "Color Swatch",
5 "category": "bkbg-dev",
6 "icon": "art",
7 "description": "Display a branded color palette as a grid of swatches with names, HEX, RGB, and usage notes.",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-color-swatch-editor",
10 "style": "bkbg-color-swatch-style",
11 "attributes": {
12 "title": {
13 "type": "string",
14 "default": "Brand Color Palette"
15 },
16 "showTitle": {
17 "type": "boolean",
18 "default": true
19 },
20 "subtitle": {
21 "type": "string",
22 "default": "Official colors for all print and digital materials"
23 },
24 "showSubtitle": {
25 "type": "boolean",
26 "default": true
27 },
28 "columns": {
29 "type": "number",
30 "default": 4
31 },
32 "swatchHeight": {
33 "type": "number",
34 "default": 100
35 },
36 "showHex": {
37 "type": "boolean",
38 "default": true
39 },
40 "showName": {
41 "type": "boolean",
42 "default": true
43 },
44 "showUsage": {
45 "type": "boolean",
46 "default": true
47 },
48 "showTag": {
49 "type": "boolean",
50 "default": true
51 },
52 "borderRadius": {
53 "type": "number",
54 "default": 12
55 },
56 "fontSize": {
57 "type": "number",
58 "default": 13
59 },
60 "typoTitle": {
61 "type": "object",
62 "default": {}
63 },
64 "typoLabel": {
65 "type": "object",
66 "default": {}
67 },
68 "bgColor": {
69 "type": "string",
70 "default": "#ffffff"
71 },
72 "cardBg": {
73 "type": "string",
74 "default": "#f9fafb"
75 },
76 "borderColor": {
77 "type": "string",
78 "default": "#e5e7eb"
79 },
80 "headingColor": {
81 "type": "string",
82 "default": "#111827"
83 },
84 "subtitleColor": {
85 "type": "string",
86 "default": "#6b7280"
87 },
88 "nameColor": {
89 "type": "string",
90 "default": "#111827"
91 },
92 "metaColor": {
93 "type": "string",
94 "default": "#6b7280"
95 },
96 "swatches": {
97 "type": "array",
98 "default": [
99 {
100 "name": "Indigo",
101 "hex": "#6366f1",
102 "tag": "Primary",
103 "usage": "Buttons, CTAs, links"
104 },
105 {
106 "name": "Emerald",
107 "hex": "#10b981",
108 "tag": "Success",
109 "usage": "Positive states, badges"
110 },
111 {
112 "name": "Amber",
113 "hex": "#f59e0b",
114 "tag": "Warning",
115 "usage": "Alerts, highlights"
116 },
117 {
118 "name": "Rose",
119 "hex": "#ef4444",
120 "tag": "Error",
121 "usage": "Errors, destructive actions"
122 },
123 {
124 "name": "Violet",
125 "hex": "#8b5cf6",
126 "tag": "Accent",
127 "usage": "Decorative, charts"
128 },
129 {
130 "name": "Slate 900",
131 "hex": "#0f172a",
132 "tag": "Text",
133 "usage": "Headings, primary text"
134 },
135 {
136 "name": "Slate 600",
137 "hex": "#475569",
138 "tag": "Subtext",
139 "usage": "Body copy, descriptions"
140 },
141 {
142 "name": "Slate 100",
143 "hex": "#f1f5f9",
144 "tag": "Background",
145 "usage": "Page backgrounds, cards"
146 }
147 ]
148 }
149 }
150 }
151