HSL(45, 100%, 50%)

Vivid Yellow — Yellow color

Adjust Color

Color Information

Color Name

Vivid Yellow

Color Family

Yellow

Warm / Cool

🔴 Warm

Temperature

2700K

CSS Class

bg-[hsl(45,100%,50%)]

Color Conversions

Format Value CSS Usage
HSL hsl(45, 100%, 50%) color: hsl(45, 100%, 50%)
HEX #FFBF00 color: #FFBF00
RGB rgb(255, 191, 0) color: rgb(255, 191, 0)
CMYK cmyk(0%, 25%, 100%, 0%)
HSV hsv(45, 100%, 100%)
HWB hwb(45 0% 0%) color: hwb(45 0% 0%)
OKLCH oklch(0.8403 0.1724 84.08) color: oklch(0.8403 0.1724 84.08)
Lab lab(81.03 10.39 83.03) color: lab(81.03 10.39 83.03)
LCH lch(81.03 83.68 82.87) color: lch(81.03 83.68 82.87)

Color Theory

Complementary

Triadic

Analogous

Tetradic (Square)

Split-Complementary

Accessibility (WCAG)

White text on color

Black text on color

Color on white bg

Colored text

Contrast Ratios

vs White 1.65:1
vs Black 12.7:1

AA Normal (4.5:1)

on White: FAIL ✗ on Black: PASS ✓

AA Large (3:1)

on White: FAIL ✗ on Black: PASS ✓

AAA Normal (7:1)

on White: FAIL ✗

Best text on this color: black

Color Blindness Simulation

Protanopia (Red-blind)

#E3E32E — rgb(227, 227, 46)

Deuteranopia (Green-blind)

#E7EC39 — rgb(231, 236, 57)

Tritanopia (Blue-blind)

#FC535B — rgb(252, 83, 91)

Tints & Shades

Tints (Lighter →)

← Shades (Darker)

Saturation (0% → 100%)

CSS Code Snippets

background

background-color: hsl(45, 100%, 50%);

text

color: hsl(45, 100%, 50%);

border

border: 2px solid hsl(45, 100%, 50%);

gradient light

background: linear-gradient(to right, hsl(45, 100%, 70%), hsl(45, 100%, 50%));

gradient dark

background: linear-gradient(to right, hsl(45, 100%, 50%), hsl(45, 100%, 30%))

hex

background-color: #FFBF00;

tailwind

bg-[hsl(45,100%,50%)]

box shadow

box-shadow: 0 4px 6px -1px hsl(45, 100%, 50%, 0.4);

css variable

--color-primary: hsl(45, 100%, 50%);

Related Colors

Use Cases for Vivid Yellow

Warnings Highlights Attention indicators Optimistic brands Note/sticky elements

Frequently Asked Questions

What are all the color codes for HSL(45, 100%, 50%)?

HEX: #FFBF00 | RGB: rgb(255, 191, 0) | CMYK: 0%, 25%, 100%, 0% | HSV: 45°, 100%, 100%. Copy any format from the conversion table above.

What colors go well with #FFBF00?

The complementary color is HSL(225, 100%, 50%). For a triadic harmony, use hues 45°, 165°, and 285°. For analogous combinations, try hues 15° and 75°. See the Color Harmony section above for complete palettes with previews.

How do I use HSL(45, 100%, 50%) in CSS?

As HSL: color: hsl(45, 100%, 50%); — As HEX: color: #FFBF00; — As RGB: color: rgb(255, 191, 0); — Tailwind CSS: bg-[hsl(45,100%,50%)] — CSS variable: --color-primary: hsl(45, 100%, 50%);