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

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

134 lines 3.2 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-converter",
4 "title": "Color Converter",
5 "description": "Live Hex ↔ RGB ↔ HSL color converter with a real-time color preview swatch.",
6 "category": "bkbg-dev",
7 "icon": "color-picker",
8 "keywords": [
9 "color",
10 "hex",
11 "rgb",
12 "hsl",
13 "converter",
14 "picker"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-color-converter-editor",
18 "style": "bkbg-color-converter-style",
19 "viewScript": "bkbg-color-converter-frontend",
20 "attributes": {
21 "title": {
22 "type": "string",
23 "default": "Color Converter"
24 },
25 "subtitle": {
26 "type": "string",
27 "default": "Convert between Hex, RGB, and HSL color formats instantly."
28 },
29 "showTitle": {
30 "type": "boolean",
31 "default": true
32 },
33 "showSubtitle": {
34 "type": "boolean",
35 "default": true
36 },
37 "showCopyBtns": {
38 "type": "boolean",
39 "default": true
40 },
41 "showSwatchLarge": {
42 "type": "boolean",
43 "default": true
44 },
45 "defaultHex": {
46 "type": "string",
47 "default": "#6c3fb5"
48 },
49 "accentColor": {
50 "type": "string",
51 "default": "#6c3fb5"
52 },
53 "cardBg": {
54 "type": "string",
55 "default": "#ffffff"
56 },
57 "swatchBorder": {
58 "type": "string",
59 "default": "#e5e7eb"
60 },
61 "inputBorderColor": {
62 "type": "string",
63 "default": "#e5e7eb"
64 },
65 "copyBg": {
66 "type": "string",
67 "default": "#f3f4f6"
68 },
69 "copyColor": {
70 "type": "string",
71 "default": "#374151"
72 },
73 "labelColor": {
74 "type": "string",
75 "default": "#374151"
76 },
77 "titleColor": {
78 "type": "string",
79 "default": "#1f2937"
80 },
81 "subtitleColor": {
82 "type": "string",
83 "default": "#6b7280"
84 },
85 "sectionBg": {
86 "type": "string",
87 "default": ""
88 },
89 "titleSize": {
90 "type": "number",
91 "default": 28
92 },
93 "swatchHeight": {
94 "type": "number",
95 "default": 120
96 },
97 "cardRadius": {
98 "type": "number",
99 "default": 16
100 },
101 "inputRadius": {
102 "type": "number",
103 "default": 8
104 },
105 "maxWidth": {
106 "type": "number",
107 "default": 540
108 },
109 "paddingTop": {
110 "type": "number",
111 "default": 60
112 },
113 "paddingBottom": {
114 "type": "number",
115 "default": 60
116 },
117 "typoTitle": {
118 "type": "object",
119 "default": {}
120 },
121 "typoSubtitle": {
122 "type": "object",
123 "default": {}
124 }
125 },
126 "supports": {
127 "html": false,
128 "align": [
129 "wide",
130 "full"
131 ]
132 }
133 }
134