HEX: #EDEDCC
RGB: (237,237,204)
#EDEDCC contains red, green and blue colors in about the same proportion. Web safe color of #EDEDCC is #FFFFCC (or #FFC).
#EDEDCC color RGB value is (237,237,204).
RGB: (237,237,204)
(93%, 93%, 80%)
R 237 of 255 = 93%
G 237 of 255 = 93%
B 204 of 255 = 80%
R + G + B ~ 89%. #EDEDCC is light color.
R + G + B = 237 + 237 + 204 = 678 (100%)
R 237 of 678 ~ 34.96%
G 237 of 678 ~ 34.96%
B 204 of 678 ~ 30.09'%
#EDEDCC color CMYK value is (0,0,14,7).
CMYK: (0,0,14,7) C0M0Y14K7 (0%,0%,14%,7%) (0.00/0.00/0.14/0.07)
Color #EDEDCC in popluar color models
ED | ED | CC | |
---|---|---|---|
RGB | 237 | 237 | 204 |
HSL | 60° | 47.83% | 86.47% |
HSB/HSV | 60° | 13.92% | 92.94% |
CMYK | 0.00% | 0.00% | 13.92% |
7.06% |
Color #EDEDCC in popluar number systems.
HEX | ED | ED | CC |
Decimal | 237 | 237 | 204 |
Binary | 11101101 | 11101101 | 11001100 |
Octal | 355 | 355 | 314 |
Shades of #EDEDCC
Tints of #EDEDCC
Examples of css and html codes for elements with #EDEDCC color. Also use rgb(237,237,204) instead hex code.
.myTextColor { color: #EDEDCC; }
<p style="color:#EDEDCC">This sample text font color is #EDEDCC.</p>
This text font color is #EDEDCC.
.myBgColor { background-color: #EDEDCC; }
<div style="background-color:#EDEDCC">Inner text</div>
This div background color is #EDEDCC.
.myBorderColor { border: 1px solid #EDEDCC; }
<div style="border:3px solid #EDEDCC">Div</div>
This div border color is #EDEDCC.
.myOpacity80 { color: #EDEDCC; opacity: 0.8; }
<p style="color:#EDEDCC;opacity:0.8;">80%</p>
Text with #EDEDCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDEDCC;}
<p style="text-shadow: 3px 3px 1px #EDEDCC">Text here.</p>
This text has shadow with #EDEDCC color.
.textShadow {text-shadow: 3px 3px 1px #EDEDCC', 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDEDCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDEDCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDEDCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDEDCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDEDCC and red colors in old Internet Explorer.
/* css code */
.divShadow
{
-moz-box-shadow: 1px 1px 3px 2px #EDEDCC;
-webkit-box-shadow: 1px 1px 3px 2px #EDEDCC;
box-shadow: 1px 1px 3px 2px #EDEDCC;
}
/* html code with inline style */
<div style="-moz-box-shadow: 1px 1px 3px 2px #EDEDCC; -webkit-box-shadow: 1px 1px 3px 2px #EDEDCC; box-shadow:1px 1px 3px 2px #EDEDCC;">
Div content here
</div>
This text has color #EDEDCC on black background.
This text has color #EDEDCC on white background.
This text has black color on #EDEDCC background.
This text has white color on #EDEDCC background.