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

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

156 lines 2.6 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/neon-text",
5 "title": "Neon Text",
6 "category": "bkbg-effects",
7 "icon": "text",
8 "description": "Glowing neon tube text effect with animated flicker, multi-color glow layers, animated background scanlines, and multiple neon color presets.",
9 "keywords": [
10 "neon",
11 "glow",
12 "text",
13 "cyberpunk",
14 "retro",
15 "sign",
16 "light",
17 "plasma",
18 "effect"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-neon-text-editor",
22 "style": "bkbg-neon-text-style",
23 "viewScript": "bkbg-neon-text-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "text": {
35 "type": "string",
36 "default": "NEON SIGN"
37 },
38 "subText": {
39 "type": "string",
40 "default": ""
41 },
42 "showSubText": {
43 "type": "boolean",
44 "default": false
45 },
46 "tag": {
47 "type": "string",
48 "default": "h2"
49 },
50 "preset": {
51 "type": "string",
52 "default": "electric-blue"
53 },
54 "tubeColor": {
55 "type": "string",
56 "default": "#00d4ff"
57 },
58 "glowColor": {
59 "type": "string",
60 "default": "#00d4ff"
61 },
62 "secondGlow": {
63 "type": "string",
64 "default": "#0055ff"
65 },
66 "backgroundColor": {
67 "type": "string",
68 "default": "#0a0a12"
69 },
70 "fontSize": {
71 "type": "number",
72 "default": 72
73 },
74 "fontWeight": {
75 "type": "string",
76 "default": "700"
77 },
78 "letterSpacing": {
79 "type": "number",
80 "default": 8
81 },
82 "textAlign": {
83 "type": "string",
84 "default": "center"
85 },
86 "textTransform": {
87 "type": "string",
88 "default": "uppercase"
89 },
90 "glowIntensity": {
91 "type": "number",
92 "default": 3
93 },
94 "glowSpread": {
95 "type": "number",
96 "default": 40
97 },
98 "flickerMode": {
99 "type": "string",
100 "default": "soft"
101 },
102 "flickerLetter": {
103 "type": "number",
104 "default": -1
105 },
106 "showScanlines": {
107 "type": "boolean",
108 "default": true
109 },
110 "showGlowFloor": {
111 "type": "boolean",
112 "default": true
113 },
114 "showBorderSign": {
115 "type": "boolean",
116 "default": false
117 },
118 "borderSignColor": {
119 "type": "string",
120 "default": "#ff0080"
121 },
122 "paddingV": {
123 "type": "number",
124 "default": 64
125 },
126 "paddingH": {
127 "type": "number",
128 "default": 48
129 },
130 "borderRadius": {
131 "type": "number",
132 "default": 16
133 },
134 "fontFamily": {
135 "type": "string",
136 "default": "inherit"
137 },
138 "lineHeight": {
139 "type": "number",
140 "default": 1.3
141 },
142 "subTextFontSize": {
143 "type": "number",
144 "default": 16
145 },
146 "headingTypo": {
147 "type": "object",
148 "default": {}
149 },
150 "subtitleTypo": {
151 "type": "object",
152 "default": {}
153 }
154 }
155 }
156