Alabama Crimson
HEX: #AF002A | Modern Palette
Color Specifications
#AF002A
175, 0, 42
345°, 100% ,68%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}