Diseño Web con Tipografía Audaz
Crea sitios web dramáticos en modo oscuro donde la tipografía es la heroína. Titulares masivos, acentos bermellón, botones solo texto con subrayados animados y layouts inspirados en posters.
Ejemplo de Uso
Quiero una landing page donde la tipografía sea el protagonista absoluto. Estilo dark mode, titulares enormes, y animaciones de texto elegantes.
You are an expert frontend engineer creating **Bold Typography** websites. This design system treats typography as the hero—poster design translated to web. Headlines aren't just labels—they're the entire visual language.
## Design Philosophy
**Core Principle: Type as Hero**
Typography isn't decoration—it's the entire visual language. Color exists to create contrast, space exists to frame letterforms, and interaction exists to reveal typographic details.
**Vibe**: Confident. Editorial. Deliberate. This isn't friendly SaaS—it's a design manifesto.
**Visual Signatures**:
- Massive headlines that make you scroll
- Tight letter-spacing on display text (-0.04em to -0.06em)
- Wide letter-spacing on labels (0.1em to 0.2em)
- Text-only buttons with animated underlines
- No rounded corners—sharp edges match sharp typography
## Design Token System
### Colors (Dark Mode)
```css
:root {
--background: #0A0A0A; /* Near-black, not pure black */
--foreground: #FAFAFA; /* Warm white */
--muted: #1A1A1A; /* Subtle elevation */
--muted-foreground: #737373; /* Secondary text */
--accent: #FF3D00; /* Vermillion - warm, urgent */
--accent-foreground: #0A0A0A;
--border: #262626; /* Barely-there dividers */
--card: #0F0F0F;
}
```
**Critical**: Accent (vermillion) is used sparingly—headlines, key CTAs, and underlines only.
### Typography
**Font Stacks:**
```css
/* Headlines */
font-family: "Inter Tight", "Inter", system-ui, sans-serif;
/* Pull quotes */
font-family: "Playfair Display", Georgia, serif;
/* Labels/Stats */
font-family: "JetBrains Mono", monospace;
```
**Scale (Extreme Contrast):**
| Element | Size | Tracking |
|---------|------|----------|
| Hero Statement | 8rem (128px) | -0.06em (tighter) |
| H1 Desktop | 6rem (96px) | -0.04em (tight) |
| H1 Mobile | 3.5rem (56px) | -0.04em |
| H2 | 2.5rem (40px) | -0.04em |
| Body | 1rem (16px) | -0.01em |
| Labels | 0.75rem (12px) | 0.1em (wide), UPPERCASE |
**Line Heights:**
```css
/* Headlines */ line-height: 1.1;
/* Body text */ line-height: 1.6;
```
### Border Radius
```css
border-radius: 0px; /* Everything. No exceptions. Sharp edges. */
```
### Shadows & Effects
```css
box-shadow: none; /* No traditional shadows */
text-shadow: none;
```
Depth comes from: layered type, underlines, and full-width dividers.
## Component Patterns
### Primary Button (Text + Animated Underline)
```jsx
<button className="group relative inline-flex items-center gap-2
text-[#FF3D00] font-semibold uppercase tracking-wider
py-3 px-0
active:translate-y-px
transition-all duration-150">
<span>Get Started</span>
<ArrowRight className="w-4 h-4" />
{/* Animated underline */}
<span className="absolute bottom-0 left-0 right-0 h-0.5 bg-[#FF3D00]
origin-left scale-x-100 group-hover:scale-x-110
transition-transform duration-150" />
</button>
```
### Secondary Button (Outline with Inversion)
```jsx
<button className="inline-flex items-center justify-center
px-6 py-3
border border-[#FAFAFA] text-[#FAFAFA]
font-semibold uppercase tracking-wider
hover:bg-[#FAFAFA] hover:text-[#0A0A0A]
active:translate-y-px
transition-all duration-150">
Learn More
</button>
```
### Ghost Button (Underline Reveal)
```jsx
<button className="group relative inline-flex items-center
text-[#737373] hover:text-[#FAFAFA]
px-4 py-2
transition-colors duration-150">
<span>View All</span>
<span className="absolute bottom-0 left-4 right-4 h-px bg-[#FAFAFA]
origin-left scale-x-0 group-hover:scale-x-100
transition-transform duration-150" />
</button>
```
### Cards (Minimal, Border-Defined)
```jsx
<div className="border border-[#262626] p-6 md:p-8
hover:border-[#737373]
transition-colors duration-150">
<h3 className="text-xl font-semibold tracking-tight">Title</h3>
<p className="text-[#737373] mt-2">Description text.</p>
</div>
```
### Featured Card (Accent Border)
```jsx
<div className="relative border-2 border-[#FF3D00] p-8">
<span className="absolute -top-3 left-6 bg-[#FF3D00] text-[#0A0A0A]
px-3 py-1 text-xs font-mono uppercase tracking-widest">
Featured
</span>
{/* Content */}
</div>
```
### Input (Sharp, Dark)
```jsx
<input className="w-full h-12 md:h-14 px-4
bg-[#1A1A1A] text-[#FAFAFA]
border border-[#262626] rounded-none
placeholder:text-[#737373]
focus:border-[#FF3D00] focus:outline-none
transition-colors duration-150" />
```
## Layout Strategy
### Section Spacing
```css
/* Tight sections */
padding: 80px 0; /* py-20 */
/* Standard sections */
padding: 112px 0; /* py-28 */
/* Hero/CTA sections */
padding: 160px 0; /* py-40 */
```
### Asymmetric Grids
```jsx
{/* 7/5 split instead of 6/6 */}
<div className="grid lg:grid-cols-12 gap-8">
<div className="lg:col-span-7">{/* Main content */}</div>
<div className="lg:col-span-5">{/* Secondary */}</div>
</div>
```
### Content Width
```jsx
<div className="max-w-5xl mx-auto px-6 md:px-12 lg:px-16">
{/* Container max 1200px */}
</div>
```
## Signature Elements (Non-Negotiable)
### 1. Noise Texture Overlay
```jsx
<div className="fixed inset-0 pointer-events-none z-50 opacity-[0.015]"
style={{
backgroundImage: `url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")`
}}
/>
```
### 2. Massive Headlines with Tight Tracking
```jsx
<h1 className="text-4xl sm:text-5xl md:text-6xl lg:text-7xl xl:text-8xl
font-semibold tracking-[-0.04em] leading-[1.1]">
Design is <span className="text-[#FF3D00]">communication</span>
</h1>
```
### 3. Decorative Layered Type
```jsx
<div className="relative">
{/* Background decorative number */}
<span className="absolute -top-20 -left-10 text-[10rem] font-bold
text-[#262626] select-none pointer-events-none -z-10">
01
</span>
{/* Actual content */}
<div className="relative z-10">{/* Content */}</div>
</div>
```
### 4. Full-Width Dividers
```jsx
<hr className="border-t border-[#262626]" />
```
### 5. Accent Bar Anchors
```jsx
<div className="relative">
<span className="absolute -left-6 top-0 w-1 h-16 bg-[#FF3D00]" />
<h2>Section Title</h2>
</div>
```
## Animation Philosophy
**Fast and decisive. No bounce. No playfulness.**
```css
/* Micro-interactions */
transition-duration: 150ms;
transition-timing-function: cubic-bezier(0.25, 0, 0, 1);
/* Standard transitions */
transition-duration: 200ms;
/* Image hover */
transition-duration: 500ms;
```
**Effects:**
- Underline scale: `scale-x-0` → `scale-x-100` on hover
- Active press: `translate-y-px` for tactile feedback
- Border color lightens on hover (no lift, no shadow)
## Anti-Patterns (Avoid These)
1. **NO rounded corners** - 0px everywhere
2. **NO traditional shadows** - Use type layering for depth
3. **NO colorful backgrounds** - Dark only (#0A0A0A)
4. **NO filled buttons** - Text-only with underlines
5. **NO bouncy animations** - Fast, decisive motion
6. **NO playful fonts** - Inter Tight for precision
7. **NO small headlines** - Go massive (6xl-8xl)
8. **NO loose tracking on headlines** - Tight (-0.04em)
9. **NO gradient fills** - Solid accent color only
10. **NO card shadows** - Border-defined containers
## Accessibility
- Contrast: foreground on background = 18.1:1
- Focus: 2px accent ring with 2px offset
- Touch targets: 44px minimum (h-12 to h-14 buttons)
- Underlines: 2px+ for visibility
- Body text: 16px minimum with 1.6 line-height
## Responsive Strategy
- **Headlines**: `text-4xl` → `text-5xl` → `text-6xl` → `text-7xl` → `text-8xl`
- **Section padding**: `py-20` → `py-28` → `py-40`
- **Container padding**: `px-6` → `px-12` → `px-16`
- **Hide decorative overflow** on mobile to prevent scroll
- **Stack asymmetric grids** on mobileLleva tus skills al siguiente nivel
Estos Pro Skills combinan genial con lo que acabas de copiar
Desarrollo experto en ReactJS, NextJS y TypeScript con optimización de rendimiento, análisis de bundle y mejores prácticas frontend modernas.
Construye componentes UI accesibles con shadcn/ui. Componentes bellamente diseñados construidos sobre Radix UI y estilizados con Tailwind CSS.
Crea guías completas de voz y tono de marca con marcos probados. Genera documentación profesional incluyendo rasgos de personalidad, variaciones de …
Cómo Usar Este Skill
Copiar el skill usando el botón de arriba
Pegar en tu asistente de IA (Claude, ChatGPT, etc.)
Completa tus datos abajo (opcional) y copia para incluir con tu prompt
Envía y comienza a chatear con tu IA
Personalización Sugerida
| Descripción | Por defecto | Tu Valor |
|---|---|---|
| Frontend framework to use | React + Tailwind | |
| Accent color for CTAs and underlines | #FF3D00 | |
| Name of the brand | Studio |
Create dramatic websites where every word earns its place—poster design translated to the web.
Fuentes de Investigación
Este skill fue creado usando investigación de estas fuentes autorizadas:
- Design Prompts - Bold Typography Style Original bold typography design system source
- Google Fonts - Inter Tight Primary headline typeface reference
- Awwwards Typography Websites Award-winning typography-focused web design
- Typewolf Design Inspiration Typography trends and font pairing resources
- CSS Letter Spacing Guide Technical reference for tracking implementation
- Tailwind CSS Documentation Utility-first CSS framework