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
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 #00703C from deepest shade to lightest tint.
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);
}