moodColor Scheme

Calm Serene

A serene and calming palette with soft blues and muted backgrounds. Designed to reduce visual stress and promote tranquility.

#f8fafc
#ffffff
#3b82f6
#94a3b8
#14b8a6

Color Breakdown

Role

background

Name

Slate 50

Hex

#f8fafc

Tailwind

bg-slate-50

Role

surface

Name

White

Hex

#ffffff

Tailwind

bg-white

Role

primary

Name

Blue 500

Hex

#3b82f6

Tailwind

text-blue-500

Role

secondary

Name

Slate 400

Hex

#94a3b8

Tailwind

text-slate-400

Role

accent

Name

Teal 500

Hex

#14b8a6

Tailwind

bg-teal-500

Live Preview

Welcome Back

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

Design Rationale

Soft blues lower heart rate and reduce anxiety according to color psychology. Teal accents add gentle visual interest without disrupting the calm atmosphere.

Use Cases

Meditation appsWellness platformsSpa websites

CSS Variables

CSS
:root {
  --background: #f8fafc;
  --surface: #ffffff;
  --primary: #3b82f6;
  --secondary: #94a3b8;
  --accent: #14b8a6;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'calm-serene': {
  'background': '#f8fafc',  // bg-slate-50
  'surface': '#ffffff',  // bg-white
  'primary': '#3b82f6',  // text-blue-500
  'secondary': '#94a3b8',  // text-slate-400
  'accent': '#14b8a6',  // bg-teal-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

Why are blue tones calming?
Blue is associated with sky and water, triggering natural relaxation responses and lowering perceived stress levels.