moodColor Scheme

Friendly Approachable

A friendly and approachable palette with warm, inviting colors. Makes users feel welcome and lowers barriers to engagement.

#ffffff
#fafafa
#f97316
#6b7280
#3b82f6

Color Breakdown

Role

background

Name

White

Hex

#ffffff

Tailwind

bg-white

Role

surface

Name

Zinc 50

Hex

#fafafa

Tailwind

bg-zinc-50

Role

primary

Name

Orange 500

Hex

#f97316

Tailwind

text-orange-500

Role

secondary

Name

Gray 500

Hex

#6b7280

Tailwind

text-gray-500

Role

accent

Name

Blue 500

Hex

#3b82f6

Tailwind

bg-blue-500

Live Preview

Welcome Back

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

Design Rationale

Warm orange feels approachable and energetic without being aggressive. Blue accents add trustworthiness to balance the friendly warmth.

Use Cases

Community platformsCustomer support portalsOnboarding flows

CSS Variables

CSS
:root {
  --background: #ffffff;
  --surface: #fafafa;
  --primary: #f97316;
  --secondary: #6b7280;
  --accent: #3b82f6;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'friendly-approachable': {
  'background': '#ffffff',  // bg-white
  'surface': '#fafafa',  // bg-zinc-50
  'primary': '#f97316',  // text-orange-500
  'secondary': '#6b7280',  // text-gray-500
  'accent': '#3b82f6',  // bg-blue-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 make a brand feel approachable?
Warm colors like orange combined with clean layouts and blue trust accents create the most inviting, friendly experiences.