moodColor Scheme

Mature Sophisticated

A sophisticated palette with refined neutrals and understated accents. Designed for audiences who value elegance over excitement.

#ffffff
#f8fafc
#0f172a
#64748b
#1d4ed8

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

Slate 900

Hex

#0f172a

Tailwind

text-slate-900

Role

secondary

Name

Slate 500

Hex

#64748b

Tailwind

text-slate-500

Role

accent

Name

Blue 700

Hex

#1d4ed8

Tailwind

bg-blue-700

Live Preview

Welcome Back

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

Design Rationale

Deep slate and measured grays create the visual equivalent of a tailored suit. Dark blue accents add authority without resorting to flashy decoration.

Use Cases

Wealth management firmsPremium publishersExecutive coaching

CSS Variables

CSS
:root {
  --background: #ffffff;
  --surface: #f8fafc;
  --primary: #0f172a;
  --secondary: #64748b;
  --accent: #1d4ed8;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'mature-sophisticated': {
  'background': '#ffffff',  // bg-white
  'surface': '#f8fafc',  // bg-slate-50
  'primary': '#0f172a',  // text-slate-900
  'secondary': '#64748b',  // text-slate-500
  'accent': '#1d4ed8',  // bg-blue-700
        },
      },
    },
  },
};

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 sophisticated?
Restraint, tonal subtlety, and dark neutrals with minimal accent color create a composed, worldly sophistication.