HEX: #BCAD5C
RGB: (188,173,92)
#BCAD5C contains mainly red and green colors. Web safe color of #BCAD5C is #CC9966 (or #C96).
#BCAD5C color RGB value is (188,173,92).
RGB: (188,173,92) (74%,68%,36%)
R 188 of 255 = 74%
G 173 of 255 = 68%
B 92 of 255 = 36%
R + G + B ~ 59%. #BCAD5C is middle color (not dark and not light).
R + G + B =
188 + 173 + 92 = 453 (100%)
R 188 of 453 ~ 41.5%
G 173 of 453 ~ 38.19%
B 92 of 453 ~ 20.31%
#BCAD5C color CMYK value is (0,8,51,26).
CMYK: (0,8,51,26) C0M8Y51K26 (0%,8%,51%,26%) (0.00/0.08/0.51/0.26)
BC | AD | 5C | |
---|---|---|---|
RGB | 188 | 173 | 92 |
HSL | 51° | 41.74% | 54.90% |
HSB/HSV | 51° | 51.06% | 73.73% |
CMYK | 0.00% | 7.98% | 51.06% |
26.27% |
HEX | BC | AD | 5C |
Decimal | 188 | 173 | 92 |
Binary | 10111100 | 10101101 | 1011100 |
Octal | 274 | 255 | 134 |
Examples of css and html codes for elements with #BCAD5C color. Also use rgb(188,173,92) instead hex code.
.myTextColor { color: #BCAD5C; }
<p style="color:#BCAD5C">This sample text font color is #BCAD5C.</p>
This text font color is #BCAD5C.
.myBgColor { background-color: #BCAD5C; }
<div style="background-color:#BCAD5C">Inner text</div>
This div background color is #BCAD5C.
.myBorderColor { border: 1px solid #BCAD5C; }
<div style="border:3px solid #BCAD5C">Div</div>
This div border color is #BCAD5C.
.myOpacity80 { color: #BCAD5C; opacity: 0.8; }
<p style="color:#BCAD5C;opacity:0.8;">80%</p>
Text with #BCAD5C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCAD5C;}
<p style="text-shadow: 3px 3px 1px #BCAD5C">Text here.</p>
This text has shadow with #BCAD5C color.
.textShadow {text-shadow: 3px 3px 1px #BCAD5C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCAD5C, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCAD5C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCAD5C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCAD5C, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCAD5C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCAD5C; -webkit-box-shadow: 1px 1px 3px 2px #BCAD5C; box-shadow: 1px 1px 3px 2px #BCAD5C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCAD5C; -webkit-box-shadow: 1px 1px 3px 2px #BCAD5C; box-shadow:1px 1px 3px 2px #BCAD5C;">
Div content here</div>
This text has color #BCAD5C on black background.
This text has color #BCAD5C on white background.
This text has black color on #BCAD5C background.
This text has white color on #BCAD5C background.