HEX: #EFAEDB
RGB: (239,174,219)
#EFAEDB contains mainly red and blue colors. Web safe color of #EFAEDB is #FF99CC (or #F9C).
#EFAEDB color RGB value is (239,174,219).
RGB: (239,174,219) (94%,68%,86%)
R 239 of 255 = 94%
G 174 of 255 = 68%
B 219 of 255 = 86%
R + G + B ~ 83%. #EFAEDB is quite light color.
R + G + B =
239 + 174 + 219 = 632 (100%)
R 239 of 632 ~ 37.82%
G 174 of 632 ~ 27.53%
B 219 of 632 ~ 34.65%
#EFAEDB color CMYK value is (0,27,8,6).
CMYK: (0,27,8,6) C0M27Y8K6 (0%,27%,8%,6%) (0.00/0.27/0.08/0.06)
EF | AE | DB | |
---|---|---|---|
RGB | 239 | 174 | 219 |
HSL | 318° | 67.01% | 80.98% |
HSB/HSV | 318° | 27.20% | 93.73% |
CMYK | 0.00% | 27.20% | 8.37% |
6.27% |
HEX | EF | AE | DB |
Decimal | 239 | 174 | 219 |
Binary | 11101111 | 10101110 | 11011011 |
Octal | 357 | 256 | 333 |
Examples of css and html codes for elements with #EFAEDB color. Also use rgb(239,174,219) instead hex code.
.myTextColor { color: #EFAEDB; }
<p style="color:#EFAEDB">This sample text font color is #EFAEDB.</p>
This text font color is #EFAEDB.
.myBgColor { background-color: #EFAEDB; }
<div style="background-color:#EFAEDB">Inner text</div>
This div background color is #EFAEDB.
.myBorderColor { border: 1px solid #EFAEDB; }
<div style="border:3px solid #EFAEDB">Div</div>
This div border color is #EFAEDB.
.myOpacity80 { color: #EFAEDB; opacity: 0.8; }
<p style="color:#EFAEDB;opacity:0.8;">80%</p>
Text with #EFAEDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFAEDB;}
<p style="text-shadow: 3px 3px 1px #EFAEDB">Text here.</p>
This text has shadow with #EFAEDB color.
.textShadow {text-shadow: 3px 3px 1px #EFAEDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFAEDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFAEDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFAEDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFAEDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFAEDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFAEDB; -webkit-box-shadow: 1px 1px 3px 2px #EFAEDB; box-shadow: 1px 1px 3px 2px #EFAEDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFAEDB; -webkit-box-shadow: 1px 1px 3px 2px #EFAEDB; box-shadow:1px 1px 3px 2px #EFAEDB;">
Div content here</div>
This text has color #EFAEDB on black background.
This text has color #EFAEDB on white background.
This text has black color on #EFAEDB background.
This text has white color on #EFAEDB background.