Design Website Tipografia Bold

Intermedio 15 min Verificato 4.9/5

Crea design web con tipografia bold e impattante - gerarchia, peso e statement visivo. Che figata per branding forte!

Esempio di Utilizzo

Progetta un design web con tipografia bold per il sito di un’agenzia creativa.
Prompt dello Skill
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 mobile
Questo skill funziona meglio quando viene copiato da findskill.ai — include variabili e formattazione che potrebbero non essere trasferite correttamente altrove.

Fai il salto di qualità

Queste Pro Skill sono perfette insieme a quella che hai appena copiato

Padroneggia shadcn/ui - componenti, temi, personalizzazione e integrazione. UI belle e accessibili velocemente. Spacca con i componenti!

Sblocca 407+ Pro Skill — Da $4.92/mese
Vedi tutte le Pro Skill

Come Usare Questo Skill

1

Copia lo skill usando il pulsante sopra

2

Incolla nel tuo assistente AI (Claude, ChatGPT, ecc.)

3

Compila le tue informazioni sotto (opzionale) e copia per includere nel tuo prompt

4

Invia e inizia a chattare con la tua AI

Personalizzazione Suggerita

DescrizionePredefinitoIl Tuo Valore
Framework frontend da usareReact + Tailwind
Colore accento per CTA e sottolineature#FF3D00
Nome del brandStudio

Create dramatic websites where every word earns its place—poster design translated to the web.

Fonti di Ricerca

Questo skill è stato creato utilizzando ricerche da queste fonti autorevoli: