HEX: #EFFDBD
RGB: (239,253,189)
#EFFDBD contains mainly red and green colors. Web safe color of #EFFDBD is #FFFFCC (or #FFC).
#EFFDBD color RGB value is (239,253,189).
RGB: (239,253,189) (94%,99%,74%)
R 239 of 255 = 94%
G 253 of 255 = 99%
B 189 of 255 = 74%
R + G + B ~ 89%. #EFFDBD is light color.
R + G + B =
239 + 253 + 189 = 681 (100%)
R 239 of 681 ~ 35.1%
G 253 of 681 ~ 37.15%
B 189 of 681 ~ 27.75%
#EFFDBD color CMYK value is (6,0,25,1).
CMYK: (6,0,25,1) C6M0Y25K1 (6%,0%,25%,1%) (0.06/0.00/0.25/0.01)
EF | FD | BD | |
---|---|---|---|
RGB | 239 | 253 | 189 |
HSL | 73° | 94.12% | 86.67% |
HSB/HSV | 73° | 25.30% | 99.22% |
CMYK | 5.53% | 0.00% | 25.30% |
0.78% |
HEX | EF | FD | BD |
Decimal | 239 | 253 | 189 |
Binary | 11101111 | 11111101 | 10111101 |
Octal | 357 | 375 | 275 |
Examples of css and html codes for elements with #EFFDBD color. Also use rgb(239,253,189) instead hex code.
.myTextColor { color: #EFFDBD; }
<p style="color:#EFFDBD">This sample text font color is #EFFDBD.</p>
This text font color is #EFFDBD.
.myBgColor { background-color: #EFFDBD; }
<div style="background-color:#EFFDBD">Inner text</div>
This div background color is #EFFDBD.
.myBorderColor { border: 1px solid #EFFDBD; }
<div style="border:3px solid #EFFDBD">Div</div>
This div border color is #EFFDBD.
.myOpacity80 { color: #EFFDBD; opacity: 0.8; }
<p style="color:#EFFDBD;opacity:0.8;">80%</p>
Text with #EFFDBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFFDBD;}
<p style="text-shadow: 3px 3px 1px #EFFDBD">Text here.</p>
This text has shadow with #EFFDBD color.
.textShadow {text-shadow: 3px 3px 1px #EFFDBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFFDBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFFDBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFFDBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFFDBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFFDBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFFDBD; -webkit-box-shadow: 1px 1px 3px 2px #EFFDBD; box-shadow: 1px 1px 3px 2px #EFFDBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFFDBD; -webkit-box-shadow: 1px 1px 3px 2px #EFFDBD; box-shadow:1px 1px 3px 2px #EFFDBD;">
Div content here</div>
This text has color #EFFDBD on black background.
This text has color #EFFDBD on white background.
This text has black color on #EFFDBD background.
This text has white color on #EFFDBD background.