HEX: #BCC79B
RGB: (188,199,155)
#BCC79B contains red, green and blue colors in about the same proportion. Web safe color of #BCC79B is #CCCC99 (or #CC9).
#BCC79B color RGB value is (188,199,155).
RGB: (188,199,155) (74%,78%,61%)
R 188 of 255 = 74%
G 199 of 255 = 78%
B 155 of 255 = 61%
R + G + B ~ 71%. #BCC79B is quite light color.
R + G + B =
188 + 199 + 155 = 542 (100%)
R 188 of 542 ~ 34.69%
G 199 of 542 ~ 36.72%
B 155 of 542 ~ 28.6%
#BCC79B color CMYK value is (6,0,22,22).
CMYK: (6,0,22,22) C6M0Y22K22 (6%,0%,22%,22%) (0.06/0.00/0.22/0.22)
BC | C7 | 9B | |
---|---|---|---|
RGB | 188 | 199 | 155 |
HSL | 75° | 28.21% | 69.41% |
HSB/HSV | 75° | 22.11% | 78.04% |
CMYK | 5.53% | 0.00% | 22.11% |
21.96% |
HEX | BC | C7 | 9B |
Decimal | 188 | 199 | 155 |
Binary | 10111100 | 11000111 | 10011011 |
Octal | 274 | 307 | 233 |
Examples of css and html codes for elements with #BCC79B color. Also use rgb(188,199,155) instead hex code.
.myTextColor { color: #BCC79B; }
<p style="color:#BCC79B">This sample text font color is #BCC79B.</p>
This text font color is #BCC79B.
.myBgColor { background-color: #BCC79B; }
<div style="background-color:#BCC79B">Inner text</div>
This div background color is #BCC79B.
.myBorderColor { border: 1px solid #BCC79B; }
<div style="border:3px solid #BCC79B">Div</div>
This div border color is #BCC79B.
.myOpacity80 { color: #BCC79B; opacity: 0.8; }
<p style="color:#BCC79B;opacity:0.8;">80%</p>
Text with #BCC79B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC79B;}
<p style="text-shadow: 3px 3px 1px #BCC79B">Text here.</p>
This text has shadow with #BCC79B color.
.textShadow {text-shadow: 3px 3px 1px #BCC79B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC79B, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC79B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC79B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC79B, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC79B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC79B; -webkit-box-shadow: 1px 1px 3px 2px #BCC79B; box-shadow: 1px 1px 3px 2px #BCC79B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC79B; -webkit-box-shadow: 1px 1px 3px 2px #BCC79B; box-shadow:1px 1px 3px 2px #BCC79B;">
Div content here</div>
This text has color #BCC79B on black background.
This text has color #BCC79B on white background.
This text has black color on #BCC79B background.
This text has white color on #BCC79B background.