HEX: #B5E4FF
RGB: (181,228,255)
#B5E4FF contains mainly green and blue colors. Web safe color of #B5E4FF is #CCCCFF (or #CCF).
#B5E4FF color RGB value is (181,228,255).
RGB: (181,228,255) (71%,89%,100%)
R 181 of 255 = 71%
G 228 of 255 = 89%
B 255 of 255 = 100%
R + G + B ~ 87%. #B5E4FF is light color.
R + G + B =
181 + 228 + 255 = 664 (100%)
R 181 of 664 ~ 27.26%
G 228 of 664 ~ 34.34%
B 255 of 664 ~ 38.4%
#B5E4FF color CMYK value is (29,11,0,0).
CMYK: (29,11,0,0) C29M11Y0K0 (29%,11%,0%,0%) (0.29/0.11/0.00/0.00)
B5 | E4 | FF | |
---|---|---|---|
RGB | 181 | 228 | 255 |
HSL | 202° | 100.00% | 85.49% |
HSB/HSV | 202° | 29.02% | 100.00% |
CMYK | 29.02% | 10.59% | 0.00% |
0.00% |
HEX | B5 | E4 | FF |
Decimal | 181 | 228 | 255 |
Binary | 10110101 | 11100100 | 11111111 |
Octal | 265 | 344 | 377 |
Examples of css and html codes for elements with #B5E4FF color. Also use rgb(181,228,255) instead hex code.
.myTextColor { color: #B5E4FF; }
<p style="color:#B5E4FF">This sample text font color is #B5E4FF.</p>
This text font color is #B5E4FF.
.myBgColor { background-color: #B5E4FF; }
<div style="background-color:#B5E4FF">Inner text</div>
This div background color is #B5E4FF.
.myBorderColor { border: 1px solid #B5E4FF; }
<div style="border:3px solid #B5E4FF">Div</div>
This div border color is #B5E4FF.
.myOpacity80 { color: #B5E4FF; opacity: 0.8; }
<p style="color:#B5E4FF;opacity:0.8;">80%</p>
Text with #B5E4FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5E4FF;}
<p style="text-shadow: 3px 3px 1px #B5E4FF">Text here.</p>
This text has shadow with #B5E4FF color.
.textShadow {text-shadow: 3px 3px 1px #B5E4FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5E4FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5E4FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5E4FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5E4FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5E4FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5E4FF; -webkit-box-shadow: 1px 1px 3px 2px #B5E4FF; box-shadow: 1px 1px 3px 2px #B5E4FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5E4FF; -webkit-box-shadow: 1px 1px 3px 2px #B5E4FF; box-shadow:1px 1px 3px 2px #B5E4FF;">
Div content here</div>
This text has color #B5E4FF on black background.
This text has color #B5E4FF on white background.
This text has black color on #B5E4FF background.
This text has white color on #B5E4FF background.