HEX: #BB6C3C
RGB: (187,108,60)
#BB6C3C contains mainly red color. Web safe color of #BB6C3C is #CC6633 (or #C63).
#BB6C3C color RGB value is (187,108,60).
RGB: (187,108,60) (73%,42%,24%)
R 187 of 255 = 73%
G 108 of 255 = 42%
B 60 of 255 = 24%
R + G + B ~ 46%. #BB6C3C is middle color (not dark and not light).
R + G + B =
187 + 108 + 60 = 355 (100%)
R 187 of 355 ~ 52.68%
G 108 of 355 ~ 30.42%
B 60 of 355 ~ 16.9%
#BB6C3C color CMYK value is (0,42,68,27).
CMYK: (0,42,68,27) C0M42Y68K27 (0%,42%,68%,27%) (0.00/0.42/0.68/0.27)
BB | 6C | 3C | |
---|---|---|---|
RGB | 187 | 108 | 60 |
HSL | 23° | 51.42% | 48.43% |
HSB/HSV | 23° | 67.91% | 73.33% |
CMYK | 0.00% | 42.25% | 67.91% |
26.67% |
HEX | BB | 6C | 3C |
Decimal | 187 | 108 | 60 |
Binary | 10111011 | 1101100 | 111100 |
Octal | 273 | 154 | 74 |
Examples of css and html codes for elements with #BB6C3C color. Also use rgb(187,108,60) instead hex code.
.myTextColor { color: #BB6C3C; }
<p style="color:#BB6C3C">This sample text font color is #BB6C3C.</p>
This text font color is #BB6C3C.
.myBgColor { background-color: #BB6C3C; }
<div style="background-color:#BB6C3C">Inner text</div>
This div background color is #BB6C3C.
.myBorderColor { border: 1px solid #BB6C3C; }
<div style="border:3px solid #BB6C3C">Div</div>
This div border color is #BB6C3C.
.myOpacity80 { color: #BB6C3C; opacity: 0.8; }
<p style="color:#BB6C3C;opacity:0.8;">80%</p>
Text with #BB6C3C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB6C3C;}
<p style="text-shadow: 3px 3px 1px #BB6C3C">Text here.</p>
This text has shadow with #BB6C3C color.
.textShadow {text-shadow: 3px 3px 1px #BB6C3C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB6C3C, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB6C3C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB6C3C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB6C3C, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB6C3C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB6C3C; -webkit-box-shadow: 1px 1px 3px 2px #BB6C3C; box-shadow: 1px 1px 3px 2px #BB6C3C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB6C3C; -webkit-box-shadow: 1px 1px 3px 2px #BB6C3C; box-shadow:1px 1px 3px 2px #BB6C3C;">
Div content here</div>
This text has color #BB6C3C on black background.
This text has color #BB6C3C on white background.
This text has black color on #BB6C3C background.
This text has white color on #BB6C3C background.