HEX: #B5FFFC
RGB: (181,255,252)
#B5FFFC contains mainly green and blue colors. Web safe color of #B5FFFC is #CCFFFF (or #CFF).
#B5FFFC color RGB value is (181,255,252).
RGB: (181,255,252) (71%,100%,99%)
R 181 of 255 = 71%
G 255 of 255 = 100%
B 252 of 255 = 99%
R + G + B ~ 90%. #B5FFFC is light color.
R + G + B =
181 + 255 + 252 = 688 (100%)
R 181 of 688 ~ 26.31%
G 255 of 688 ~ 37.06%
B 252 of 688 ~ 36.63%
#B5FFFC color CMYK value is (29,0,1,0).
CMYK: (29,0,1,0) C29M0Y1K0 (29%,0%,1%,0%) (0.29/0.00/0.01/0.00)
B5 | FF | FC | |
---|---|---|---|
RGB | 181 | 255 | 252 |
HSL | 178° | 100.00% | 85.49% |
HSB/HSV | 178° | 29.02% | 100.00% |
CMYK | 29.02% | 0.00% | 1.18% |
0.00% |
HEX | B5 | FF | FC |
Decimal | 181 | 255 | 252 |
Binary | 10110101 | 11111111 | 11111100 |
Octal | 265 | 377 | 374 |
Examples of css and html codes for elements with #B5FFFC color. Also use rgb(181,255,252) instead hex code.
.myTextColor { color: #B5FFFC; }
<p style="color:#B5FFFC">This sample text font color is #B5FFFC.</p>
This text font color is #B5FFFC.
.myBgColor { background-color: #B5FFFC; }
<div style="background-color:#B5FFFC">Inner text</div>
This div background color is #B5FFFC.
.myBorderColor { border: 1px solid #B5FFFC; }
<div style="border:3px solid #B5FFFC">Div</div>
This div border color is #B5FFFC.
.myOpacity80 { color: #B5FFFC; opacity: 0.8; }
<p style="color:#B5FFFC;opacity:0.8;">80%</p>
Text with #B5FFFC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5FFFC;}
<p style="text-shadow: 3px 3px 1px #B5FFFC">Text here.</p>
This text has shadow with #B5FFFC color.
.textShadow {text-shadow: 3px 3px 1px #B5FFFC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5FFFC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5FFFC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5FFFC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5FFFC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5FFFC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5FFFC; -webkit-box-shadow: 1px 1px 3px 2px #B5FFFC; box-shadow: 1px 1px 3px 2px #B5FFFC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5FFFC; -webkit-box-shadow: 1px 1px 3px 2px #B5FFFC; box-shadow:1px 1px 3px 2px #B5FFFC;">
Div content here</div>
This text has color #B5FFFC on black background.
This text has color #B5FFFC on white background.
This text has black color on #B5FFFC background.
This text has white color on #B5FFFC background.