#FFAF2D Marigold

rgb(255, 175, 45)

Color conversions

HEX
#FFAF2D
RGB
rgb(255, 175, 45)
RGBA
rgba(255, 175, 45, 1)
HSL
hsl(37, 100%, 59%)
HSV / HSB
hsv(37, 82%, 100%)
CMYK
cmyk(0%, 31%, 82%, 0%)

Wide-gamut spaces

XYZ
xyz(57.048, 52.115, 9.537)
LAB
lab(77.35 19.4 72.13)
LCH
lch(77.35 74.69 74.95)
OKLAB
oklab(81.18% 0.0461 0.1541)
OKLCH
oklch(81.18% 0.1608 73.36)
Nearest name
Marigold

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

#ffaf2d1a

#ffaf2d33

#ffaf2d4d

#ffaf2d66

#ffaf2d80

#ffaf2d99

#ffaf2db3

#ffaf2dcc

#ffaf2de6

#ffaf2dff

Accessibility and contrast

On white

1.84:1

Body text Fail · Large text Fail

On black

11.42:1

Body text AAA · Large text AA

White-on-color contrast is 1.84: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-marigold: #ffaf2d;
  --color-marigold-rgb: 255 175 45;
  --color-marigold-hsl: 37 100% 59%;
  --color-marigold-oklch: 81.18% 0.1608 73.36;
}

.element {
  color: #ffaf2d;
  background-color: hsl(37, 100%, 59%);
  border: 1px solid rgb(255 175 45 / 40%);
}

SCSS

$marigold: #ffaf2d;
$marigold-light: #ffd796;
$marigold-dark: #805817;

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

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

LESS

@marigold: #ffaf2d;
@marigold-light: lighten(@marigold, 12%);
@marigold-dark: darken(@marigold, 12%);

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

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-marigold-50: #ffefd5;
  --color-marigold-100: #ffe7c0;
  --color-marigold-200: #ffdfab;
  --color-marigold-300: #ffcf81;
  --color-marigold-400: #ffbf57;
  --color-marigold-500: #ffaf2d;
  --color-marigold-600: #e69e29;
  --color-marigold-700: #b37a1f;
  --color-marigold-800: #805817;
  --color-marigold-900: #4d350e;
}

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

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

Bootstrap

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

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

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

Flutter

import 'package:flutter/material.dart';

const Color marigold = Color(0xFFFFAF2D);

// As a MaterialColor swatch
const MaterialColor marigoldSwatch = MaterialColor(0xFFFFAF2D, <int, Color>{
  50: Color(0xFFFFEFD5),
  100: Color(0xFFFFE7C0),
  200: Color(0xFFFFDFAB),
  300: Color(0xFFFFCF81),
  400: Color(0xFFFFBF57),
  500: Color(0xFFFFAF2D),
  600: Color(0xFFE69E29),
  700: Color(0xFFB37A1F),
  800: Color(0xFF805817),
  900: Color(0xFF4D350E),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #ffaf2d — Marigold
    static let marigold = Color(
        red: 1,
        green: 0.6863,
        blue: 0.1765
    )
}

// UIKit
extension UIColor {
    static let marigold = UIColor(
        red: 1,
        green: 0.6863,
        blue: 0.1765,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="marigold">#FFAF2D</color>
    <color name="marigold_translucent">#80FFAF2D</color>
</resources>

<!-- Jetpack Compose -->
val Marigold = Color(0xFFFFAF2D)

JavaScript

export const MARIGOLD = {
  hex: "#ffaf2d",
  rgb: [255, 175, 45],
  hsl: [37, 100, 59],
  oklch: "oklch(81.18% 0.1608 73.36)",
};

JSON tokens

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