| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"name": "blockenberg/text-gradient", |
| 4 |
"title": "Gradient Text", |
| 5 |
"category": "bkbg-effects", |
| 6 |
"icon": "editor-textcolor", |
| 7 |
"description": "Heading or paragraph text with a rich gradient fill, optional outline, shadow, and CSS animation.", |
| 8 |
"keywords": [ |
| 9 |
"gradient", |
| 10 |
"text", |
| 11 |
"heading", |
| 12 |
"typography", |
| 13 |
"color", |
| 14 |
"animated" |
| 15 |
], |
| 16 |
"textdomain": "blockenberg", |
| 17 |
"editorScript": "bkbg-text-gradient-editor", |
| 18 |
"editorStyle": "bkbg-text-gradient-style", |
| 19 |
"style": "bkbg-text-gradient-style", |
| 20 |
"viewScript": "bkbg-text-gradient-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"anchor": true, |
| 24 |
"className": true, |
| 25 |
"align": [ |
| 26 |
"wide", |
| 27 |
"full" |
| 28 |
] |
| 29 |
}, |
| 30 |
"attributes": { |
| 31 |
"text": { |
| 32 |
"type": "string", |
| 33 |
"default": "Beautiful Gradient Text" |
| 34 |
}, |
| 35 |
"tag": { |
| 36 |
"type": "string", |
| 37 |
"default": "h2" |
| 38 |
}, |
| 39 |
"gradientAngle": { |
| 40 |
"type": "number", |
| 41 |
"default": 135 |
| 42 |
}, |
| 43 |
"color1": { |
| 44 |
"type": "string", |
| 45 |
"default": "#6c3fb5" |
| 46 |
}, |
| 47 |
"color2": { |
| 48 |
"type": "string", |
| 49 |
"default": "#ec4899" |
| 50 |
}, |
| 51 |
"color3": { |
| 52 |
"type": "string", |
| 53 |
"default": "#f59e0b" |
| 54 |
}, |
| 55 |
"useColor3": { |
| 56 |
"type": "boolean", |
| 57 |
"default": false |
| 58 |
}, |
| 59 |
"color1Stop": { |
| 60 |
"type": "number", |
| 61 |
"default": 0 |
| 62 |
}, |
| 63 |
"color2Stop": { |
| 64 |
"type": "number", |
| 65 |
"default": 100 |
| 66 |
}, |
| 67 |
"color3Stop": { |
| 68 |
"type": "number", |
| 69 |
"default": 50 |
| 70 |
}, |
| 71 |
"animate": { |
| 72 |
"type": "boolean", |
| 73 |
"default": false |
| 74 |
}, |
| 75 |
"animationSpeed": { |
| 76 |
"type": "number", |
| 77 |
"default": 4 |
| 78 |
}, |
| 79 |
"titleTypo": { |
| 80 |
"type": "object", |
| 81 |
"default": {} |
| 82 |
}, |
| 83 |
"subtextTypo": { |
| 84 |
"type": "object", |
| 85 |
"default": {} |
| 86 |
}, |
| 87 |
"textAlign": { |
| 88 |
"type": "string", |
| 89 |
"default": "center" |
| 90 |
}, |
| 91 |
"showOutline": { |
| 92 |
"type": "boolean", |
| 93 |
"default": false |
| 94 |
}, |
| 95 |
"outlineWidth": { |
| 96 |
"type": "number", |
| 97 |
"default": 2 |
| 98 |
}, |
| 99 |
"outlineColor": { |
| 100 |
"type": "string", |
| 101 |
"default": "#6c3fb5" |
| 102 |
}, |
| 103 |
"showShadow": { |
| 104 |
"type": "boolean", |
| 105 |
"default": false |
| 106 |
}, |
| 107 |
"shadowX": { |
| 108 |
"type": "number", |
| 109 |
"default": 2 |
| 110 |
}, |
| 111 |
"shadowY": { |
| 112 |
"type": "number", |
| 113 |
"default": 4 |
| 114 |
}, |
| 115 |
"shadowBlur": { |
| 116 |
"type": "number", |
| 117 |
"default": 12 |
| 118 |
}, |
| 119 |
"shadowColor": { |
| 120 |
"type": "string", |
| 121 |
"default": "rgba(108,63,181,0.35)" |
| 122 |
}, |
| 123 |
"subtext": { |
| 124 |
"type": "string", |
| 125 |
"default": "" |
| 126 |
}, |
| 127 |
"showSubtext": { |
| 128 |
"type": "boolean", |
| 129 |
"default": false |
| 130 |
}, |
| 131 |
"subtextColor": { |
| 132 |
"type": "string", |
| 133 |
"default": "#6b7280" |
| 134 |
}, |
| 135 |
"padding": { |
| 136 |
"type": "number", |
| 137 |
"default": 0 |
| 138 |
} |
| 139 |
} |
| 140 |
} |
| 141 |
|