#FFD448 Mustard

rgb(255, 212, 72)

Color conversions

HEX
#FFD448
RGB
rgb(255, 212, 72)
RGBA
rgba(255, 212, 72, 1)
HSL
hsl(46, 100%, 64%)
HSV / HSB
hsv(46, 72%, 100%)
CMYK
cmyk(0%, 17%, 72%, 0%)

Wide-gamut spaces

XYZ
xyz(65.957, 68.819, 15.939)
LAB
lab(86.41 1.23 71.17)
LCH
lch(86.41 71.18 89.01)
OKLAB
oklab(88.34% -0.0036 0.1577)
OKLCH
oklch(88.34% 0.1577 91.3)
Nearest name
Mustard

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

#ffd4481a

#ffd44833

#ffd4484d

#ffd44866

#ffd44880

#ffd44899

#ffd448b3

#ffd448cc

#ffd448e6

#ffd448ff

Accessibility and contrast

On white

1.42:1

Body text Fail · Large text Fail

On black

14.76:1

Body text AAA · Large text AA

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

Optimism that demands careful contrast handling

Yellow is the most luminous hue, which makes it excellent for highlights and terrible for text. Its very high relative luminance means yellow type on white almost never reaches WCAG AA — always pair it with a dark surface or use it as a fill behind dark text.

Sunshine, caution, and intellect in most markets. In parts of Latin America it carries mourning associations, and in Japan it historically signalled courage.

Yellow ochre sits alongside red as one of the earliest pigments. Chrome yellow, beloved by Van Gogh, was toxic and prone to browning — modern replacements are stable but chemically unrelated.

Best as an accent or brand signature rather than a UI primary. When used at scale, anchor it with near-black type and generous white space so it reads confident rather than cheap.

Common industries: Retail, Energy, Children's products, Delivery, Agriculture. Pairs well with near-black for legibility, deep violet for a modern contrast, white for airiness.

Code exports

CSS

:root {
  --color-mustard: #ffd448;
  --color-mustard-rgb: 255 212 72;
  --color-mustard-hsl: 46 100% 64%;
  --color-mustard-oklch: 88.34% 0.1577 91.3;
}

.element {
  color: #ffd448;
  background-color: hsl(46, 100%, 64%);
  border: 1px solid rgb(255 212 72 / 40%);
}

SCSS

$mustard: #ffd448;
$mustard-light: #ffeaa4;
$mustard-dark: #806a24;

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

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

LESS

@mustard: #ffd448;
@mustard-light: lighten(@mustard, 12%);
@mustard-dark: darken(@mustard, 12%);

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

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-mustard-50: #fff6da;
  --color-mustard-100: #fff2c8;
  --color-mustard-200: #ffeeb6;
  --color-mustard-300: #ffe591;
  --color-mustard-400: #ffdd6d;
  --color-mustard-500: #ffd448;
  --color-mustard-600: #e6bf41;
  --color-mustard-700: #b39432;
  --color-mustard-800: #806a24;
  --color-mustard-900: #4d4016;
}

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

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

Bootstrap

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

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

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

Flutter

import 'package:flutter/material.dart';

const Color mustard = Color(0xFFFFD448);

// As a MaterialColor swatch
const MaterialColor mustardSwatch = MaterialColor(0xFFFFD448, <int, Color>{
  50: Color(0xFFFFF6DA),
  100: Color(0xFFFFF2C8),
  200: Color(0xFFFFEEB6),
  300: Color(0xFFFFE591),
  400: Color(0xFFFFDD6D),
  500: Color(0xFFFFD448),
  600: Color(0xFFE6BF41),
  700: Color(0xFFB39432),
  800: Color(0xFF806A24),
  900: Color(0xFF4D4016),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #ffd448 — Mustard
    static let mustard = Color(
        red: 1,
        green: 0.8314,
        blue: 0.2824
    )
}

// UIKit
extension UIColor {
    static let mustard = UIColor(
        red: 1,
        green: 0.8314,
        blue: 0.2824,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="mustard">#FFD448</color>
    <color name="mustard_translucent">#80FFD448</color>
</resources>

<!-- Jetpack Compose -->
val Mustard = Color(0xFFFFD448)

JavaScript

export const MUSTARD = {
  hex: "#ffd448",
  rgb: [255, 212, 72],
  hsl: [46, 100, 64],
  oklch: "oklch(88.34% 0.1577 91.3)",
};

JSON tokens

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