industryColor Scheme

Legal Professional

A formal legal palette with deep navy and restrained accents. Projects authority, trustworthiness, and professional gravitas.

#ffffff
#f8fafc
#0f172a
#475569
#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 600

Hex

#475569

Tailwind

text-slate-600

Role

accent

Name

Blue 700

Hex

#1d4ed8

Tailwind

bg-blue-700

Live Preview

Welcome Back

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

Design Rationale

Near-black slate text on white conveys authority and seriousness expected in law. Blue-700 accents add a subtle touch of trust without undermining formality.

Use Cases

Law firm websitesLegal document platformsAttorney portfolios

CSS Variables

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

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'legal-professional': {
  'background': '#ffffff',  // bg-white
  'surface': '#f8fafc',  // bg-slate-50
  'primary': '#0f172a',  // text-slate-900
  'secondary': '#475569',  // text-slate-600
  '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

Why do law firms use conservative colors?
Conservative palettes project reliability and seriousness, which are essential qualities clients seek in legal representation.