HEX: #B0CC9B
RGB: (176,204,155)
#B0CC9B contains red, green and blue colors in about the same proportion. Web safe color of #B0CC9B is #99CC99 (or #9C9).
#B0CC9B color RGB value is (176,204,155).
RGB: (176,204,155) (69%,80%,61%)
R 176 of 255 = 69%
G 204 of 255 = 80%
B 155 of 255 = 61%
R + G + B ~ 70%. #B0CC9B is quite light color.
R + G + B =
176 + 204 + 155 = 535 (100%)
R 176 of 535 ~ 32.9%
G 204 of 535 ~ 38.13%
B 155 of 535 ~ 28.97%
#B0CC9B color CMYK value is (14,0,24,20).
CMYK: (14,0,24,20) C14M0Y24K20 (14%,0%,24%,20%) (0.14/0.00/0.24/0.20)
B0 | CC | 9B | |
---|---|---|---|
RGB | 176 | 204 | 155 |
HSL | 94° | 32.45% | 70.39% |
HSB/HSV | 94° | 24.02% | 80.00% |
CMYK | 13.73% | 0.00% | 24.02% |
20.00% |
HEX | B0 | CC | 9B |
Decimal | 176 | 204 | 155 |
Binary | 10110000 | 11001100 | 10011011 |
Octal | 260 | 314 | 233 |
Examples of css and html codes for elements with #B0CC9B color. Also use rgb(176,204,155) instead hex code.
.myTextColor { color: #B0CC9B; }
<p style="color:#B0CC9B">This sample text font color is #B0CC9B.</p>
This text font color is #B0CC9B.
.myBgColor { background-color: #B0CC9B; }
<div style="background-color:#B0CC9B">Inner text</div>
This div background color is #B0CC9B.
.myBorderColor { border: 1px solid #B0CC9B; }
<div style="border:3px solid #B0CC9B">Div</div>
This div border color is #B0CC9B.
.myOpacity80 { color: #B0CC9B; opacity: 0.8; }
<p style="color:#B0CC9B;opacity:0.8;">80%</p>
Text with #B0CC9B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0CC9B;}
<p style="text-shadow: 3px 3px 1px #B0CC9B">Text here.</p>
This text has shadow with #B0CC9B color.
.textShadow {text-shadow: 3px 3px 1px #B0CC9B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0CC9B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0CC9B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0CC9B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0CC9B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0CC9B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0CC9B; -webkit-box-shadow: 1px 1px 3px 2px #B0CC9B; box-shadow: 1px 1px 3px 2px #B0CC9B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0CC9B; -webkit-box-shadow: 1px 1px 3px 2px #B0CC9B; box-shadow:1px 1px 3px 2px #B0CC9B;">
Div content here</div>
This text has color #B0CC9B on black background.
This text has color #B0CC9B on white background.
This text has black color on #B0CC9B background.
This text has white color on #B0CC9B background.