Modern component system, responsive design patterns, and comprehensive styling framework
✨ Updated: This style guide now reflects the current WhutNext 2025 component architecture including DNA segment systems, responsive navigation tabs, feedback integration, and the complete CSS variable framework.
Subtle gradient with teal accents. Perfect for main content areas.
Colorful gradient from purple to blue to teal to green. Eye-catching for hero sections.
Dark solid background. Great for contrast and secondary content.
Dark blue-gray background. Subtle and professional for supporting content.
Semi-transparent white overlay. Subtle and clean for content cards.
Same colorful gradient as section-primary. Bold and attention-grabbing.
Dark solid background. Consistent with section-secondary styling.
Hover this card to see the effect! Lighter overlay on interaction.
Active Font: Titillium Web with a complete weight hierarchy from Black (900) to Extra Light (200).
Body Font Size: 0.8rem (base size for inheritance)
Font: 'Titillium Web', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif
Here are some popular Google Fonts that work well for web applications. To use any of these, add the Google Fonts link to your HTML and update the CSS font-family.
Font: 'Titillium Web', sans-serif | Great for: Modern apps, clean UI, excellent weight variety
Font: 'Inter', sans-serif | Great for: UI, body text, modern apps
Font: 'Source Sans 3', sans-serif | Great for: Professional apps, documentation
Font: 'Playfair Display', serif | Great for: Headings, elegant designs, editorial
Font: 'JetBrains Mono', monospace | Great for: Code, technical content
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
:root {
--font-primary: 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
}
body { font-family: var(--font-primary); }
Here's a typical font size scale using rem units:
<div class="dna-segment-display compass">...</div>
<div class="dna-segment-display feedbackEditor">...</div>
<div class="dna-segment-display summaryModal">...</div>
<div class="wn-nav-tab" data-type="content"></div>
<div class="details-card" data-content-type="content"></div>
<div class="center-feedback-content">...</div>
<div class="feedback-insights-bar show">...</div>
<div class="perspective-wheel">...</div>
.container
- Max-width container with responsive padding.text-center
- Center-aligned text.flex-center
- Flexbox center alignment (both axes).flex-middle
- Flexbox space-between with center alignment.margin
- Standard margin (15px).margin-medium-bottom
- Medium bottom margin (30px).margin-large-top
- Large top margin (50px)