HEX: #BCB2AD
RGB: (188,178,173)
#BCB2AD contains red, green and blue colors in about the same proportion. Web safe color of #BCB2AD is #CC9999 (or #C99).
#BCB2AD color RGB value is (188,178,173).
RGB: (188,178,173) (74%,70%,68%)
R 188 of 255 = 74%
G 178 of 255 = 70%
B 173 of 255 = 68%
R + G + B ~ 71%. #BCB2AD is quite light color.
R + G + B =
188 + 178 + 173 = 539 (100%)
R 188 of 539 ~ 34.88%
G 178 of 539 ~ 33.02%
B 173 of 539 ~ 32.1%
#BCB2AD color CMYK value is (0,5,8,26).
CMYK: (0,5,8,26) C0M5Y8K26 (0%,5%,8%,26%) (0.00/0.05/0.08/0.26)
BC | B2 | AD | |
---|---|---|---|
RGB | 188 | 178 | 173 |
HSL | 20° | 10.07% | 70.78% |
HSB/HSV | 20° | 7.98% | 73.73% |
CMYK | 0.00% | 5.32% | 7.98% |
26.27% |
HEX | BC | B2 | AD |
Decimal | 188 | 178 | 173 |
Binary | 10111100 | 10110010 | 10101101 |
Octal | 274 | 262 | 255 |
Examples of css and html codes for elements with #BCB2AD color. Also use rgb(188,178,173) instead hex code.
.myTextColor { color: #BCB2AD; }
<p style="color:#BCB2AD">This sample text font color is #BCB2AD.</p>
This text font color is #BCB2AD.
.myBgColor { background-color: #BCB2AD; }
<div style="background-color:#BCB2AD">Inner text</div>
This div background color is #BCB2AD.
.myBorderColor { border: 1px solid #BCB2AD; }
<div style="border:3px solid #BCB2AD">Div</div>
This div border color is #BCB2AD.
.myOpacity80 { color: #BCB2AD; opacity: 0.8; }
<p style="color:#BCB2AD;opacity:0.8;">80%</p>
Text with #BCB2AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCB2AD;}
<p style="text-shadow: 3px 3px 1px #BCB2AD">Text here.</p>
This text has shadow with #BCB2AD color.
.textShadow {text-shadow: 3px 3px 1px #BCB2AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCB2AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCB2AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCB2AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCB2AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCB2AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCB2AD; -webkit-box-shadow: 1px 1px 3px 2px #BCB2AD; box-shadow: 1px 1px 3px 2px #BCB2AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCB2AD; -webkit-box-shadow: 1px 1px 3px 2px #BCB2AD; box-shadow:1px 1px 3px 2px #BCB2AD;">
Div content here</div>
This text has color #BCB2AD on black background.
This text has color #BCB2AD on white background.
This text has black color on #BCB2AD background.
This text has white color on #BCB2AD background.