Dollar Bill
HEX: #85BB65 | Modern Palette
Color Specifications
#85BB65
133, 187, 101
97°, 45% ,73%
28.88, 0, 45.99, 26.67
About Dollar Bill
Dollar Bill (#85BB65) is a color with RGB(133, 187, 101) and HSL(97.67°, 45.99%, 73.33%). In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #9B65BB, which creates strong contrast. Its triadic palette includes #6585BB and #BB6585. The name comes from Dollar Bill (English).
- HEX: #85BB65
- RGB: 133, 187, 101
- HSL: 97.67°, 45.99%, 73.33%
- Style: Cool
- Use case: Text, Button, Logo
- Complementary color: #9B65BB
- Triadic colors: #6585BB, #BB6585
- The name comes from Dollar Bill (English).
Live Components
Color Palettes
Dollar Bill #85BB65 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
Dollar Bill #85BB65 pairs with #9B65BB as its complementary color, and #6585BB and #BB6585 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The U.S. dollar was established by the Coinage Act of 1792. Early U.S. currency included both coins and paper notes issued by various banks. The federal government began issuing its own paper currency, 'greenbacks,' during the Civil War (1861-1865). The one-dollar bill has undergone several design changes over the centuries, with the current design featuring George Washington on the obverse and the Great Seal of the United States on the reverse largely established in 1963.
First Recorded Use
The term 'dollar' itself dates back to the 16th century (from 'thaler'), but 'dollar bill' as a common phrase for paper currency became prevalent after the establishment of the U.S. monetary system.
Cultural Associations
The dollar bill, particularly the one-dollar bill, is an iconic symbol of the United States and its economy. It is widely recognized globally. Its design elements, such as the Eye of Providence and the pyramid on the Great Seal, have been subjects of various interpretations and conspiracy theories. It is often used colloquially to represent money in general ('a few dollar bills'). The phrase 'in God we trust' has been printed on all U.S. currency since 1957.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #85BB65;
}
/* Text */
.element {
color: #85BB65;
}
/* Border */
.element {
border: 1px solid #85BB65;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#85BB65,
#C39CDA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#85BB65,
#C39CDA
);
}
// SCSS variable
$dollar-bill: #85BB65;
// With RGB channels (useful for rgba() usage)
$dollar-bill-r: 133;
$dollar-bill-g: 187;
$dollar-bill-b: 101;
// Usage
.element {
background-color: $dollar-bill;
color: rgba($dollar-bill-r, $dollar-bill-g, $dollar-bill-b, 0.8);
}