HEX: #EDE6AF
RGB: (237,230,175)
#EDE6AF contains mainly red and green colors. Web safe color of #EDE6AF is #FFCC99 (or #FC9).
#EDE6AF color RGB value is (237,230,175).
RGB: (237,230,175) (93%,90%,69%)
R 237 of 255 = 93%
G 230 of 255 = 90%
B 175 of 255 = 69%
R + G + B ~ 84%. #EDE6AF is quite light color.
R + G + B =
237 + 230 + 175 = 642 (100%)
R 237 of 642 ~ 36.92%
G 230 of 642 ~ 35.83%
B 175 of 642 ~ 27.26%
#EDE6AF color CMYK value is (0,3,26,7).
CMYK: (0,3,26,7) C0M3Y26K7 (0%,3%,26%,7%) (0.00/0.03/0.26/0.07)
ED | E6 | AF | |
---|---|---|---|
RGB | 237 | 230 | 175 |
HSL | 53° | 63.27% | 80.78% |
HSB/HSV | 53° | 26.16% | 92.94% |
CMYK | 0.00% | 2.95% | 26.16% |
7.06% |
HEX | ED | E6 | AF |
Decimal | 237 | 230 | 175 |
Binary | 11101101 | 11100110 | 10101111 |
Octal | 355 | 346 | 257 |
Examples of css and html codes for elements with #EDE6AF color. Also use rgb(237,230,175) instead hex code.
.myTextColor { color: #EDE6AF; }
<p style="color:#EDE6AF">This sample text font color is #EDE6AF.</p>
This text font color is #EDE6AF.
.myBgColor { background-color: #EDE6AF; }
<div style="background-color:#EDE6AF">Inner text</div>
This div background color is #EDE6AF.
.myBorderColor { border: 1px solid #EDE6AF; }
<div style="border:3px solid #EDE6AF">Div</div>
This div border color is #EDE6AF.
.myOpacity80 { color: #EDE6AF; opacity: 0.8; }
<p style="color:#EDE6AF;opacity:0.8;">80%</p>
Text with #EDE6AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDE6AF;}
<p style="text-shadow: 3px 3px 1px #EDE6AF">Text here.</p>
This text has shadow with #EDE6AF color.
.textShadow {text-shadow: 3px 3px 1px #EDE6AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDE6AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDE6AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDE6AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDE6AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDE6AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDE6AF; -webkit-box-shadow: 1px 1px 3px 2px #EDE6AF; box-shadow: 1px 1px 3px 2px #EDE6AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDE6AF; -webkit-box-shadow: 1px 1px 3px 2px #EDE6AF; box-shadow:1px 1px 3px 2px #EDE6AF;">
Div content here</div>
This text has color #EDE6AF on black background.
This text has color #EDE6AF on white background.
This text has black color on #EDE6AF background.
This text has white color on #EDE6AF background.