feat: port all template categories to JSON format
- Ported Minimalist templates to JSON (Swiss Grid, Brutalist, etc.) - Ported Tech templates to JSON (SaaS, Terminal, Cyberpunk, etc.) - Ported Creative templates to JSON (Art Gallery, Zine, Pop Art, etc.) - Ported Industrial templates to JSON (Blueprint, Factory, Schematic, etc.) - Ported Nature templates to JSON (Botanical, Ocean, Mountain, etc.) - Ported Lifestyle templates to JSON (Cookbook, Travel, Coffee House, etc.) - Ported Vintage templates to JSON (Art Deco, Medieval, Retro 80s, etc.) - Updated README.md to reflect the new JSON-based style system (example configuration and contribution workflow) - Completed migration of over 150 styles to the new architecture
This commit is contained in:
309
src-tauri/templates/creative/risograph-print.json
Normal file
309
src-tauri/templates/creative/risograph-print.json
Normal file
@@ -0,0 +1,309 @@
|
||||
{
|
||||
"id": "risograph-print",
|
||||
"name": "Risograph Print",
|
||||
"category": "creative",
|
||||
"description": "Inspired by Riso printing. Grainy textures, overlapping colors, and a lo-fi DIY zine aesthetic.",
|
||||
"vibe": "Grainy, DIY, Artistic",
|
||||
"googleFontsImport": "https://fonts.googleapis.com/css2?family=Staatliches&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap",
|
||||
"typography": {
|
||||
"fonts": {
|
||||
"heading": "Staatliches",
|
||||
"body": "Courier Prime",
|
||||
"code": "Courier Prime"
|
||||
},
|
||||
"colors": {
|
||||
"text": "1A237E",
|
||||
"textSecondary": "E91E63",
|
||||
"background": "F8E1E7",
|
||||
"accent": "FFD600",
|
||||
"border": "1A237E",
|
||||
"codeBg": "FFFFFF",
|
||||
"blockquoteBorder": "E91E63"
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"h1": {
|
||||
"font": "heading",
|
||||
"size": 42,
|
||||
"color": "textSecondary",
|
||||
"bold": false,
|
||||
"align": "left",
|
||||
"spacing": {
|
||||
"before": 42,
|
||||
"after": 21,
|
||||
"line": 1.1
|
||||
},
|
||||
"borderBottom": {
|
||||
"color": "text",
|
||||
"width": 6,
|
||||
"style": "solid",
|
||||
"space": 8
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"font": "heading",
|
||||
"size": 32,
|
||||
"color": "text",
|
||||
"bold": false,
|
||||
"align": "left",
|
||||
"spacing": {
|
||||
"before": 32,
|
||||
"after": 16,
|
||||
"line": 1.1
|
||||
},
|
||||
"background": "accent",
|
||||
"padding": 12
|
||||
},
|
||||
"h3": {
|
||||
"font": "heading",
|
||||
"size": 26,
|
||||
"color": "textSecondary",
|
||||
"bold": false,
|
||||
"align": "left",
|
||||
"spacing": {
|
||||
"before": 26,
|
||||
"after": 13,
|
||||
"line": 1.2
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"font": "body",
|
||||
"size": 18,
|
||||
"color": "text",
|
||||
"bold": true,
|
||||
"align": "left",
|
||||
"spacing": {
|
||||
"before": 18,
|
||||
"after": 9,
|
||||
"line": 1.3
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"font": "body",
|
||||
"size": 16,
|
||||
"color": "textSecondary",
|
||||
"bold": true,
|
||||
"align": "left",
|
||||
"spacing": {
|
||||
"before": 16,
|
||||
"after": 8,
|
||||
"line": 1.4
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"font": "body",
|
||||
"size": 14,
|
||||
"color": "text",
|
||||
"italic": true,
|
||||
"align": "left",
|
||||
"spacing": {
|
||||
"before": 14,
|
||||
"after": 7,
|
||||
"line": 1.4
|
||||
}
|
||||
},
|
||||
"p": {
|
||||
"font": "body",
|
||||
"size": 14,
|
||||
"color": "text",
|
||||
"align": "left",
|
||||
"spacing": {
|
||||
"before": 0,
|
||||
"after": 14,
|
||||
"line": 1.6
|
||||
}
|
||||
},
|
||||
"blockquote": {
|
||||
"font": "heading",
|
||||
"size": 16,
|
||||
"color": "textSecondary",
|
||||
"italic": false,
|
||||
"align": "left",
|
||||
"spacing": {
|
||||
"before": 21,
|
||||
"after": 21,
|
||||
"line": 1.5
|
||||
},
|
||||
"padding": 16,
|
||||
"border": {
|
||||
"color": "text",
|
||||
"width": 2,
|
||||
"style": "solid"
|
||||
}
|
||||
},
|
||||
"code": {
|
||||
"font": "body",
|
||||
"size": 12,
|
||||
"color": "textSecondary",
|
||||
"background": "codeBg",
|
||||
"spacing": {
|
||||
"before": 0,
|
||||
"after": 0,
|
||||
"line": 1.4
|
||||
}
|
||||
},
|
||||
"pre": {
|
||||
"font": "body",
|
||||
"size": 12,
|
||||
"color": "textSecondary",
|
||||
"background": "codeBg",
|
||||
"padding": 16,
|
||||
"spacing": {
|
||||
"before": 16,
|
||||
"after": 16,
|
||||
"line": 1.4
|
||||
},
|
||||
"border": {
|
||||
"color": "border",
|
||||
"width": 1,
|
||||
"style": "dashed"
|
||||
}
|
||||
},
|
||||
"ul": {
|
||||
"spacing": {
|
||||
"before": 14,
|
||||
"after": 14,
|
||||
"line": 1.6
|
||||
},
|
||||
"indent": 28,
|
||||
"bullet": "disc"
|
||||
},
|
||||
"ol": {
|
||||
"spacing": {
|
||||
"before": 14,
|
||||
"after": 14,
|
||||
"line": 1.6
|
||||
},
|
||||
"indent": 28,
|
||||
"numbering": "decimal"
|
||||
},
|
||||
"li": {
|
||||
"font": "body",
|
||||
"size": 14,
|
||||
"color": "text",
|
||||
"spacing": {
|
||||
"before": 4,
|
||||
"after": 4,
|
||||
"line": 1.6
|
||||
}
|
||||
},
|
||||
"strong": {
|
||||
"font": "heading",
|
||||
"bold": false,
|
||||
"color": "textSecondary"
|
||||
},
|
||||
"em": {
|
||||
"font": "body",
|
||||
"italic": true,
|
||||
"color": "text"
|
||||
},
|
||||
"a": {
|
||||
"font": "body",
|
||||
"color": "border",
|
||||
"underline": true,
|
||||
"bold": true
|
||||
},
|
||||
"table": {
|
||||
"spacing": {
|
||||
"before": 21,
|
||||
"after": 21,
|
||||
"line": 1.2
|
||||
},
|
||||
"border": {
|
||||
"color": "border",
|
||||
"width": 2,
|
||||
"style": "solid"
|
||||
}
|
||||
},
|
||||
"th": {
|
||||
"font": "heading",
|
||||
"size": 14,
|
||||
"color": "text",
|
||||
"bold": false,
|
||||
"background": "accent",
|
||||
"padding": 10
|
||||
},
|
||||
"td": {
|
||||
"font": "body",
|
||||
"size": 14,
|
||||
"color": "text",
|
||||
"padding": 10,
|
||||
"borderBottom": {
|
||||
"color": "border",
|
||||
"width": 1,
|
||||
"style": "solid"
|
||||
}
|
||||
},
|
||||
"hr": {
|
||||
"spacing": {
|
||||
"before": 28,
|
||||
"after": 28
|
||||
},
|
||||
"border": {
|
||||
"color": "textSecondary",
|
||||
"width": 4,
|
||||
"style": "dotted"
|
||||
}
|
||||
},
|
||||
"img": {
|
||||
"align": "left",
|
||||
"spacing": {
|
||||
"before": 21,
|
||||
"after": 21
|
||||
},
|
||||
"border": {
|
||||
"color": "text",
|
||||
"width": 2,
|
||||
"style": "solid"
|
||||
},
|
||||
"grayscale": true
|
||||
},
|
||||
"del": {
|
||||
"font": "body",
|
||||
"strikethrough": true,
|
||||
"color": "textSecondary"
|
||||
},
|
||||
"sup": {
|
||||
"font": "body",
|
||||
"size": 10,
|
||||
"superScript": true
|
||||
},
|
||||
"sub": {
|
||||
"font": "body",
|
||||
"size": 10,
|
||||
"subScript": true
|
||||
},
|
||||
"mark": {
|
||||
"font": "body",
|
||||
"background": "accent",
|
||||
"color": "text"
|
||||
},
|
||||
"footnote": {
|
||||
"font": "body",
|
||||
"size": 12,
|
||||
"color": "textSecondary",
|
||||
"superScript": true
|
||||
},
|
||||
"footnoteRef": {
|
||||
"font": "body",
|
||||
"size": 12,
|
||||
"color": "textSecondary",
|
||||
"spacing": {
|
||||
"before": 6,
|
||||
"after": 6,
|
||||
"line": 1.2
|
||||
}
|
||||
}
|
||||
},
|
||||
"page": {
|
||||
"margins": {
|
||||
"top": 60,
|
||||
"bottom": 60,
|
||||
"left": 60,
|
||||
"right": 60
|
||||
},
|
||||
"columns": 1,
|
||||
"header": true,
|
||||
"footer": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user