moodColor Scheme

Fresh Clean

A fresh and clean palette with bright whites and crisp green accents. Evokes cleanliness, new beginnings, and pure simplicity.

#ffffff
#f9fafb
#10b981
#6b7280
#0ea5e9

Color Breakdown

Role

background

Name

White

Hex

#ffffff

Tailwind

bg-white

Role

surface

Name

Gray 50

Hex

#f9fafb

Tailwind

bg-gray-50

Role

primary

Name

Emerald 500

Hex

#10b981

Tailwind

text-emerald-500

Role

secondary

Name

Gray 500

Hex

#6b7280

Tailwind

text-gray-500

Role

accent

Name

Sky 500

Hex

#0ea5e9

Tailwind

bg-sky-500

Live Preview

Welcome Back

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

Design Rationale

White backgrounds with emerald green create an immediate sense of freshness and purity. Sky blue accents reinforce the clean, airy atmosphere.

Use Cases

Cleaning product brandsHealth food sitesSkincare brands

CSS Variables

CSS
:root {
  --background: #ffffff;
  --surface: #f9fafb;
  --primary: #10b981;
  --secondary: #6b7280;
  --accent: #0ea5e9;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'fresh-clean': {
  'background': '#ffffff',  // bg-white
  'surface': '#f9fafb',  // bg-gray-50
  'primary': '#10b981',  // text-emerald-500
  'secondary': '#6b7280',  // text-gray-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 colors communicate cleanliness?
Whites, light grays, and fresh greens are universally associated with cleanliness, purity, and natural freshness.