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