moodColor Scheme

Whimsical Dreamy

A dreamy whimsical palette with soft purples and fairy-tale pinks. Creates an enchanted, imagination-rich visual experience.

#ffffff
#f8fafc
#8b5cf6
#ec4899
#0ea5e9

Color Breakdown

Role

background

Name

White

Hex

#ffffff

Tailwind

bg-white

Role

surface

Name

Slate 50

Hex

#f8fafc

Tailwind

bg-slate-50

Role

primary

Name

Violet 500

Hex

#8b5cf6

Tailwind

text-violet-500

Role

secondary

Name

Pink 500

Hex

#ec4899

Tailwind

text-pink-500

Role

accent

Name

Sky 500

Hex

#0ea5e9

Tailwind

bg-sky-500

Live Preview

Welcome Back

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

Design Rationale

Violet and pink together create an enchanted, fairy-tale atmosphere of wonder. Sky blue accents add the magic of open skies and limitless imagination.

Use Cases

Fantasy game sitesChildren book publishersFairy-tale themed brands

CSS Variables

CSS
:root {
  --background: #ffffff;
  --surface: #f8fafc;
  --primary: #8b5cf6;
  --secondary: #ec4899;
  --accent: #0ea5e9;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'whimsical-dreamy': {
  'background': '#ffffff',  // bg-white
  'surface': '#f8fafc',  // bg-slate-50
  'primary': '#8b5cf6',  // text-violet-500
  'secondary': '#ec4899',  // text-pink-500
  'accent': '#0ea5e9',  // bg-sky-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

What makes a palette feel whimsical?
Soft purples, pinks, and light blues in gentle combinations mimic the color language of fairy tales and childhood imagination.