Dartmouth Green
HEX: #00703C | Modern Palette
Color Specifications
#00703C
0, 112, 60
152°, 100% ,43%
100, 0, 46.43, 56.08
About Dartmouth Green
Dartmouth Green (#00703C) is a color with RGB(0, 112, 60) and HSL(152.14°, 100%, 43.92%). 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 #700034, which creates strong contrast. Its triadic palette includes #3C0070 and #703C00. The name comes from Dartmouth Green (English).
- HEX: #00703C
- RGB: 0, 112, 60
- HSL: 152.14°, 100%, 43.92%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #700034
- Triadic colors: #3C0070, #703C00
- The name comes from Dartmouth Green (English).
Live Components
Color Palettes
Dartmouth Green #00703C is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Dartmouth Green #00703C pairs with #700034 as its complementary color, and #3C0070 and #703C00 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Prior to 1866, Dartmouth College lacked an official color, with various shades of green and even pink being used informally. The adoption of Dartmouth Green provided a consistent visual identity for the college. It has since been meticulously defined and protected as a brand element. The specific hue has remained largely consistent, symbolizing the college's heritage.
First Recorded Use
The color 'Dartmouth Green' was officially adopted by Dartmouth College in 1866. This decision followed a student vote to select a distinctive color for the institution.
Cultural Associations
Dartmouth Green is deeply ingrained in the identity of Dartmouth College, appearing on athletic uniforms, official publications, and merchandise. It represents the institution's connection to nature and its New England setting. The color is a strong symbol of alumni affiliation and school spirit.
Code Snippets
/* Background */
.element {
background-color: #00703C;
}
/* Text */
.element {
color: #00703C;
}
/* Border */
.element {
border: 1px solid #00703C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#00703C,
#E00068
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#00703C,
#E00068
);
}
// SCSS variable
$dartmouth-green: #00703C;
// With RGB channels (useful for rgba() usage)
$dartmouth-green-r: 0;
$dartmouth-green-g: 112;
$dartmouth-green-b: 60;
// Usage
.element {
background-color: $dartmouth-green;
color: rgba($dartmouth-green-r, $dartmouth-green-g, $dartmouth-green-b, 0.8);
}