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

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

153 lines 3.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/gradient-generator",
5 "version": "1.0.0",
6 "title": "CSS Gradient Generator",
7 "category": "bkbg-dev",
8 "icon": "art",
9 "description": "Interactive CSS gradient builder with live preview, multiple color stops, and one-click CSS copy.",
10 "keywords": [
11 "gradient",
12 "css",
13 "color",
14 "design",
15 "linear",
16 "radial",
17 "generator"
18 ],
19 "supports": {
20 "html": false,
21 "align": [
22 "wide",
23 "full"
24 ]
25 },
26 "textdomain": "blockenberg",
27 "editorScript": "bkbg-gradient-generator-editor",
28 "style": "bkbg-gradient-generator-style",
29 "viewScript": "bkbg-gradient-generator-frontend",
30 "attributes": {
31 "title": {
32 "type": "string",
33 "default": "CSS Gradient Generator"
34 },
35 "subtitle": {
36 "type": "string",
37 "default": "Build beautiful CSS gradients and copy the code instantly"
38 },
39 "showTitle": {
40 "type": "boolean",
41 "default": true
42 },
43 "showSubtitle": {
44 "type": "boolean",
45 "default": true
46 },
47 "defaultStops": {
48 "type": "string",
49 "default": "#6c3fb5 0%,#06b6d4 100%"
50 },
51 "defaultType": {
52 "type": "string",
53 "default": "linear"
54 },
55 "defaultAngle": {
56 "type": "number",
57 "default": 135
58 },
59 "showPresets": {
60 "type": "boolean",
61 "default": true
62 },
63 "showCssOutput": {
64 "type": "boolean",
65 "default": true
66 },
67 "previewHeight": {
68 "type": "number",
69 "default": 200
70 },
71 "accentColor": {
72 "type": "string",
73 "default": "#6c3fb5"
74 },
75 "cardBg": {
76 "type": "string",
77 "default": ""
78 },
79 "controlsBg": {
80 "type": "string",
81 "default": "#f9fafb"
82 },
83 "controlsBorder": {
84 "type": "string",
85 "default": "#e5e7eb"
86 },
87 "cssBg": {
88 "type": "string",
89 "default": "#1e1b4b"
90 },
91 "cssColor": {
92 "type": "string",
93 "default": "#c4b5fd"
94 },
95 "copyBg": {
96 "type": "string",
97 "default": "#6c3fb5"
98 },
99 "copyColor": {
100 "type": "string",
101 "default": "#ffffff"
102 },
103 "labelColor": {
104 "type": "string",
105 "default": "#374151"
106 },
107 "titleColor": {
108 "type": "string",
109 "default": ""
110 },
111 "subtitleColor": {
112 "type": "string",
113 "default": ""
114 },
115 "sectionBg": {
116 "type": "string",
117 "default": ""
118 },
119 "titleSize": {
120 "type": "number",
121 "default": 28
122 },
123 "cardRadius": {
124 "type": "number",
125 "default": 16
126 },
127 "previewRadius": {
128 "type": "number",
129 "default": 12
130 },
131 "maxWidth": {
132 "type": "number",
133 "default": 600
134 },
135 "paddingTop": {
136 "type": "number",
137 "default": 60
138 },
139 "paddingBottom": {
140 "type": "number",
141 "default": 60
142 },
143 "typoTitle": {
144 "type": "object",
145 "default": {}
146 },
147 "typoBody": {
148 "type": "object",
149 "default": {}
150 }
151 }
152 }
153