Pullman Green
HEX: #3B331C | Modern Palette
Color Specifications
#3B331C
59, 51, 28
44°, 52% ,23%
0, 13.56, 52.54, 76.86
About Pullman Green
Pullman Green (#3B331C) is a color with RGB(59, 51, 28) and HSL(44.52°, 52.54%, 23.14%). It is commonly associated with Bold, Earthy moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #1C243B, which creates strong contrast. Its triadic palette includes #1C3B33 and #331C3B. The name comes from Pullman Green (English).
- HEX: #3B331C
- RGB: 59, 51, 28
- HSL: 44.52°, 52.54%, 23.14%
- Mood: Bold, Earthy
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #1C243B
- Triadic colors: #1C3B33, #331C3B
- The name comes from Pullman Green (English).
Live Components
Color Palettes
Pullman Green #3B331C 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
Pullman Green #3B331C pairs with #1C243B as its complementary color, and #1C3B33 and #331C3B in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Pullman Green was the signature color of the Pullman Palace Car Company, founded by George M. Pullman. The company was renowned for its luxurious railway sleeping and dining cars, which became synonymous with comfortable and elegant long-distance travel in the United States. The dark green color was chosen for its perceived sophistication, durability, and ability to hide dirt and grime accumulated during long journeys, while still presenting a distinguished appearance. It was applied to the exterior of most Pullman cars for decades, becoming an iconic part of American railway history. The exact shade could vary slightly over time due to paint manufacturing processes and application, but the general dark green aesthetic remained consistent.
First Recorded Use
Circa 1890s
Cultural Associations
Pullman Green evokes a strong sense of nostalgia for the 'Golden Age of Rail Travel' in America. It represents a period of significant industrial growth, luxury, and the expansion of transportation networks. The Pullman Company also played a complex role in American labor history, particularly with the Pullman Strike of 1894 and the formation of the Brotherhood of Sleeping Car Porters, a significant African American labor union. Thus, the color is not just about aesthetics but also intertwined with social and economic narratives of the era. It is still used today in various contexts to evoke a vintage or classic railway aesthetic.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #3B331C;
}
/* Text */
.element {
color: #3B331C;
}
/* Border */
.element {
border: 1px solid #3B331C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#3B331C,
#1C2C5A
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#3B331C,
#1C2C5A
);
}
// SCSS variable
$pullman-green: #3B331C;
// With RGB channels (useful for rgba() usage)
$pullman-green-r: 59;
$pullman-green-g: 51;
$pullman-green-b: 28;
// Usage
.element {
background-color: $pullman-green;
color: rgba($pullman-green-r, $pullman-green-g, $pullman-green-b, 0.8);
}