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