HEX: #EFFBD2
RGB: (239,251,210)
#EFFBD2 contains red, green and blue colors in about the same proportion. Web safe color of #EFFBD2 is #FFFFCC (or #FFC).
#EFFBD2 color RGB value is (239,251,210).
RGB: (239,251,210) (94%,98%,82%)
R 239 of 255 = 94%
G 251 of 255 = 98%
B 210 of 255 = 82%
R + G + B ~ 91%. #EFFBD2 is light color.
R + G + B =
239 + 251 + 210 = 700 (100%)
R 239 of 700 ~ 34.14%
G 251 of 700 ~ 35.86%
B 210 of 700 ~ 30%
#EFFBD2 color CMYK value is (5,0,16,2).
CMYK: (5,0,16,2) C5M0Y16K2 (5%,0%,16%,2%) (0.05/0.00/0.16/0.02)
EF | FB | D2 | |
---|---|---|---|
RGB | 239 | 251 | 210 |
HSL | 78° | 83.67% | 90.39% |
HSB/HSV | 78° | 16.33% | 98.43% |
CMYK | 4.78% | 0.00% | 16.33% |
1.57% |
HEX | EF | FB | D2 |
Decimal | 239 | 251 | 210 |
Binary | 11101111 | 11111011 | 11010010 |
Octal | 357 | 373 | 322 |
Examples of css and html codes for elements with #EFFBD2 color. Also use rgb(239,251,210) instead hex code.
.myTextColor { color: #EFFBD2; }
<p style="color:#EFFBD2">This sample text font color is #EFFBD2.</p>
This text font color is #EFFBD2.
.myBgColor { background-color: #EFFBD2; }
<div style="background-color:#EFFBD2">Inner text</div>
This div background color is #EFFBD2.
.myBorderColor { border: 1px solid #EFFBD2; }
<div style="border:3px solid #EFFBD2">Div</div>
This div border color is #EFFBD2.
.myOpacity80 { color: #EFFBD2; opacity: 0.8; }
<p style="color:#EFFBD2;opacity:0.8;">80%</p>
Text with #EFFBD2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFFBD2;}
<p style="text-shadow: 3px 3px 1px #EFFBD2">Text here.</p>
This text has shadow with #EFFBD2 color.
.textShadow {text-shadow: 3px 3px 1px #EFFBD2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFFBD2, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFFBD2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFFBD2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFFBD2, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFFBD2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFFBD2; -webkit-box-shadow: 1px 1px 3px 2px #EFFBD2; box-shadow: 1px 1px 3px 2px #EFFBD2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFFBD2; -webkit-box-shadow: 1px 1px 3px 2px #EFFBD2; box-shadow:1px 1px 3px 2px #EFFBD2;">
Div content here</div>
This text has color #EFFBD2 on black background.
This text has color #EFFBD2 on white background.
This text has black color on #EFFBD2 background.
This text has white color on #EFFBD2 background.