“Her” Movie-Inspired Design Palette

Color Palette

Based on the movie “Her” (2013) directed by Spike Jonze, the film’s production design features a warm, soft, and intimate color palette that reflects the emotional journey of the protagonist and the futuristic yet nostalgic aesthetic.

Primary Colors (6-8 Key Colors)

  1. Coral Red - #f25c54
    • Primary accent color, warm and inviting
    • Used for UI elements, buttons, and emotional highlights
  2. Soft Peach - #ffad9e
    • Secondary warm tone
    • Perfect for hover states and gentle backgrounds
  3. Blush Pink - #ffceb6
    • Tertiary warm tone
    • Ideal for subtle backgrounds and card elements
  4. Warm Orange - #ffd38d
    • Complementary warm accent
    • Great for call-to-action elements and highlights
  5. Muted Teal - #4d6875
    • Cool balance to warm tones
    • Perfect for text, borders, and secondary elements
  6. Midnight Blue - #2e3440
    • Deep, sophisticated dark tone
    • Ideal for body text and dark UI elements
  7. Cream White - #faf8f1
    • Soft, warm white
    • Primary background color
  8. Dusty Rose - #e8a598
    • Additional warm tone
    • Great for subtle accents and dividers

Typography

Primary Font (Headings): Playfair Display

Secondary Font (Body): Nunito Sans

Design Principles

Color Usage Guidelines

Typography Pairing

Emotional Design Elements

Implementation

CSS Variables

:root {
  /* Colors */
  --color-coral-red: #f25c54;
  --color-soft-peach: #ffad9e;
  --color-blush-pink: #ffceb6;
  --color-warm-orange: #ffd38d;
  --color-muted-teal: #4d6875;
  --color-midnight-blue: #2e3440;
  --color-cream-white: #faf8f1;
  --color-dusty-rose: #e8a598;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Nunito Sans', sans-serif;
  
  /* Font Sizes */
  --font-size-h1: 48px;
  --font-size-h2: 36px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --font-size-caption: 12px;
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;
}

Google Fonts Import

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Nunito+Sans:wght@300;400;600&display=swap');

This palette captures the intimate, warm, and slightly futuristic aesthetic of “Her” while maintaining excellent usability and accessibility standards for modern web design.