styleColor Scheme

Glassmorphism Blue

A translucent glassmorphism palette with frosted blues and soft backdrops. Designed for layered glass-effect UI components.

#2563eb
#ffffff
#ffffff
#f8fafc
#6366f1

Color Breakdown

Role

background

Name

Blue 600

Hex

#2563eb

Tailwind

bg-blue-600

Role

surface

Name

White

Hex

#ffffff

Tailwind

bg-white

Role

primary

Name

White

Hex

#ffffff

Tailwind

text-white

Role

secondary

Name

Slate 50

Hex

#f8fafc

Tailwind

text-slate-50

Role

accent

Name

Indigo 500

Hex

#6366f1

Tailwind

bg-indigo-500

Live Preview

Welcome Back

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

Design Rationale

Vibrant blue backgrounds show through frosted white glass surfaces. Indigo accents provide depth for interactive elements behind the translucent layers.

Use Cases

Modern dashboardsiOS-style interfacesGlass-effect cards

CSS Variables

CSS
:root {
  --background: #2563eb;
  --surface: #ffffff;
  --primary: #ffffff;
  --secondary: #f8fafc;
  --accent: #6366f1;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'glassmorphism-blue': {
  'background': '#2563eb',  // bg-blue-600
  'surface': '#ffffff',  // bg-white
  'primary': '#ffffff',  // text-white
  'secondary': '#f8fafc',  // text-slate-50
  'accent': '#6366f1',  // bg-indigo-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 is glassmorphism?
Glassmorphism uses semi-transparent backgrounds with blur effects to create frosted glass UI elements that show layers beneath them.