#DBFCD4 Light Goldenrod Yellow

rgb(219, 252, 212)

Color conversions

HEX
#DBFCD4
RGB
rgb(219, 252, 212)
RGBA
rgba(219, 252, 212, 1)
HSL
hsl(110, 87%, 91%)
HSV / HSB
hsv(110, 16%, 99%)
CMYK
cmyk(13%, 0%, 16%, 1%)

Wide-gamut spaces

XYZ
xyz(75.905, 89.433, 75.538)
LAB
lab(95.76 -17.84 15.64)
LCH
lch(95.76 23.73 138.76)
OKLAB
oklab(95.7% -0.0484 0.0404)
OKLCH
oklch(95.7% 0.0631 140.18)
Nearest name
Light Goldenrod Yellow

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#dbfcd41a

#dbfcd433

#dbfcd44d

#dbfcd466

#dbfcd480

#dbfcd499

#dbfcd4b3

#dbfcd4cc

#dbfcd4e6

#dbfcd4ff

Accessibility and contrast

On white

1.11:1

Body text Fail · Large text Fail

On black

18.89:1

Body text AAA · Large text AA

White-on-color contrast is 1.11:1.

Color blindness preview

Protanopia

No red cones — ~1% of men

Protanomaly

Reduced red sensitivity — ~1% of men

Deuteranopia

No green cones — ~1% of men

Deuteranomaly

Reduced green sensitivity — ~5% of men

Tritanopia

No blue cones — very rare

Tritanomaly

Reduced blue sensitivity — very rare

Achromatopsia

No color perception — ~1 in 30,000

Achromatomaly

Partial color perception — rare

Meaning, psychology and brand usage

Growth, permission, and the language of success states

Green is the hue the eye resolves with the least effort, which makes it genuinely restful across large surfaces. It carries built-in permission semantics — confirm, proceed, healthy — so using it decoratively can create false affordances in an interface.

Nature, renewal, and wealth in Western markets, and paradise and faith across much of the Islamic world. It also carries strong finance connotations thanks to US currency.

Stable green pigments were historically difficult and often poisonous — Scheele's green was arsenic-based and killed the people who lived with its wallpaper. Viridian in the nineteenth century finally gave artists a safe, permanent green.

The default for sustainability, health, and finance. If your product also uses green for success feedback, shift the brand green's hue or chroma so the two never get confused.

Common industries: Sustainability, Healthcare, Finance, Food, Outdoor. Pairs well with warm cream for organic warmth, deep brown for heritage, coral for a modern accent.

Code exports

CSS

:root {
  --color-light-goldenrod-yellow: #dbfcd4;
  --color-light-goldenrod-yellow-rgb: 219 252 212;
  --color-light-goldenrod-yellow-hsl: 110 87% 91%;
  --color-light-goldenrod-yellow-oklch: 95.7% 0.0631 140.18;
}

.element {
  color: #dbfcd4;
  background-color: hsl(110, 87%, 91%);
  border: 1px solid rgb(219 252 212 / 40%);
}

SCSS

$light-goldenrod-yellow: #dbfcd4;
$light-goldenrod-yellow-light: #edfeea;
$light-goldenrod-yellow-dark: #6e7e6a;

.element {
  color: $light-goldenrod-yellow;
  background: rgba($light-goldenrod-yellow, 0.12);

  &:hover {
    color: darken($light-goldenrod-yellow, 8%);
  }
}

LESS

@light-goldenrod-yellow: #dbfcd4;
@light-goldenrod-yellow-light: lighten(@light-goldenrod-yellow, 12%);
@light-goldenrod-yellow-dark: darken(@light-goldenrod-yellow, 12%);

.element {
  color: @light-goldenrod-yellow;
  background: fade(@light-goldenrod-yellow, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-light-goldenrod-yellow-50: #f8fef6;
  --color-light-goldenrod-yellow-100: #f4fef2;
  --color-light-goldenrod-yellow-200: #f1feee;
  --color-light-goldenrod-yellow-300: #e9fde5;
  --color-light-goldenrod-yellow-400: #e2fddd;
  --color-light-goldenrod-yellow-500: #dbfcd4;
  --color-light-goldenrod-yellow-600: #c5e3bf;
  --color-light-goldenrod-yellow-700: #99b094;
  --color-light-goldenrod-yellow-800: #6e7e6a;
  --color-light-goldenrod-yellow-900: #424c40;
}

/* Usage */
<div class="bg-light-goldenrod-yellow-500 text-light-goldenrod-yellow-50 ring-light-goldenrod-yellow-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#dbfcd4]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$light-goldenrod-yellow: #dbfcd4;
$primary: $light-goldenrod-yellow;

$theme-colors: map-merge($theme-colors, (
  "light-goldenrod-yellow": $light-goldenrod-yellow
));

// Generates .text-light-goldenrod-yellow, .bg-light-goldenrod-yellow, .btn-light-goldenrod-yellow
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color lightGoldenrodYellow = Color(0xFFDBFCD4);

// As a MaterialColor swatch
const MaterialColor lightGoldenrodYellowSwatch = MaterialColor(0xFFDBFCD4, <int, Color>{
  50: Color(0xFFF8FEF6),
  100: Color(0xFFF4FEF2),
  200: Color(0xFFF1FEEE),
  300: Color(0xFFE9FDE5),
  400: Color(0xFFE2FDDD),
  500: Color(0xFFDBFCD4),
  600: Color(0xFFC5E3BF),
  700: Color(0xFF99B094),
  800: Color(0xFF6E7E6A),
  900: Color(0xFF424C40),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #dbfcd4 — Light Goldenrod Yellow
    static let lightGoldenrodYellow = Color(
        red: 0.8588,
        green: 0.9882,
        blue: 0.8314
    )
}

// UIKit
extension UIColor {
    static let lightGoldenrodYellow = UIColor(
        red: 0.8588,
        green: 0.9882,
        blue: 0.8314,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="light_goldenrod_yellow">#DBFCD4</color>
    <color name="light_goldenrod_yellow_translucent">#80DBFCD4</color>
</resources>

<!-- Jetpack Compose -->
val LightGoldenrodYellow = Color(0xFFDBFCD4)

JavaScript

export const LIGHT_GOLDENROD_YELLOW = {
  hex: "#dbfcd4",
  rgb: [219, 252, 212],
  hsl: [110, 87, 91],
  oklch: "oklch(95.7% 0.0631 140.18)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "light-goldenrod-yellow": {
    "$type": "color",
    "$value": "#dbfcd4",
    "$description": "Light Goldenrod Yellow — generated by ColorVerse AI"
  }
}