Brown-nose
HEX: #6B4423 | Modern Palette
Color Specifications
#6B4423
107, 68, 35
27°, 67% ,41%
0, 36.45, 67.29, 58.04
About Brown-nose
Brown-nose (#6B4423) is a color with RGB(107, 68, 35) and HSL(27.5°, 67.29%, 41.96%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #234A6B, which creates strong contrast. Its triadic palette includes #236B44 and #44236B. The name comes from Brown-nose (English).
- HEX: #6B4423
- RGB: 107, 68, 35
- HSL: 27.5°, 67.29%, 41.96%
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #234A6B
- Triadic colors: #236B44, #44236B
- The name comes from Brown-nose (English).
Live Components
Color Palettes
Brown-nose #6B4423 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
Brown-nose #6B4423 pairs with #234A6B as its complementary color, and #236B44 and #44236B 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 term 'brown-nose' is believed to have originated in the military or school settings in the United States. It is a vulgar idiom that graphically describes the act of being so obsequious to a superior that one's nose would literally come into contact with the superior's anus (implied to be 'brown' from feces). The earliest known printed uses appear in the 1930s, often in slang dictionaries or glossaries of military terms. Its use became more widespread after World War II.
First Recorded Use
1930s
Cultural Associations
This phrase is considered vulgar or crude and is generally avoided in formal settings. It carries a strong negative connotation, implying a lack of integrity and self-respect on the part of the 'brown-noser.' While widely understood, its explicitness means it's more common in informal speech among peers than in professional or polite discourse. Other, less vulgar synonyms include 'suck up,' 'flatter,' 'bootlick,' or 'toady.'
Code Snippets
/* Background */
.element {
background-color: #6B4423;
}
/* Text */
.element {
color: #6B4423;
}
/* Border */
.element {
border: 1px solid #6B4423;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#6B4423,
#2371B3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#6B4423,
#2371B3
);
}
// SCSS variable
$brown-nose: #6B4423;
// With RGB channels (useful for rgba() usage)
$brown-nose-r: 107;
$brown-nose-g: 68;
$brown-nose-b: 35;
// Usage
.element {
background-color: $brown-nose;
color: rgba($brown-nose-r, $brown-nose-g, $brown-nose-b, 0.8);
}