HEX: #EBF5FF
RGB: (235,245,255)
#EBF5FF contains red, green and blue colors in about the same proportion. Web safe color of #EBF5FF is #FFFFFF (or #FFF).
#EBF5FF color RGB value is (235,245,255).
RGB: (235,245,255) (92%,96%,100%)
R 235 of 255 = 92%
G 245 of 255 = 96%
B 255 of 255 = 100%
R + G + B ~ 96%. #EBF5FF is light color.
R + G + B =
235 + 245 + 255 = 735 (100%)
R 235 of 735 ~ 31.97%
G 245 of 735 ~ 33.33%
B 255 of 735 ~ 34.69%
#EBF5FF color CMYK value is (8,4,0,0).
CMYK: (8,4,0,0) C8M4Y0K0 (8%,4%,0%,0%) (0.08/0.04/0.00/0.00)
EB | F5 | FF | |
---|---|---|---|
RGB | 235 | 245 | 255 |
HSL | 210° | 100.00% | 96.08% |
HSB/HSV | 210° | 7.84% | 100.00% |
CMYK | 7.84% | 3.92% | 0.00% |
0.00% |
HEX | EB | F5 | FF |
Decimal | 235 | 245 | 255 |
Binary | 11101011 | 11110101 | 11111111 |
Octal | 353 | 365 | 377 |
Examples of css and html codes for elements with #EBF5FF color. Also use rgb(235,245,255) instead hex code.
.myTextColor { color: #EBF5FF; }
<p style="color:#EBF5FF">This sample text font color is #EBF5FF.</p>
This text font color is #EBF5FF.
.myBgColor { background-color: #EBF5FF; }
<div style="background-color:#EBF5FF">Inner text</div>
This div background color is #EBF5FF.
.myBorderColor { border: 1px solid #EBF5FF; }
<div style="border:3px solid #EBF5FF">Div</div>
This div border color is #EBF5FF.
.myOpacity80 { color: #EBF5FF; opacity: 0.8; }
<p style="color:#EBF5FF;opacity:0.8;">80%</p>
Text with #EBF5FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBF5FF;}
<p style="text-shadow: 3px 3px 1px #EBF5FF">Text here.</p>
This text has shadow with #EBF5FF color.
.textShadow {text-shadow: 3px 3px 1px #EBF5FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBF5FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBF5FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBF5FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBF5FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBF5FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBF5FF; -webkit-box-shadow: 1px 1px 3px 2px #EBF5FF; box-shadow: 1px 1px 3px 2px #EBF5FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBF5FF; -webkit-box-shadow: 1px 1px 3px 2px #EBF5FF; box-shadow:1px 1px 3px 2px #EBF5FF;">
Div content here</div>
This text has color #EBF5FF on black background.
This text has color #EBF5FF on white background.
This text has black color on #EBF5FF background.
This text has white color on #EBF5FF background.