STYLING & VARIANTS
STYLE YOUR CONTENT
Master FYT's styling system with variants, layouts, and special properties to create impactful content.
VARIANT SYSTEM
Four core styles
Available Variants:
| Variant | Style | Use Case |
|---|---|---|
| `brutal` | Black/white, high contrast | Primary content, headers |
| `electric` | Neon colors, vibrant | Highlights, CTAs |
| `resistance` | Red/black, bold | Warnings, important info |
| `humanist` | Serif fonts, warm | Stories, quotes, personal content |
Applying Variants:
Section Level:
YAML
sections:
- id: "section-1"
title: "Section Title"
content: |
Content here
variant: "brutal"Page Level:
YAML
styling:
color_scheme: "brutal"
background: "brutal-white"BRUTAL VARIANT
High contrast, maximum impact
Characteristics:
- Colors: Black and white only
- Typography: Bold, uppercase, tight tracking
- Borders: Thick (4px), solid black
- Shadows: Heavy text shadows
Example:
YAML
sections:
- id: "hero"
title: "BRUTAL TITLE"
content: |
Maximum contrast. Maximum impact.
variant: "brutal"Best For:
- Headers and titles
- Primary content sections
- Call-to-action areas
- High-impact messaging
ELECTRIC VARIANT
Neon colors, vibrant energy
Characteristics:
- Colors: Neon yellow, cyan, magenta
- Typography: Bold, energetic
- Effects: Glow, vibrant shadows
- Mood: Energetic, modern
Example:
YAML
sections:
- id: "features"
title: "FEATURES"
content: |
Vibrant, energetic content.
variant: "brutal"Best For:
- Feature highlights
- Secondary content
- Interactive sections
- Modern, tech-focused content
LAYOUT OPTIONS
Organize your content
Available Layouts:
| Layout | Description | Use Case |
|---|---|---|
| `grid` | Multi-column grid | Cards, features, galleries |
| `list` | Single column list | Articles, documentation |
| `single-column` | Centered single column | Long-form content |
Grid Layout:
YAML
sections:
- id: "features"
layout: "grid"
items:
- title: "Feature 1"
description: "Description"
- title: "Feature 2"
description: "Description"List Layout:
YAML
sections:
- id: "articles"
layout: "list"
items:
- title: "Article 1"
- title: "Article 2"SPECIAL STYLING PROPERTIES
Page-level styling
Letterbox:
Adds cinematic letterbox bars (top/bottom black bars):
YAML
styling:
letterbox: trueRegistration Marks:
Adds printing press registration marks (corners):
YAML
styling:
registration_marks: trueBackground:
Set page background color:
YAML
styling:
background: "brutal-white" # White
background: "brutal-black" # Black
background: "electric-cyan" # CyanColor Scheme:
Set overall color scheme:
YAML
styling:
color_scheme: "brutal" # Black/white
color_scheme: "electric" # Neon colors
color_scheme: "resistance" # Red/blackComplete Example:
YAML
styling:
letterbox: true
registration_marks: true
background: "brutal-white"
color_scheme: "brutal"MIXING VARIANTS
Combine for impact
Section-by-Section:
Different sections can use different variants:
YAML
sections:
- id: "hero"
title: "HERO"
variant: "brutal"
- id: "features"
title: "FEATURES"
variant: "brutal"
- id: "warning"
title: "WARNING"
variant: "resistance"Best Practices:
✅
Use
brutal for primary content✅
Use
electric for highlights✅
Use
resistance sparingly for warnings✅
Maintain visual hierarchy
☐
Don't mix too many variants on one page
NEXT STEPS
Learn More:
- Creating Content - Create styled content
- Editing Content - Edit styling
- Content Validation - Validate styling
- Overview - Content system overview