Cal Poly Pomona Green
HEX: #1E4D2B | Modern Palette
Color Specifications
#1E4D2B
30, 77, 43
136°, 61% ,30%
61.04, 0, 44.16, 69.8
About Cal Poly Pomona Green
Cal Poly Pomona Green (#1E4D2B) is a color with RGB(30, 77, 43) and HSL(136.6°, 61.04%, 30.2%). In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #4D1E40, which creates strong contrast. Its triadic palette includes #2B1E4D and #4D2B1E. The name comes from Cal Poly Pomona Green (English).
- HEX: #1E4D2B
- RGB: 30, 77, 43
- HSL: 136.6°, 61.04%, 30.2%
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #4D1E40
- Triadic colors: #2B1E4D, #4D2B1E
- The name comes from Cal Poly Pomona Green (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 #1E4D2B from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Cal Poly Pomona, founded in 1938, adopted green and gold as its official colors. 'Cal Poly Pomona Green' (and its specific hex code #1e4d2b) represents the precise shade of green used in official university branding, logos, merchandise, and publications. The standardization of such colors is crucial for maintaining a consistent institutional identity across various media and applications. This specific hex code ensures that the green appears the same whether on a website, a printed brochure, or a sports uniform.
First Recorded Use
Likely established as an official color during the university's branding efforts, possibly in the mid to late 20th century, or refined with the advent of digital color standards.
Cultural Associations
As an official university color, 'Cal Poly Pomona Green' is a significant part of the institution's visual identity and culture. It is prominently featured in: - **Athletics:** Worn by sports teams (the Broncos) and seen in stadium branding. - **Academic Regalia:** Incorporated into graduation gowns, stoles, and other academic attire. - **Branding & Marketing:** Used in all official communications, websites, and promotional materials. - **Campus Environment:** Often seen in signage, landscaping elements, and architectural details. It evokes a sense of pride, tradition, and belonging among students, alumni, faculty, and staff.
Code Snippets
/* Background */
.element {
background-color: #1E4D2B;
}
/* Text */
.element {
color: #1E4D2B;
}
/* Border */
.element {
border: 1px solid #1E4D2B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#1E4D2B,
#7C1E62
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#1E4D2B,
#7C1E62
);
}
// SCSS variable
$cal-poly-pomona-green: #1E4D2B;
// With RGB channels (useful for rgba() usage)
$cal-poly-pomona-green-r: 30;
$cal-poly-pomona-green-g: 77;
$cal-poly-pomona-green-b: 43;
// Usage
.element {
background-color: $cal-poly-pomona-green;
color: rgba($cal-poly-pomona-green-r, $cal-poly-pomona-green-g, $cal-poly-pomona-green-b, 0.8);
}