HEX: #B9CACC
RGB: (185,202,204)
#B9CACC contains red, green and blue colors in about the same proportion. Web safe color of #B9CACC is #CCCCCC (or #CCC).
#B9CACC color RGB value is (185,202,204).
RGB: (185,202,204) (73%,79%,80%)
R 185 of 255 = 73%
G 202 of 255 = 79%
B 204 of 255 = 80%
R + G + B ~ 77%. #B9CACC is quite light color.
R + G + B =
185 + 202 + 204 = 591 (100%)
R 185 of 591 ~ 31.3%
G 202 of 591 ~ 34.18%
B 204 of 591 ~ 34.52%
#B9CACC color CMYK value is (9,1,0,20).
CMYK: (9,1,0,20) C9M1Y0K20 (9%,1%,0%,20%) (0.09/0.01/0.00/0.20)
B9 | CA | CC | |
---|---|---|---|
RGB | 185 | 202 | 204 |
HSL | 186° | 15.70% | 76.27% |
HSB/HSV | 186° | 9.31% | 80.00% |
CMYK | 9.31% | 0.98% | 0.00% |
20.00% |
HEX | B9 | CA | CC |
Decimal | 185 | 202 | 204 |
Binary | 10111001 | 11001010 | 11001100 |
Octal | 271 | 312 | 314 |
Examples of css and html codes for elements with #B9CACC color. Also use rgb(185,202,204) instead hex code.
.myTextColor { color: #B9CACC; }
<p style="color:#B9CACC">This sample text font color is #B9CACC.</p>
This text font color is #B9CACC.
.myBgColor { background-color: #B9CACC; }
<div style="background-color:#B9CACC">Inner text</div>
This div background color is #B9CACC.
.myBorderColor { border: 1px solid #B9CACC; }
<div style="border:3px solid #B9CACC">Div</div>
This div border color is #B9CACC.
.myOpacity80 { color: #B9CACC; opacity: 0.8; }
<p style="color:#B9CACC;opacity:0.8;">80%</p>
Text with #B9CACC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9CACC;}
<p style="text-shadow: 3px 3px 1px #B9CACC">Text here.</p>
This text has shadow with #B9CACC color.
.textShadow {text-shadow: 3px 3px 1px #B9CACC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9CACC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9CACC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9CACC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9CACC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9CACC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9CACC; -webkit-box-shadow: 1px 1px 3px 2px #B9CACC; box-shadow: 1px 1px 3px 2px #B9CACC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9CACC; -webkit-box-shadow: 1px 1px 3px 2px #B9CACC; box-shadow:1px 1px 3px 2px #B9CACC;">
Div content here</div>
This text has color #B9CACC on black background.
This text has color #B9CACC on white background.
This text has black color on #B9CACC background.
This text has white color on #B9CACC background.