aboutsummaryrefslogtreecommitdiff
path: root/custom_page.schema.json
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-09-06 22:40:59 +0200
committerWilliam Hergès <william@herges.fr>2025-09-06 22:40:59 +0200
commit8ae1115ba712209cb6b974e81a3a4c4745e36c94 (patch)
tree6bb54c05e1f1bcd3f39793d13867635f20da0c2a /custom_page.schema.json
parent6f6f10cedcbc46ef125bd067bc8d084d29c76afe (diff)
feat(config): customize font file path, extension and name
Diffstat (limited to 'custom_page.schema.json')
-rw-r--r--custom_page.schema.json102
1 files changed, 0 insertions, 102 deletions
diff --git a/custom_page.schema.json b/custom_page.schema.json
deleted file mode 100644
index adb7fce..0000000
--- a/custom_page.schema.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "type": "object",
- "properties": {
- "title": {
- "type": "string"
- },
- "uri": {
- "type": "string"
- },
- "image": {
- "type": "string"
- },
- "description": {
- "type": "string"
- },
- "colors": {
- "type": "object",
- "properties": {
- "text": {
- "type": "string"
- },
- "tag_hover": {
- "type": "string"
- },
- "background": {
- "type": "object",
- "properties": {
- "type": {
- "type": "string"
- },
- "angle": {
- "type": "number"
- },
- "colors": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "color": {
- "type": "string"
- },
- "position": {
- "type": "number"
- }
- },
- "required": [
- "color",
- "position"
- ]
- }
- }
- },
- "required": [
- "type",
- "angle",
- "colors"
- ]
- },
- "buttons": {
- "type": "object",
- "properties": {
- "text": {
- "type": "string"
- },
- "text_hover": {
- "type": "string"
- },
- "background": {
- "type": "string"
- },
- "background_hover": {
- "type": "string"
- }
- },
- "required": [
- "text",
- "text_hover",
- "background",
- "background_hover"
- ]
- }
- },
- "required": [
- "text",
- "tag_hover",
- "background",
- "buttons"
- ]
- },
- "content": {
- "type": "string"
- }
- },
- "required": [
- "title",
- "uri",
- "image",
- "description",
- "colors",
- "content"
- ]
-} \ No newline at end of file