HEX: #B5EFCC
RGB: (181,239,204)
#B5EFCC contains red, green and blue colors in about the same proportion. Web safe color of #B5EFCC is #CCFFCC (or #CFC).
#B5EFCC color RGB value is (181,239,204).
RGB: (181,239,204) (71%,94%,80%)
R 181 of 255 = 71%
G 239 of 255 = 94%
B 204 of 255 = 80%
R + G + B ~ 82%. #B5EFCC is quite light color.
R + G + B =
181 + 239 + 204 = 624 (100%)
R 181 of 624 ~ 29.01%
G 239 of 624 ~ 38.3%
B 204 of 624 ~ 32.69%
#B5EFCC color CMYK value is (24,0,15,6).
CMYK: (24,0,15,6) C24M0Y15K6 (24%,0%,15%,6%) (0.24/0.00/0.15/0.06)
B5 | EF | CC | |
---|---|---|---|
RGB | 181 | 239 | 204 |
HSL | 144° | 64.44% | 82.35% |
HSB/HSV | 144° | 24.27% | 93.73% |
CMYK | 24.27% | 0.00% | 14.64% |
6.27% |
HEX | B5 | EF | CC |
Decimal | 181 | 239 | 204 |
Binary | 10110101 | 11101111 | 11001100 |
Octal | 265 | 357 | 314 |
Examples of css and html codes for elements with #B5EFCC color. Also use rgb(181,239,204) instead hex code.
.myTextColor { color: #B5EFCC; }
<p style="color:#B5EFCC">This sample text font color is #B5EFCC.</p>
This text font color is #B5EFCC.
.myBgColor { background-color: #B5EFCC; }
<div style="background-color:#B5EFCC">Inner text</div>
This div background color is #B5EFCC.
.myBorderColor { border: 1px solid #B5EFCC; }
<div style="border:3px solid #B5EFCC">Div</div>
This div border color is #B5EFCC.
.myOpacity80 { color: #B5EFCC; opacity: 0.8; }
<p style="color:#B5EFCC;opacity:0.8;">80%</p>
Text with #B5EFCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5EFCC;}
<p style="text-shadow: 3px 3px 1px #B5EFCC">Text here.</p>
This text has shadow with #B5EFCC color.
.textShadow {text-shadow: 3px 3px 1px #B5EFCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5EFCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5EFCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5EFCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5EFCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5EFCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5EFCC; -webkit-box-shadow: 1px 1px 3px 2px #B5EFCC; box-shadow: 1px 1px 3px 2px #B5EFCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5EFCC; -webkit-box-shadow: 1px 1px 3px 2px #B5EFCC; box-shadow:1px 1px 3px 2px #B5EFCC;">
Div content here</div>
This text has color #B5EFCC on black background.
This text has color #B5EFCC on white background.
This text has black color on #B5EFCC background.
This text has white color on #B5EFCC background.