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

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

118 lines 2.9 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/contrast-checker",
5 "version": "1.0.0",
6 "title": "Contrast Checker",
7 "category": "bkbg-dev",
8 "icon": "visibility",
9 "description": "WCAG color contrast accessibility checker. Test foreground/background color combinations against AA and AAA standards.",
10 "keywords": [
11 "contrast",
12 "accessibility",
13 "wcag",
14 "color",
15 "a11y",
16 "design"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-contrast-checker-editor",
20 "style": "bkbg-contrast-checker-style",
21 "viewScript": "bkbg-contrast-checker-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "title": {
33 "type": "string",
34 "default": "Color Contrast Checker"
35 },
36 "subtitle": {
37 "type": "string",
38 "default": "Test accessibility compliance with WCAG 2.1 standards"
39 },
40 "defaultFg": {
41 "type": "string",
42 "default": "#1e1b4b"
43 },
44 "defaultBg": {
45 "type": "string",
46 "default": "#ffffff"
47 },
48 "previewText": {
49 "type": "string",
50 "default": "The quick brown fox jumps over the lazy dog"
51 },
52 "showPreview": {
53 "type": "boolean",
54 "default": true
55 },
56 "showSuggestions": {
57 "type": "boolean",
58 "default": true
59 },
60 "accentColor": {
61 "type": "string",
62 "default": "#6c3fb5"
63 },
64 "passColor": {
65 "type": "string",
66 "default": "#16a34a"
67 },
68 "failColor": {
69 "type": "string",
70 "default": "#dc2626"
71 },
72 "cardBg": {
73 "type": "string",
74 "default": "#ffffff"
75 },
76 "sectionBg": {
77 "type": "string",
78 "default": "#f5f3ff"
79 },
80 "titleColor": {
81 "type": "string",
82 "default": "#111827"
83 },
84 "subtitleColor": {
85 "type": "string",
86 "default": "#6b7280"
87 },
88 "labelColor": {
89 "type": "string",
90 "default": "#374151"
91 },
92 "titleFontSize": {
93 "type": "integer",
94 "default": 26
95 },
96 "subtitleFontSize": {
97 "type": "number",
98 "default": 15
99 },
100 "sampleFontSize": {
101 "type": "number",
102 "default": 16
103 },
104 "contentMaxWidth": {
105 "type": "integer",
106 "default": 680
107 },
108 "typoTitle": {
109 "type": "object",
110 "default": {}
111 },
112 "typoSubtitle": {
113 "type": "object",
114 "default": {}
115 }
116 }
117 }
118