#F2CDAC Apricot

rgb(242, 205, 172)

Color conversions

HEX
#F2CDAC
RGB
rgb(242, 205, 172)
RGBA
rgba(242, 205, 172, 1)
HSL
hsl(28, 73%, 81%)
HSV / HSB
hsv(28, 29%, 95%)
CMYK
cmyk(0%, 15%, 29%, 5%)

Wide-gamut spaces

XYZ
xyz(65.897, 65.521, 48.197)
LAB
lab(84.75 8.26 21.29)
LCH
lch(84.75 22.83 68.79)
OKLAB
oklab(87.17% 0.0269 0.0543)
OKLCH
oklch(87.17% 0.0606 63.63)
Nearest name
Apricot

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

#f2cdac1a

#f2cdac33

#f2cdac4d

#f2cdac66

#f2cdac80

#f2cdac99

#f2cdacb3

#f2cdaccc

#f2cdace6

#f2cdacff

Accessibility and contrast

On white

1.49:1

Body text Fail · Large text Fail

On black

14.1:1

Body text AAA · Large text AA

White-on-color contrast is 1.49: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

Friendly energy without red's alarm

Orange reads as enthusiastic and affordable. It converts well on calls to action because it is highly visible yet lacks red's threat association. At low saturation it becomes terracotta and shifts from playful to crafted and earthy.

Associated with harvest, warmth, and creativity in Western markets, and with sacred devotion in India where saffron carries religious weight.

The colour had no English name until the fruit arrived in the sixteenth century — before that it was 'geoluread', yellow-red. Modern brand orange owes its ubiquity to inexpensive azo pigments.

Strong for developer tools, logistics, and value-focused consumer brands. Pair with a dark neutral rather than another warm hue to avoid a Halloween reading.

Common industries: Technology, Logistics, Fitness, Construction, Family retail. Pairs well with deep teal for balance, off-black for contrast, sand for a natural palette.

Code exports

CSS

:root {
  --color-apricot: #f2cdac;
  --color-apricot-rgb: 242 205 172;
  --color-apricot-hsl: 28 73% 81%;
  --color-apricot-oklch: 87.17% 0.0606 63.63;
}

.element {
  color: #f2cdac;
  background-color: hsl(28, 73%, 81%);
  border: 1px solid rgb(242 205 172 / 40%);
}

SCSS

$apricot: #f2cdac;
$apricot-light: #f9e6d6;
$apricot-dark: #796756;

.element {
  color: $apricot;
  background: rgba($apricot, 0.12);

  &:hover {
    color: darken($apricot, 8%);
  }
}

LESS

@apricot: #f2cdac;
@apricot-light: lighten(@apricot, 12%);
@apricot-dark: darken(@apricot, 12%);

.element {
  color: @apricot;
  background: fade(@apricot, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-apricot-50: #fcf5ee;
  --color-apricot-100: #fbf0e6;
  --color-apricot-200: #faebde;
  --color-apricot-300: #f7e1cd;
  --color-apricot-400: #f5d7bd;
  --color-apricot-500: #f2cdac;
  --color-apricot-600: #dab99b;
  --color-apricot-700: #a99078;
  --color-apricot-800: #796756;
  --color-apricot-900: #493e34;
}

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

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

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$apricot: #f2cdac;
$primary: $apricot;

$theme-colors: map-merge($theme-colors, (
  "apricot": $apricot
));

// Generates .text-apricot, .bg-apricot, .btn-apricot
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color apricot = Color(0xFFF2CDAC);

// As a MaterialColor swatch
const MaterialColor apricotSwatch = MaterialColor(0xFFF2CDAC, <int, Color>{
  50: Color(0xFFFCF5EE),
  100: Color(0xFFFBF0E6),
  200: Color(0xFFFAEBDE),
  300: Color(0xFFF7E1CD),
  400: Color(0xFFF5D7BD),
  500: Color(0xFFF2CDAC),
  600: Color(0xFFDAB99B),
  700: Color(0xFFA99078),
  800: Color(0xFF796756),
  900: Color(0xFF493E34),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #f2cdac — Apricot
    static let apricot = Color(
        red: 0.949,
        green: 0.8039,
        blue: 0.6745
    )
}

// UIKit
extension UIColor {
    static let apricot = UIColor(
        red: 0.949,
        green: 0.8039,
        blue: 0.6745,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="apricot">#F2CDAC</color>
    <color name="apricot_translucent">#80F2CDAC</color>
</resources>

<!-- Jetpack Compose -->
val Apricot = Color(0xFFF2CDAC)

JavaScript

export const APRICOT = {
  hex: "#f2cdac",
  rgb: [242, 205, 172],
  hsl: [28, 73, 81],
  oklch: "oklch(87.17% 0.0606 63.63)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "apricot": {
    "$type": "color",
    "$value": "#f2cdac",
    "$description": "Apricot — generated by ColorVerse AI"
  }
}