HEX: #EDECB1
RGB: (237,236,177)
#EDECB1 contains mainly red and green colors. Web safe color of #EDECB1 is #FFFF99 (or #FF9).
#EDECB1 color RGB value is (237,236,177).
RGB: (237,236,177) (93%,93%,69%)
R 237 of 255 = 93%
G 236 of 255 = 93%
B 177 of 255 = 69%
R + G + B ~ 85%. #EDECB1 is quite light color.
R + G + B =
237 + 236 + 177 = 650 (100%)
R 237 of 650 ~ 36.46%
G 236 of 650 ~ 36.31%
B 177 of 650 ~ 27.23%
#EDECB1 color CMYK value is (0,0,25,7).
CMYK: (0,0,25,7) C0M0Y25K7 (0%,0%,25%,7%) (0.00/0.00/0.25/0.07)
ED | EC | B1 | |
---|---|---|---|
RGB | 237 | 236 | 177 |
HSL | 59° | 62.50% | 81.18% |
HSB/HSV | 59° | 25.32% | 92.94% |
CMYK | 0.00% | 0.42% | 25.32% |
7.06% |
HEX | ED | EC | B1 |
Decimal | 237 | 236 | 177 |
Binary | 11101101 | 11101100 | 10110001 |
Octal | 355 | 354 | 261 |
Examples of css and html codes for elements with #EDECB1 color. Also use rgb(237,236,177) instead hex code.
.myTextColor { color: #EDECB1; }
<p style="color:#EDECB1">This sample text font color is #EDECB1.</p>
This text font color is #EDECB1.
.myBgColor { background-color: #EDECB1; }
<div style="background-color:#EDECB1">Inner text</div>
This div background color is #EDECB1.
.myBorderColor { border: 1px solid #EDECB1; }
<div style="border:3px solid #EDECB1">Div</div>
This div border color is #EDECB1.
.myOpacity80 { color: #EDECB1; opacity: 0.8; }
<p style="color:#EDECB1;opacity:0.8;">80%</p>
Text with #EDECB1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDECB1;}
<p style="text-shadow: 3px 3px 1px #EDECB1">Text here.</p>
This text has shadow with #EDECB1 color.
.textShadow {text-shadow: 3px 3px 1px #EDECB1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDECB1, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDECB1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDECB1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDECB1, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDECB1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDECB1; -webkit-box-shadow: 1px 1px 3px 2px #EDECB1; box-shadow: 1px 1px 3px 2px #EDECB1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDECB1; -webkit-box-shadow: 1px 1px 3px 2px #EDECB1; box-shadow:1px 1px 3px 2px #EDECB1;">
Div content here</div>
This text has color #EDECB1 on black background.
This text has color #EDECB1 on white background.
This text has black color on #EDECB1 background.
This text has white color on #EDECB1 background.