Skip to content

CSS named color

OrangeRed #FF4500

OrangeRed (CSS keyword orangered) has the hex code #FF4500 and the RGB value rgb(255, 69, 0): a medium, vivid red-orange.

OrangeRed#FF4500

A very saturated red-orange (#ff4500), closer to red than to orange. Its strength makes it common for alerts and "live" indicators.

Color codes for OrangeRed

Color codes for OrangeRed
CSS keywordorangered
HEX#FF4500
RGBrgb(255, 69, 0)
HSLhsl(16, 100%, 50%)
HWBhwb(16 0% 0%)
OKLCHoklch(66% 0.229 35.4)
CMYK (naive, no ICC profile)cmyk(0%, 73%, 100%, 0%)
Decimal16,729,344
Hue familyOranges

Contrast and accessibility

On orangered, black text has a contrast ratio of 6.10:1 and passes AA for normal text; white text reaches 3.44:1.

WCAG 2.2 contrast ratios (success criteria 1.4.3 and 1.4.6: AA needs 4.5:1 for normal text and 3:1 for large text, AAA needs 7:1 and 4.5:1). APCA Lc is the lightness contrast from the APCA-W3 0.0.98G model proposed for WCAG 3; a higher absolute value is more readable, and Lc 75 is its suggested minimum for body text.

Contrast and accessibility
PairRatioAAAA largeAAAAAA largeAPCA Lc
Black text on orangered6.10:1PassPassFailPass43.7
White text on orangered3.44:1FailPassFailFail−65.8
Orangered text on white3.44:1FailPassFailFail60.3
Orangered text on black6.10:1PassPassFailPass−41.4

Tints and shades

Each step mixes orangered with white (tints) or black (shades) in gamma-encoded sRGB, the same result as color-mix(in srgb, orangered, white 25%) in CSS.

Tints (mixed with white)

  1. 5%
    #ff4e0d
  2. 15%
    #ff6126
  3. 25%
    #ff7440
  4. 35%
    #ff8659
  5. 45%
    #ff9973
  6. 55%
    #ffab8c
  7. 65%
    #ffbea6
  8. 75%
    #ffd1bf
  9. 85%
    #ffe3d9
  10. 95%
    #fff6f2

Shades (mixed with black)

  1. 5%
    #f24200
  2. 15%
    #d93b00
  3. 25%
    #bf3400
  4. 35%
    #a62d00
  5. 45%
    #8c2600
  6. 55%
    #731f00
  7. 65%
    #591800
  8. 75%
    #401100
  9. 85%
    #260a00
  10. 95%
    #0d0300

Color harmonies

Rotating the hue in OKLCH while keeping lightness and chroma, orangered's complementary color is #00A6C7 (close to lightseagreen), its analogous colors are #FB3A7E and #D67800, and its triadic partners are #00B25C and #737FFF. For text on top, black gives the higher contrast.

Color harmonies
HarmonyRotationColor
Complementary+180°#00a6c7
Analogous−30°, +30°#fb3a7e#d67800
Triadic+120°, +240°#00b25c#737fff
Split-complementary+150°, +210°#00ac9e#0098ff

Computed in OKLCH: the hue is rotated by 180° (complementary), ±30° (analogous), ±120° (triadic) and 180° ±30° (split-complementary) while lightness and chroma stay fixed. Results that fall outside sRGB are brought back with the CSS Color 4 gamut mapping algorithm. Because this uses OKLCH, the values differ from tools that rotate hue in HSL, but every color keeps the same perceived lightness.

Warm or cool?

OrangeRed is a warm color: its hue is 16° on the HSL wheel, in the red, orange and yellow range (0° to about 70°, plus reds above 330°) that is conventionally called warm.

Nearest named and Tailwind colors

Distance is ΔE OK, the Euclidean distance in OKLab multiplied by 100. Values under about 2 are hard to tell apart side by side.

Nearest CSS named colors

Nearest CSS named colors
ColorHEXΔE OK
red#ff00005.0
tomato#ff63475.1
chocolate#d2691e9.3

Nearest Tailwind v4 colors

Nearest Tailwind v4 colors
ColorHEXΔE OK
orange-600#f549002.8
red-500#fb2c364.8
orange-500#ff69006.7

Code snippets

CSS
.element {
  color: orangered;
  background-color: #ff4500;
  border-color: rgb(255 69 0);
  outline-color: oklch(66% 0.229 35.4);
}
Tailwind CSS
<div class="bg-[#ff4500] text-black">...</div>

/* or register it once in your CSS (Tailwind v4) */
@theme {
  --color-orangered: #ff4500;
}
/* then use bg-orangered, text-orangered, border-orangered */
SwiftUI
import SwiftUI

extension Color {
  static let orangered = Color(red: 1.000, green: 0.271, blue: 0.000)
}
Jetpack Compose
import androidx.compose.ui.graphics.Color

val Orangered = Color(0xFFFF4500)
Flutter
import 'package:flutter/material.dart';

const orangered = Color(0xFFFF4500);
Android XML
<!-- res/values/colors.xml -->
<color name="orangered">#FF4500</color>

Frequently asked questions

What is the hex code for orangered?
The hex code for orangered is #FF4500. The same color is rgb(255, 69, 0), hsl(16, 100%, 50%) and oklch(66% 0.229 35.4), and in CSS you can also write the keyword orangered directly.
Is orangered a warm or cool color?
OrangeRed is a warm color: its hue is 16° on the HSL wheel, in the red, orange and yellow range (0° to about 70°, plus reds above 330°) that is conventionally called warm.
What colors go with orangered?
Rotating the hue in OKLCH while keeping lightness and chroma, orangered's complementary color is #00A6C7 (close to lightseagreen), its analogous colors are #FB3A7E and #D67800, and its triadic partners are #00B25C and #737FFF. For text on top, black gives the higher contrast.
Can you use white text on orangered?
White text on orangered has a contrast ratio of 3.44:1, which passes AA only for large text (24 px, or 18.66 px bold, and up) under WCAG 2.2. Black text reaches 6.10:1 and passes AA for normal text but not AAA. In APCA terms that is Lc −65.8 for white and Lc 43.7 for black.
What is the RGB value of orangered?
OrangeRed is rgb(255, 69, 0): red 255, green 69 and blue 0 on the 0 to 255 scale, or 100.0%, 27.1% and 0.0%. As a decimal integer it is 16729344.

Last reviewed by Arielton Oberek.