styleColor Scheme

Earthy Natural

A natural earthy palette inspired by soil, stone, and vegetation. Creates a grounded, organic feel connected to nature.

#fafafa
#ffffff
#059669
#f59e0b
#ea580c

Color Breakdown

Role

background

Name

Zinc 50

Hex

#fafafa

Tailwind

bg-zinc-50

Role

surface

Name

White

Hex

#ffffff

Tailwind

bg-white

Role

primary

Name

Emerald 600

Hex

#059669

Tailwind

text-emerald-600

Role

secondary

Name

Amber 500

Hex

#f59e0b

Tailwind

text-amber-500

Role

accent

Name

Orange 600

Hex

#ea580c

Tailwind

bg-orange-600

Live Preview

Welcome Back

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

Design Rationale

Emerald and amber mirror forest canopies and autumn foliage. Orange accents add the warmth of sunlit earth and clay.

Use Cases

Organic food brandsEco-friendly productsNature retreats

CSS Variables

CSS
:root {
  --background: #fafafa;
  --surface: #ffffff;
  --primary: #059669;
  --secondary: #f59e0b;
  --accent: #ea580c;
}

Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'earthy-natural': {
  'background': '#fafafa',  // bg-zinc-50
  'surface': '#ffffff',  // bg-white
  'primary': '#059669',  // text-emerald-600
  'secondary': '#f59e0b',  // text-amber-500
  'accent': '#ea580c',  // bg-orange-600
        },
      },
    },
  },
};

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 feel most natural?
Greens, browns, ambers, and warm oranges mimic landscapes and natural materials, creating an organic visual experience.