HEX: #EFF2FF
RGB: (239,242,255)
#EFF2FF contains red, green and blue colors in about the same proportion. Web safe color of #EFF2FF is #FFFFFF (or #FFF).
#EFF2FF color RGB value is (239,242,255).
RGB: (239,242,255) (94%,95%,100%)
R 239 of 255 = 94%
G 242 of 255 = 95%
B 255 of 255 = 100%
R + G + B ~ 96%. #EFF2FF is light color.
R + G + B =
239 + 242 + 255 = 736 (100%)
R 239 of 736 ~ 32.47%
G 242 of 736 ~ 32.88%
B 255 of 736 ~ 34.65%
#EFF2FF color CMYK value is (6,5,0,0).
CMYK: (6,5,0,0) C6M5Y0K0 (6%,5%,0%,0%) (0.06/0.05/0.00/0.00)
EF | F2 | FF | |
---|---|---|---|
RGB | 239 | 242 | 255 |
HSL | 229° | 100.00% | 96.86% |
HSB/HSV | 229° | 6.27% | 100.00% |
CMYK | 6.27% | 5.10% | 0.00% |
0.00% |
HEX | EF | F2 | FF |
Decimal | 239 | 242 | 255 |
Binary | 11101111 | 11110010 | 11111111 |
Octal | 357 | 362 | 377 |
Examples of css and html codes for elements with #EFF2FF color. Also use rgb(239,242,255) instead hex code.
.myTextColor { color: #EFF2FF; }
<p style="color:#EFF2FF">This sample text font color is #EFF2FF.</p>
This text font color is #EFF2FF.
.myBgColor { background-color: #EFF2FF; }
<div style="background-color:#EFF2FF">Inner text</div>
This div background color is #EFF2FF.
.myBorderColor { border: 1px solid #EFF2FF; }
<div style="border:3px solid #EFF2FF">Div</div>
This div border color is #EFF2FF.
.myOpacity80 { color: #EFF2FF; opacity: 0.8; }
<p style="color:#EFF2FF;opacity:0.8;">80%</p>
Text with #EFF2FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFF2FF;}
<p style="text-shadow: 3px 3px 1px #EFF2FF">Text here.</p>
This text has shadow with #EFF2FF color.
.textShadow {text-shadow: 3px 3px 1px #EFF2FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFF2FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFF2FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFF2FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFF2FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFF2FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFF2FF; -webkit-box-shadow: 1px 1px 3px 2px #EFF2FF; box-shadow: 1px 1px 3px 2px #EFF2FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFF2FF; -webkit-box-shadow: 1px 1px 3px 2px #EFF2FF; box-shadow:1px 1px 3px 2px #EFF2FF;">
Div content here</div>
This text has color #EFF2FF on black background.
This text has color #EFF2FF on white background.
This text has black color on #EFF2FF background.
This text has white color on #EFF2FF background.