What Color Is DCFADC?

The hex code #DCFADC produces a vivid very light green. It breaks down into RGB channels of 220 red, 250 green, and 220 blue, placing it firmly in the green color family. On the HSL model, it sits at 120° on the color wheel with 75% saturation — giving it a vibrant quality — and 92% lightness, making it very light. The perceived brightness is 93% (238/255), meaning dark text (#1a1a2e) will provide optimal readability when layered on top.

DCFADC Color Values

FormatValueUsage
HEX#DCFADCCSS, HTML, SVG
RGB220, 250, 220Screens, CSS, JavaScript
HSL120°, 75%, 92%CSS, Design tools
CMYK12%, 0%, 12%, 2%Print, packaging
Brightness93% (238/255)Accessibility checks
FamilygreenColor classification
TemperaturecoolDesign psychology

What Does DCFADC Mean in Design?

Green colors symbolize nature, growth, harmony, and renewal. As a very light variant with 75% saturation, #DCFADC carries a vibrant energy that makes it suitable for both primary and supporting roles in design systems. In color psychology, green tones are associated with calm and trustworthiness, making #DCFADC ideal for brands that need to project reliability and serenity.

Where to Use DCFADC — Practical Applications

Website hero sections — Use #DCFADC as a full-bleed background with dark text (#1a1a2e) overlay text for immediate visual impact on landing pages.
UI card backgrounds — Apply at 15% opacity (rgba(220, 250, 220, 0.15)) for subtle card surfaces that add depth without overwhelming content.
Button accent color — Set as the primary CTA button color with a darker hover state (#B0C8B0) for clear interactive feedback.
Brand identity systems — Anchor a brand palette with #DCFADC as the primary swatch, using #FADBFA as the complementary accent.
Data visualization — Use in chart legends and graph bars. Pair with #DBDBFA and #FADBDB for a triadic scheme that maximizes readability.
Social media templates — Create cohesive Instagram stories and LinkedIn banners using #DCFADC backgrounds with white typography overlays.
Email marketing headers — Apply as the top banner gradient from #DCFADC to #E5FBE5 for eye-catching newsletter designs.
Mobile app theming — Set as the navigation bar and status bar color on both iOS and Android for a consistent, branded mobile experience.

DCFADC Color Combinations

These are mathematically calculated color harmonies based on the 120° hue position of #DCFADC on the color wheel. Use them to build balanced, professional palettes.

Similar Colors to DCFADC

Colors visually close to #DCFADC with subtle variations in hue, saturation, or brightness. Useful for creating gradient transitions, hover states, and layered interface designs.

Tints and Shades of DCFADC

A tint is made by mixing #DCFADC with white (increasing lightness), while a shade is made by mixing with black (decreasing lightness). These variations are essential for creating depth, hierarchy, and interactive states in UI design.

Lighter 75%: #E5FBE5
Lighter 50%: #EEFCEE
Lighter 25%: #F6FEF6
Base Color: #DCFADC
Darker 20%: #B0C8B0
Darker 40%: #849684
Darker 60%: #586458

How to Use DCFADC in CSS

Copy-ready CSS code snippets for implementing #DCFADC in your stylesheets. Includes custom properties, gradients, and opacity variants.

.element {
    color: #DCFADC;
    background-color: #DCFADC;
    border: 2px solid #DCFADC;
    box-shadow: 0 4px 14px rgba(220, 250, 220, 0.35);
}

/* CSS Custom Property */
:root {
    --color-primary: #DCFADC;
    --color-primary-light: #E5FBE5;
    --color-primary-dark: #B0C8B0;
    --color-primary-rgb: 220, 250, 220;
}

/* Gradient example */
.gradient-bg {
    background: linear-gradient(135deg, #DCFADC 0%, #DBFAEB 100%);
}

/* RGBA with opacity */
.overlay {
    background: rgba(220, 250, 220, 0.15);
}

DCFADC in Design Systems

When integrating #DCFADC into a design system, define it as a semantic token: --color-green-very-light: #DCFADC;. For WCAG 2.1 AA compliance, pair it with dark text (#1a1a2e) for body text. The lighter tint #E5FBE5 works for subtle surface fills, while the darker shade #B0C8B0 is ideal for focus rings and active states. In Figma or Sketch, add it to your shared library as Green/Very-Light so the entire team references the single source of truth.

Accessibility Considerations for DCFADC

Since #DCFADC is a light color (brightness 93%), use dark text to meet WCAG 2.1 contrast requirements. A foreground of #1a1a2e on a #DCFADC background will pass AA for normal text and AAA for large text. Always test with tools like the ColorPickerCode contrast checker before shipping to production.

Frequently Asked Questions About DCFADC

What color is #DCFADC?
#DCFADC is a vivid very light green with RGB(220, 250, 220) and HSL(120°, 75%, 92%). It belongs to the green family.
What is the RGB value of DCFADC?
RGB(220, 250, 220). Red=220, Green=250, Blue=220. Each channel ranges from 0 to 255.
Is #DCFADC dark or light?
Perceived brightness is 238/255 (93%), classified as very light. Use dark text (#1a1a2e) for body text.
What is the CMYK of DCFADC?
CMYK: 12%, 0%, 12%, 2%. Use this for print reproduction of #DCFADC.
What colors go well with #DCFADC?
Complementary: #FADBFA. Analogous: #DBFAEB & #EBFADB. Triadic: #DBDBFA & #FADBDB.
How do I use DCFADC in CSS?
color: #DCFADC; for text, background-color: #DCFADC; for backgrounds, border: 2px solid #DCFADC; for borders.
What is the HSL of #DCFADC?
HSL: 120°, 75%, 92%. Hue 120°, saturation 75%, lightness 92%.
Can #DCFADC be used for branding?
Yes. Test in both RGB (screens) and CMYK (print). Pair with #1a1a2e for text. The green family projects trust and calm.