HEX: #EFAEF6
RGB: (239,174,246)
#EFAEF6 contains mainly red and blue colors. Web safe color of #EFAEF6 is #FF99FF (or #F9F).
#EFAEF6 color RGB value is (239,174,246).
RGB: (239,174,246) (94%,68%,96%)
R 239 of 255 = 94%
G 174 of 255 = 68%
B 246 of 255 = 96%
R + G + B ~ 86%. #EFAEF6 is light color.
R + G + B =
239 + 174 + 246 = 659 (100%)
R 239 of 659 ~ 36.27%
G 174 of 659 ~ 26.4%
B 246 of 659 ~ 37.33%
#EFAEF6 color CMYK value is (3,29,0,4).
CMYK: (3,29,0,4) C3M29Y0K4 (3%,29%,0%,4%) (0.03/0.29/0.00/0.04)
EF | AE | F6 | |
---|---|---|---|
RGB | 239 | 174 | 246 |
HSL | 294° | 80.00% | 82.35% |
HSB/HSV | 294° | 29.27% | 96.47% |
CMYK | 2.85% | 29.27% | 0.00% |
3.53% |
HEX | EF | AE | F6 |
Decimal | 239 | 174 | 246 |
Binary | 11101111 | 10101110 | 11110110 |
Octal | 357 | 256 | 366 |
Examples of css and html codes for elements with #EFAEF6 color. Also use rgb(239,174,246) instead hex code.
.myTextColor { color: #EFAEF6; }
<p style="color:#EFAEF6">This sample text font color is #EFAEF6.</p>
This text font color is #EFAEF6.
.myBgColor { background-color: #EFAEF6; }
<div style="background-color:#EFAEF6">Inner text</div>
This div background color is #EFAEF6.
.myBorderColor { border: 1px solid #EFAEF6; }
<div style="border:3px solid #EFAEF6">Div</div>
This div border color is #EFAEF6.
.myOpacity80 { color: #EFAEF6; opacity: 0.8; }
<p style="color:#EFAEF6;opacity:0.8;">80%</p>
Text with #EFAEF6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFAEF6;}
<p style="text-shadow: 3px 3px 1px #EFAEF6">Text here.</p>
This text has shadow with #EFAEF6 color.
.textShadow {text-shadow: 3px 3px 1px #EFAEF6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFAEF6, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFAEF6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFAEF6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFAEF6, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFAEF6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFAEF6; -webkit-box-shadow: 1px 1px 3px 2px #EFAEF6; box-shadow: 1px 1px 3px 2px #EFAEF6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFAEF6; -webkit-box-shadow: 1px 1px 3px 2px #EFAEF6; box-shadow:1px 1px 3px 2px #EFAEF6;">
Div content here</div>
This text has color #EFAEF6 on black background.
This text has color #EFAEF6 on white background.
This text has black color on #EFAEF6 background.
This text has white color on #EFAEF6 background.