Celadon Green

HEX: #2F847C | Modern Palette

On White
4.46:1
FAIL
On Black
4.71:1
PASS

Color Specifications

HEX
#2F847C
RGB
47, 132, 124
HSL
174°, 64% ,51%
CMYK
64.39, 0, 6.06, 48.24

About Celadon Green

Celadon Green (#2F847C) is a color with RGB(47, 132, 124) and HSL(174.35°, 64.39%, 51.76%). In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #842F37, which creates strong contrast. Its triadic palette includes #7C2F84 and #847C2F. The name comes from Céladon (French).

  • HEX: #2F847C
  • RGB: 47, 132, 124
  • HSL: 174.35°, 64.39%, 51.76%
  • Style: Cool
  • Use case: Text, Button, Accent
  • Complementary color: #842F37
  • Triadic colors: #7C2F84, #847C2F
  • The name comes from Céladon (French).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #2F847C from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #73737D
Protanopia #7E7E7C
Tritanopia #328383
Achromatopsia #777777

Frequently Asked Questions

Celadon Green (#2F847C) is a color with RGB(47, 132, 124) and HSL(174.35°, 64.39%, 51.76%).

#2F847C pairs strongly with #842F37 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#2F847C is suitable for Text, Button, Accent and works well with Cool styles.

The name Celadon Green is linked to Céladon from French, meaning A character in Honoré d'Urfé's 17th-century pastoral novel 'L'Astrée'.

Name, History & Etymology

Origin Word Céladon
Meaning A character in Honoré d'Urfé's 17th-century pastoral novel 'L'Astrée'
Language French
First Recorded Use 17th Century

History

Celadon refers to a specific type of ceramic glaze, typically a pale grey-green, but also encompassing other shades of green, blue, and even brown. This glaze was developed in China during the Han Dynasty (206 BC – 220 AD) and perfected during the Song Dynasty (960–1279 AD). Chinese celadon ware was highly prized and exported across Asia, the Middle East, and later to Europe. The French term 'céladon' for the color and glaze is believed to have been coined in the 17th century, linking the distinctive pale green hue to the ribbons worn by the shepherd Céladon in the popular French novel 'L'Astrée'. The character Céladon was known for his gentle nature and his love for Astrée, and his green attire became synonymous with a particular shade of green. The color 'Celadon Green' (#2f847c) is a modern interpretation of this historical color, often a deeper, more saturated green than some traditional celadon glazes, but still evoking the same natural, serene qualities.

First Recorded Use

The term 'celadon' for the color and pottery glaze emerged in the 17th century, inspired by the character Céladon who wore pale green ribbons.

Cultural Associations

Celadon pottery holds immense cultural significance, particularly in East Asia. In China, it symbolized purity, nature, and the scholar's aesthetic. Korean celadon (Goryeo celadon) is renowned for its exquisite inlay techniques and jade-like quality. In Japan, celadon ware was also highly valued, influencing local ceramic traditions. The color itself is often associated with tranquility, nature, and sophistication. In Western culture, 'celadon' evokes a sense of antique elegance and a connection to Asian art and history.

Similar Named Colors

Teal Green #00827F ΔE 3.00
Teal #008080 ΔE 4.04
Dark Cyan #008B8B ΔE 4.45
Myrtle Green #317873 ΔE 4.55

Code Snippets

/* Background */
.element {
    background-color: #2F847C;
}

/* Text */
.element {
    color: #2F847C;
}

/* Border */
.element {
    border: 1px solid #2F847C;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #2F847C,
        #D33544
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #2F847C,
        #D33544
    );
}

// SCSS variable
$celadon-green: #2F847C;

// With RGB channels (useful for rgba() usage)
$celadon-green-r: 47;
$celadon-green-g: 132;
$celadon-green-b: 124;

// Usage
.element {
    background-color: $celadon-green;
    color: rgba($celadon-green-r, $celadon-green-g, $celadon-green-b, 0.8);
}