KU Crimson
HEX: #E8000D | Modern Palette
Color Specifications
#E8000D
232, 0, 13
356°, 100% ,45%
0, 100, 94, 9
About KU Crimson
KU Crimson (#E8000D) is a color with RGB(232, 0, 13) and HSL(356.6°, 100%, 45.5%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #00E8DB, which creates strong contrast. Its triadic palette includes #0DE800 and #000DE8. The name comes from Crimson (English).
- HEX: #E8000D
- RGB: 232, 0, 13
- HSL: 356.6°, 100%, 45.5%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00E8DB
- Triadic colors: #0DE800, #000DE8
- The name comes from 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 #E8000D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The selection of crimson and blue for the University of Kansas (KU) has a specific origin story. In 1890, a committee was formed to choose official colors. One popular account attributes the choice to two students: George Penny and William Johnson. Penny, a Harvard graduate, suggested crimson, while Johnson, a Yale graduate, suggested blue. The combination was approved, and the specific shade of crimson, often referred to as 'KU Crimson' or 'Jayhawk Crimson,' has become a strong identifier for the university. It is prominently featured in the university's athletic teams (the Jayhawks), academic regalia, and branding.
First Recorded Use
The University of Kansas officially adopted crimson and blue as its colors in 1890.
Cultural Associations
KU Crimson is deeply ingrained in the identity of the University of Kansas. It is a symbol of school spirit, pride, and tradition. Fans of the KU Jayhawks sports teams are often seen wearing crimson apparel. The color is synonymous with the university's athletic success, particularly in basketball. Beyond sports, it represents the academic excellence and history of the institution. The phrase 'Rock Chalk Jayhawk, KU!' is often chanted, with crimson being a visual representation of the 'KU' identity.
Code Snippets
/* Background */
.element {
background-color: #E8000D;
}
/* Text */
.element {
color: #E8000D;
}
/* Border */
.element {
border: 1px solid #E8000D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E8000D,
#00E8DB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E8000D,
#00E8DB
);
}
// SCSS variable
$ku-crimson: #E8000D;
// With RGB channels (useful for rgba() usage)
$ku-crimson-r: 232;
$ku-crimson-g: 0;
$ku-crimson-b: 13;
// Usage
.element {
background-color: $ku-crimson;
color: rgba($ku-crimson-r, $ku-crimson-g, $ku-crimson-b, 0.8);
}