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