styleColor Scheme

Sunset Warm

A warm sunset palette with graduating warm tones from gold to rose. Captures the magical colors of golden hour.

#fafafa
#ffffff
#f97316
#f59e0b
#f43f5e

Color Breakdown

Role

background

Name

Zinc 50

Hex

#fafafa

Tailwind

bg-zinc-50

Role

surface

Name

White

Hex

#ffffff

Tailwind

bg-white

Role

primary

Name

Orange 500

Hex

#f97316

Tailwind

text-orange-500

Role

secondary

Name

Amber 500

Hex

#f59e0b

Tailwind

text-amber-500

Role

accent

Name

Rose 500

Hex

#f43f5e

Tailwind

bg-rose-500

Live Preview

Welcome Back

This is a live preview of the Sunset Warm color scheme applied to a sample card component. See how the colors work together in a realistic UI context.

Design Rationale

Orange and amber recreate the golden warmth of a setting sun. Rose accents capture the deeper hues as the sky transitions to dusk.

Use Cases

Photography portfoliosLifestyle brandsEvent planning sites

CSS Variables

CSS
:root {
  --background: #fafafa;
  --surface: #ffffff;
  --primary: #f97316;
  --secondary: #f59e0b;
  --accent: #f43f5e;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'sunset-warm': {
  'background': '#fafafa',  // bg-zinc-50
  'surface': '#ffffff',  // bg-white
  'primary': '#f97316',  // text-orange-500
  'secondary': '#f59e0b',  // text-amber-500
  'accent': '#f43f5e',  // bg-rose-500
        },
      },
    },
  },
};

Related Color Schemes

Build with This Scheme

Use our palette generator to customize and extend this color scheme for your project.

Open Palette Generator

Frequently Asked Questions

How do sunset colors affect mood?
Sunset palettes evoke warmth, nostalgia, and tranquility, creating an emotionally comforting visual experience.