moodColor Scheme

Energetic Bold

A bold and energetic palette with vivid reds and bright accents. Designed to excite, motivate, and drive immediate action.

#ffffff
#fafafa
#ef4444
#6b7280
#eab308

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

Red 500

Hex

#ef4444

Tailwind

text-red-500

Role

secondary

Name

Gray 500

Hex

#6b7280

Tailwind

text-gray-500

Role

accent

Name

Yellow 500

Hex

#eab308

Tailwind

bg-yellow-500

Live Preview

Welcome Back

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

Design Rationale

Red commands attention and raises energy levels for action-oriented pages. Yellow accents amplify excitement and highlight time-sensitive offers.

Use Cases

Flash sale pagesSports brandsCall-to-action heavy sites

CSS Variables

CSS
:root {
  --background: #ffffff;
  --surface: #fafafa;
  --primary: #ef4444;
  --secondary: #6b7280;
  --accent: #eab308;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'energetic-bold': {
  'background': '#ffffff',  // bg-white
  'surface': '#fafafa',  // bg-zinc-50
  'primary': '#ef4444',  // text-red-500
  'secondary': '#6b7280',  // text-gray-500
  'accent': '#eab308',  // bg-yellow-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 bold colors drive conversions?
Bold, saturated colors create urgency and emotional arousal, which can increase click-through rates and conversion actions.