Alabama Crimson

HEX: #AF002A | Modern Palette

On White
7.35:1
PASS
On Black
2.86:1
FAIL

Color Specifications

HEX
#AF002A
RGB
175, 0, 42
HSL
345°, 100% ,68%
CMYK
0, 100, 76, 31.37

About Alabama Crimson

Alabama Crimson (#AF002A) is a color with RGB(175, 0, 42) and HSL(345.6°, 100%, 68.63%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #00AF85, which creates strong contrast. Its triadic palette includes #2AAF00 and #002AAF. The name comes from Alabama Crimson (English).

  • HEX: #AF002A
  • RGB: 175, 0, 42
  • HSL: 345.6°, 100%, 68.63%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #00AF85
  • Triadic colors: #2AAF00, #002AAF
  • The name comes from Alabama Crimson (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #AF002A from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #63631F
Protanopia #3D3D2C
Tritanopia #AE0A0A
Achromatopsia #565656

Frequently Asked Questions

Alabama Crimson (#AF002A) is a color with RGB(175, 0, 42) and HSL(345.6°, 100%, 68.63%).

#AF002A pairs strongly with #00AF85 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#AF002A is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#AF002A is commonly associated with Energetic, Bold.

The name Alabama Crimson is linked to Alabama Crimson from English, meaning A specific shade of red associated with the University of Alabama..

Name, History & Etymology

Origin Word Alabama Crimson
Meaning A specific shade of red associated with the University of Alabama.
Language English
First Recorded Use Early 20th Century

History

The University of Alabama officially adopted crimson and white as its colors in 1886. The choice was reportedly made by William G. Little, a player on the university's first football team, and his girlfriend, who were inspired by the colors of Harvard University. The specific shade of crimson has evolved over time, but the association with the university and its athletic prowess, particularly in football, has solidified 'Alabama Crimson' as a distinct and recognizable color. The nickname 'Crimson Tide' was coined by sports editor Hugh Roberts of the Birmingham Age-Herald after a particularly muddy football game against Auburn in 1907, where Alabama's white jerseys were stained crimson.

First Recorded Use

The exact first use of 'Alabama Crimson' as a formal color name is difficult to pinpoint, but the color itself became prominent with the University of Alabama's athletic teams in the early 1900s. The university's athletic teams were first called 'Crimson White' in 1893, referring to the school colors. The 'Crimson Tide' nickname emerged around 1907-1908.

Cultural Associations

Alabama Crimson is deeply ingrained in the culture of Alabama, particularly in relation to the University of Alabama and its highly successful athletic programs, most notably football. It symbolizes pride, tradition, and fierce loyalty among fans and alumni. The color is ubiquitous in the state, appearing on merchandise, apparel, and decorations, especially during football season. It represents a significant part of the state's identity and is often associated with the 'Roll Tide' chant.

Similar Named Colors

Upsdell Red #AE2029 ΔE 3.15
Crimson Glory #BE0032 ΔE 3.17
Japanese Carmine #9D2933 ΔE 4.10
Red (NCS) #C40233 ΔE 4.33

Code Snippets

/* Background */
.element {
    background-color: #AF002A;
}

/* Text */
.element {
    color: #AF002A;
}

/* Border */
.element {
    border: 1px solid #AF002A;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #AF002A,
        #5FFFD9
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #AF002A,
        #5FFFD9
    );
}

// SCSS variable
$alabama-crimson: #AF002A;

// With RGB channels (useful for rgba() usage)
$alabama-crimson-r: 175;
$alabama-crimson-g: 0;
$alabama-crimson-b: 42;

// Usage
.element {
    background-color: $alabama-crimson;
    color: rgba($alabama-crimson-r, $alabama-crimson-g, $alabama-crimson-b, 0.8);
}