HEX: #FFEFD5
RGB: (255,239,213)
Color name is PapayaWhip. #FFEFD5 contains red, green and blue colors in about the same proportion. Web safe color of #FFEFD5 is #FFFFCC (or #FFC).
#FFEFD5 color RGB value is (255,239,213).
RGB: (255,239,213) (100%,94%,84%)
R 255 of 255 = 100%
G 239 of 255 = 94%
B 213 of 255 = 84%
R + G + B ~ 93%. #FFEFD5 is light color.
R + G + B =
255 + 239 + 213 = 707 (100%)
R 255 of 707 ~ 36.07%
G 239 of 707 ~ 33.8%
B 213 of 707 ~ 30.13%
#FFEFD5 color CMYK value is (0,6,16,0).
CMYK: (0,6,16,0) C0M6Y16K0 (0%,6%,16%,0%) (0.00/0.06/0.16/0.00)
FF | EF | D5 | |
---|---|---|---|
RGB | 255 | 239 | 213 |
HSL | 37° | 100.00% | 91.76% |
HSB/HSV | 37° | 16.47% | 100.00% |
CMYK | 0.00% | 6.27% | 16.47% |
0.00% |
HEX | FF | EF | D5 |
Decimal | 255 | 239 | 213 |
Binary | 11111111 | 11101111 | 11010101 |
Octal | 377 | 357 | 325 |
Examples of css and html codes for elements with #FFEFD5 color. Also use rgb(255,239,213) instead hex code.
.myTextColor { color: #FFEFD5; }
<p style="color:#FFEFD5">This sample text font color is #FFEFD5.</p>
This text font color is #FFEFD5.
.myBgColor { background-color: #FFEFD5; }
<div style="background-color:#FFEFD5">Inner text</div>
This div background color is #FFEFD5.
.myBorderColor { border: 1px solid #FFEFD5; }
<div style="border:3px solid #FFEFD5">Div</div>
This div border color is #FFEFD5.
.myOpacity80 { color: #FFEFD5; opacity: 0.8; }
<p style="color:#FFEFD5;opacity:0.8;">80%</p>
Text with #FFEFD5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFEFD5;}
<p style="text-shadow: 3px 3px 1px #FFEFD5">Text here.</p>
This text has shadow with #FFEFD5 color.
.textShadow {text-shadow: 3px 3px 1px #FFEFD5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFEFD5, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFEFD5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFEFD5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFEFD5, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFEFD5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFEFD5; -webkit-box-shadow: 1px 1px 3px 2px #FFEFD5; box-shadow: 1px 1px 3px 2px #FFEFD5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFEFD5; -webkit-box-shadow: 1px 1px 3px 2px #FFEFD5; box-shadow:1px 1px 3px 2px #FFEFD5;">
Div content here</div>
This text has color #FFEFD5 on black background.
This text has color #FFEFD5 on white background.
This text has black color on #FFEFD5 background.
This text has white color on #FFEFD5 background.