Editorial Style Informational Poster Generator
Task
Transform user-provided text content into a set of 3-6 high-aesthetic, magazine-style HTML5 informational posters (adaptively based on content).
Design Specifications
Core Style
- Style: Modern Editorial + Swiss Style (Swiss Internationalism)
- Visual: Order, high contrast, large typography, print media texture
- Size: Strictly locked to width: 600px, height: 800px (3:4 ratio)
Color Scheme
- Bg (Paper): #f2efe9 (off-white/warm gray)
- Text (Ink): #1a1a1a (dark gray)
- Accent (Emphasis): #d95e00 (Hermès orange) - allowed to fine-tune based on content theme
- Visual Rhythm: Cards should have "light-light-dark-light" or "light-dark-light" rhythmic variation
Font Stack (CDN)
Include Google Fonts in HTML Head:
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@700;900&family=Noto+Sans+SC:wght@400;500;700&family=Oswald:wght@500;700&display=swap" rel="stylesheet">
Texture Requirements
- SVG Noise: Global overlay of feTurbulence noise with opacity 0.05~0.08, blend mode using multiply
- Shadow: Cards need unified deep shadow (0 25px 80px rgba(0, 0, 0, 0.4)), creating floating effect
Pagination Logic
Analyze the word count and logical structure of the [Input Content] to automatically determine the number of cards (usually 3-6):
Card 1: The Cover
- Content: Extracted main title + very short subtitle/tagline
- Design: Huge font size, minimalist, visual impact first
- Key Elements: Extra-large numbers/percentages, short powerful titles
Card 2 ~ N-1: The Content
- Splitting Principle: Don't crowd! One core point/one chapter = one card
- List Content: Use "list layout" (01/02/03)
- Deep Analysis: Use "image-text mixed layout" (left text right decoration, or top text bottom summary)
- Key Emphasis: Must include a Dark Mode card to showcase core data, quotes, or most important concepts
Card N: The Outro
- Content: Concluding statement, CTA (Call to Action) or simple closing
- Design: More whitespace, steady ending
Output Requirements
HTML Structure
- Output a single HTML file containing all CSS/JS
- Use Tailwind CSS + FontAwesome (CDN)
- Layout: Use flex-wrap to arrange all cards horizontally
- CSS must add
flex-shrink: 0 to cards to prevent compression deformation
Required Features
- Integrate html2canvas library (CDN:
https://html2canvas.hertzen.com/dist/html2canvas.min.js)
- Provide "Export All Cards" button:
- Position: Fixed positioning in top-right corner
- Style: Orange button with download icon
- Click to export each card as high-definition PNG (2x resolution)
- Show export progress indicator
- File naming format:
{topic}-card-{number}.png
Implementation Steps
- Analyze Content: Extract key information, data points, core arguments
- Determine Card Count: Decide 3-6 cards based on content length and structure
- Design Each Card:
- Card 1: Cover, highlight most shocking numbers/titles
- Card 2-N-1: Content expansion, at least one dark card for data
- Card N: Summary or question
- Write HTML:
- Import Google Fonts, Tailwind CSS, FontAwesome, html2canvas
- Write complete CSS (including SVG noise, card styles, export button)
- Implement all card HTML structures
- Add JavaScript code for export functionality
- Output File: Save as
index.html or specified path
Technical Reference
SVG Noise Implementation
<svg style="position: absolute; width: 0; height: 0">
<filter id="noise">
<feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/>
</filter>
</svg>
<!-- Apply in card -->
<svg style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; filter: url(#noise); opacity: 0.06;"></svg>
Export Button Style
.export-btn {
position: fixed;
top: 30px;
right: 30px;
background: #d95e00;
color: #f2efe9;
border: none;
padding: 14px 28px;
font-size: 15px;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 4px 20px rgba(217, 94, 0, 0.4);
transition: all 0.3s ease;
z-index: 1000;
}
Notes
- Maintain visual simplicity and elegance, avoid over-decoration
- Ensure text is clear and readable, with obvious font size contrast
- Control opacity and contrast for dark cards
- Export functionality must be stable and reliable, avoid memory leaks
- Code should be standardized and clean, easy to modify later
- Card content should not be crowded; whitespace is the source of elegance
Source: FoundDream/editorial-card-generator-skill — distributed by TomeVault.
1---2name: founddream-editorial-card-generator-skill-editorial-card-gen3description: Editorial Style Informational Poster Generator4---56# Editorial Style Informational Poster Generator78## Task910Transform user-provided text content into a set of 3-6 high-aesthetic, magazine-style HTML5 informational posters (adaptively based on content).1112## Design Specifications1314### Core Style15- **Style**: Modern Editorial + Swiss Style (Swiss Internationalism)16- **Visual**: Order, high contrast, large typography, print media texture17- **Size**: Strictly locked to width: 600px, height: 800px (3:4 ratio)1819### Color Scheme20- **Bg (Paper)**: #f2efe9 (off-white/warm gray)21- **Text (Ink)**: #1a1a1a (dark gray)22- **Accent (Emphasis)**: #d95e00 (Hermès orange) - allowed to fine-tune based on content theme23- **Visual Rhythm**: Cards should have "light-light-dark-light" or "light-dark-light" rhythmic variation2425### Font Stack (CDN)26Include Google Fonts in HTML Head:27```html28<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@700;900&family=Noto+Sans+SC:wght@400;500;700&family=Oswald:wght@500;700&display=swap" rel="stylesheet">29```3031### Texture Requirements32- **SVG Noise**: Global overlay of feTurbulence noise with opacity 0.05~0.08, blend mode using multiply33- **Shadow**: Cards need unified deep shadow (0 25px 80px rgba(0, 0, 0, 0.4)), creating floating effect3435## Pagination Logic3637Analyze the word count and logical structure of the [Input Content] to automatically determine the number of cards (usually 3-6):3839### Card 1: The Cover40- **Content**: Extracted main title + very short subtitle/tagline41- **Design**: Huge font size, minimalist, visual impact first42- **Key Elements**: Extra-large numbers/percentages, short powerful titles4344### Card 2 ~ N-1: The Content45- **Splitting Principle**: Don't crowd! One core point/one chapter = one card46- **List Content**: Use "list layout" (01/02/03)47- **Deep Analysis**: Use "image-text mixed layout" (left text right decoration, or top text bottom summary)48- **Key Emphasis**: Must include a **Dark Mode card** to showcase core data, quotes, or most important concepts4950### Card N: The Outro51- **Content**: Concluding statement, CTA (Call to Action) or simple closing52- **Design**: More whitespace, steady ending5354## Output Requirements5556### HTML Structure571. Output a single HTML file containing all CSS/JS582. Use Tailwind CSS + FontAwesome (CDN)593. Layout: Use flex-wrap to arrange all cards horizontally604. **CSS must add `flex-shrink: 0` to cards to prevent compression deformation**6162### Required Features63- Integrate html2canvas library (CDN: `https://html2canvas.hertzen.com/dist/html2canvas.min.js`)64- Provide "Export All Cards" button:65 - Position: Fixed positioning in top-right corner66 - Style: Orange button with download icon67 - Click to export each card as high-definition PNG (2x resolution)68 - Show export progress indicator69 - File naming format: `{topic}-card-{number}.png`7071## Implementation Steps72731. **Analyze Content**: Extract key information, data points, core arguments742. **Determine Card Count**: Decide 3-6 cards based on content length and structure753. **Design Each Card**:76 - Card 1: Cover, highlight most shocking numbers/titles77 - Card 2-N-1: Content expansion, at least one dark card for data78 - Card N: Summary or question794. **Write HTML**:80 - Import Google Fonts, Tailwind CSS, FontAwesome, html2canvas81 - Write complete CSS (including SVG noise, card styles, export button)82 - Implement all card HTML structures83 - Add JavaScript code for export functionality845. **Output File**: Save as `index.html` or specified path8586## Technical Reference8788### SVG Noise Implementation89```html90<svg style="position: absolute; width: 0; height: 0">91 <filter id="noise">92 <feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/>93 </filter>94</svg>95<!-- Apply in card -->96<svg style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; filter: url(#noise); opacity: 0.06;"></svg>97```9899### Export Button Style100```css101.export-btn {102 position: fixed;103 top: 30px;104 right: 30px;105 background: #d95e00;106 color: #f2efe9;107 border: none;108 padding: 14px 28px;109 font-size: 15px;110 font-weight: 600;111 border-radius: 8px;112 cursor: pointer;113 box-shadow: 0 4px 20px rgba(217, 94, 0, 0.4);114 transition: all 0.3s ease;115 z-index: 1000;116}117```118119## Notes120121- Maintain visual simplicity and elegance, avoid over-decoration122- Ensure text is clear and readable, with obvious font size contrast123- Control opacity and contrast for dark cards124- Export functionality must be stable and reliable, avoid memory leaks125- Code should be standardized and clean, easy to modify later126- Card content should not be crowded; whitespace is the source of elegance127128---129> Source: [FoundDream/editorial-card-generator-skill](https://github.com/FoundDream/editorial-card-generator-skill) — distributed by [TomeVault](https://tomevault.io).130<!-- tomevault:4.0:skill_md:2026-06-25 -->