La Salle Green

HEX: #087830 | Modern Palette

On White
5.62:1
PASS
On Black
3.74:1
FAIL

Color Specifications

HEX
#087830
RGB
8, 120, 48
HSL
141°, 93% ,47%
CMYK
93.33, 0, 60, 52.94

About La Salle Green

La Salle Green (#087830) is a color with RGB(8, 120, 48) and HSL(141.43°, 93.33%, 47.06%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #780850, which creates strong contrast. Its triadic palette includes #300878 and #783008. The name comes from La Salle Green (English).

  • HEX: #087830
  • RGB: 8, 120, 48
  • HSL: 141.43°, 93.33%, 47.06%
  • Mood: Bold
  • Style: Vivid, Cool
  • Use case: Text, Button, Accent
  • Complementary color: #780850
  • Triadic colors: #300878, #783008
  • The name comes from La Salle 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 #087830 from deepest shade to lightest tint.

Color Characteristics

Mood
Bold
Style
Vivid Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #666633
Protanopia #72722F
Tritanopia #2A7272
Achromatopsia #676767

Frequently Asked Questions

La Salle Green (#087830) is a color with RGB(8, 120, 48) and HSL(141.43°, 93.33%, 47.06%).

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

#087830 is suitable for Text, Button, Accent and works well with Vivid, Cool styles.

#087830 is commonly associated with Bold.

The name La Salle Green is linked to La Salle Green from English, meaning A specific shade of green associated with the De La Salle Brothers and institutions..

Name, History & Etymology

Origin Word La Salle Green
Meaning A specific shade of green associated with the De La Salle Brothers and institutions.
Language English
First Recorded Use Early 20th Century

History

The color 'La Salle Green' is deeply rooted in the history of the De La Salle Brothers, a Catholic religious congregation founded by Saint John Baptist de La Salle. While the Brothers' habit is traditionally black, green became a prominent color associated with their educational institutions, particularly in the Philippines. De La Salle College (now De La Salle University) in Manila, established in 1911, adopted green as one of its primary colors. The specific shade, often represented by hex code #087830, has since become a recognizable symbol for numerous La Salle schools and organizations worldwide, signifying growth, hope, and the educational mission of the Brothers.

First Recorded Use

Circa 1911 (with the establishment of De La Salle College in the Philippines)

Cultural Associations

In the Philippines, 'La Salle Green' is immediately recognizable and holds significant cultural weight, particularly in the context of education and sports. It is a symbol of academic excellence, tradition, and a strong alumni network. Rivalries, especially in collegiate sports (like the UAAP), often feature 'La Salle Green' prominently against other institutional colors. Beyond the Philippines, various La Salle schools globally may use similar or slightly varying shades of green as part of their branding, all connecting back to the legacy of Saint John Baptist de La Salle.

Similar Named Colors

Dartmouth Green #00703C ΔE 4.75
Dark Spring Green #177245 ΔE 5.94
Cadmium Green #006B3C ΔE 6.52
Office Green #008000 ΔE 6.63

Code Snippets

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

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

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

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

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

// SCSS variable
$la-salle-green: #087830;

// With RGB channels (useful for rgba() usage)
$la-salle-green-r: 8;
$la-salle-green-g: 120;
$la-salle-green-b: 48;

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