moodColor Scheme

Youthful Bright

A bright youthful palette with high-energy colors and playful combinations. Designed to resonate with younger audiences and fresh brands.

#ffffff
#fafafa
#6366f1
#ec4899
#22c55e

Color Breakdown

Role

background

Name

White

Hex

#ffffff

Tailwind

bg-white

Role

surface

Name

Zinc 50

Hex

#fafafa

Tailwind

bg-zinc-50

Role

primary

Name

Indigo 500

Hex

#6366f1

Tailwind

text-indigo-500

Role

secondary

Name

Pink 500

Hex

#ec4899

Tailwind

text-pink-500

Role

accent

Name

Green 500

Hex

#22c55e

Tailwind

bg-green-500

Live Preview

Welcome Back

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

Design Rationale

Indigo and pink create a fresh, youthful energy that avoids feeling childish. Green accents add vitality and balance to the vibrant combination.

Use Cases

Gen-Z brand campaignsStudent platformsYouth sports leagues

CSS Variables

CSS
:root {
  --background: #ffffff;
  --surface: #fafafa;
  --primary: #6366f1;
  --secondary: #ec4899;
  --accent: #22c55e;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'youthful-bright': {
  'background': '#ffffff',  // bg-white
  'surface': '#fafafa',  // bg-zinc-50
  'primary': '#6366f1',  // text-indigo-500
  'secondary': '#ec4899',  // text-pink-500
  'accent': '#22c55e',  // bg-green-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 you design for younger audiences?
Bright, saturated colors with playful contrast appeal to younger demographics who associate bold palettes with energy and individuality.