North Texas Green

HEX: #059033 | Modern Palette

On White
4.16:1
FAIL
On Black
5.04:1
PASS

Color Specifications

HEX
#059033
RGB
5, 144, 51
HSL
139°, 96% ,56%
CMYK
96.53, 0, 64.58, 43.53

About North Texas Green

North Texas Green (#059033) is a color with RGB(5, 144, 51) and HSL(139.86°, 96.53%, 56.47%). It is commonly associated with Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #900562, which creates strong contrast. Its triadic palette includes #330590 and #903305. The name comes from North Texas Green (English).

  • HEX: #059033
  • RGB: 5, 144, 51
  • HSL: 139.86°, 96.53%, 56.47%
  • Mood: Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #900562
  • Triadic colors: #330590, #903305
  • The name comes from North Texas 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 #059033 from deepest shade to lightest tint.

Color Characteristics

Mood
Bold
Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #7B7B38
Protanopia #898932
Tritanopia #348888
Achromatopsia #7C7C7C

Frequently Asked Questions

North Texas Green (#059033) is a color with RGB(5, 144, 51) and HSL(139.86°, 96.53%, 56.47%).

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

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

#059033 is commonly associated with Bold.

The name North Texas Green is linked to North Texas Green from English, meaning A specific shade of green associated with the North Texas region..

Name, History & Etymology

Origin Word North Texas Green
Meaning A specific shade of green associated with the North Texas region.
Language English
First Recorded Use Late 20th Century - Early 21st Century

History

The color 'North Texas Green' (hex #059033) is most famously and widely recognized as the primary color for the University of North Texas (UNT) athletics and branding. UNT officially adopted this specific shade of green as part of its brand identity. Before this specific hex code became standardized, UNT's colors were generally 'green and white,' but the exact shade of green could vary. The standardization of 'North Texas Green' with a specific hex code reflects a modern approach to brand consistency across digital and print media. Its adoption by UNT has led to its broader association with the North Texas region, especially in contexts related to education, sports, and local pride.

First Recorded Use

While the concept of 'green' is ancient, the specific naming and popularization of 'North Texas Green' as a distinct color, particularly with the hex code #059033, likely emerged in the late 20th or early 21st century. It's often associated with branding for local sports teams, universities, or regional identity initiatives.

Cultural Associations

This color holds significant cultural weight in the North Texas region, primarily due to its strong association with the University of North Texas. It evokes feelings of local pride, academic achievement, and athletic spirit for alumni, students, and residents. It's commonly seen on apparel, merchandise, university buildings, and sports venues. Beyond UNT, other local businesses or organizations might use similar shades to subtly align themselves with the regional identity fostered by the university.

Similar Named Colors

Forest Green #228B22 ΔE 3.05
Islamic Green #009000 ΔE 4.69
India Green #138808 ΔE 5.00
May Green #4C9141 ΔE 5.08

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #059033,
        #FB25B4
    );
}

// SCSS variable
$north-texas-green: #059033;

// With RGB channels (useful for rgba() usage)
$north-texas-green-r: 5;
$north-texas-green-g: 144;
$north-texas-green-b: 51;

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