MSU Green

HEX: #18453B | Modern Palette

On White
10.75:1
PASS
On Black
1.95:1
FAIL

Color Specifications

HEX
#18453B
RGB
24, 69, 59
HSL
166°, 65% ,27%
CMYK
65.22, 0, 14.49, 72.94

About MSU Green

MSU Green (#18453B) is a color with RGB(24, 69, 59) and HSL(166.67°, 65.22%, 27.06%). It is commonly associated with Luxury moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #451822, which creates strong contrast. Its triadic palette includes #3B1845 and #453B18. The name comes from MSU Green (English).

  • HEX: #18453B
  • RGB: 24, 69, 59
  • HSL: 166.67°, 65.22%, 27.06%
  • Mood: Luxury
  • Style: Cool
  • Use case: Text, Button, Accent
  • Complementary color: #451822
  • Triadic colors: #3B1845, #453B18
  • The name comes from MSU Green (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 #18453B from deepest shade to lightest tint.

Color Characteristics

Mood
Luxury
Style
Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #3C3C3C
Protanopia #42423B
Tritanopia #1B4444
Achromatopsia #3E3E3E

Frequently Asked Questions

MSU Green (#18453B) is a color with RGB(24, 69, 59) and HSL(166.67°, 65.22%, 27.06%).

#18453B pairs strongly with #451822 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#18453B is suitable for Text, Button, Accent and works well with Cool styles.

#18453B is commonly associated with Luxury.

The name MSU Green is linked to MSU Green from English, meaning A specific shade of green associated with Michigan State University..

Name, History & Etymology

Origin Word MSU Green
Meaning A specific shade of green associated with Michigan State University.
Language English
First Recorded Use Early 20th Century

History

Michigan State University (MSU) adopted green and white as its official colors. The choice of green is often attributed to the university's agricultural roots and its sprawling campus, which was once known as Michigan Agricultural College. The specific shade, 'MSU Green' (often represented by hex #18453b), has been consistently used across all university branding, athletics, and merchandise for many decades. It is a deep, rich green that evokes nature and growth.

First Recorded Use

While the university was founded in 1855, the specific 'MSU Green' as a codified color likely emerged in the early 1900s as universities began to standardize their branding and athletic colors. The earliest official mention of 'green' as a university color dates back to 1899, but the precise shade would have been formalized later.

Cultural Associations

MSU Green is a deeply ingrained part of the identity for Michigan State University students, alumni, and fans. It is prominently featured in athletic uniforms, university logos, graduation regalia, and campus signage. Wearing MSU Green is a common way to show support for the university, especially during sporting events. The color is synonymous with the 'Spartans' nickname and the university's traditions.

Similar Named Colors

Brunswick Green #1B4D3E ΔE 3.26
Deep Jungle Green #004B49 ΔE 4.86
Warm Black #004242 ΔE 5.15
Rich Black #004040 ΔE 5.26

Code Snippets

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

/* Text */
.element {
    color: #18453B;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #18453B,
        #72182C
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #18453B,
        #72182C
    );
}

// SCSS variable
$msu-green: #18453B;

// With RGB channels (useful for rgba() usage)
$msu-green-r: 24;
$msu-green-g: 69;
$msu-green-b: 59;

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