HEX: #EDAA6C
RGB: (237,170,108)
#EDAA6C contains mainly red color. Web safe color of #EDAA6C is #FF9966 (or #F96).
#EDAA6C color RGB value is (237,170,108).
RGB: (237,170,108) (93%,67%,42%)
R 237 of 255 = 93%
G 170 of 255 = 67%
B 108 of 255 = 42%
R + G + B ~ 67%. #EDAA6C is quite light color.
R + G + B =
237 + 170 + 108 = 515 (100%)
R 237 of 515 ~ 46.02%
G 170 of 515 ~ 33.01%
B 108 of 515 ~ 20.97%
#EDAA6C color CMYK value is (0,28,54,7).
CMYK: (0,28,54,7) C0M28Y54K7 (0%,28%,54%,7%) (0.00/0.28/0.54/0.07)
ED | AA | 6C | |
---|---|---|---|
RGB | 237 | 170 | 108 |
HSL | 29° | 78.18% | 67.65% |
HSB/HSV | 29° | 54.43% | 92.94% |
CMYK | 0.00% | 28.27% | 54.43% |
7.06% |
HEX | ED | AA | 6C |
Decimal | 237 | 170 | 108 |
Binary | 11101101 | 10101010 | 1101100 |
Octal | 355 | 252 | 154 |
Examples of css and html codes for elements with #EDAA6C color. Also use rgb(237,170,108) instead hex code.
.myTextColor { color: #EDAA6C; }
<p style="color:#EDAA6C">This sample text font color is #EDAA6C.</p>
This text font color is #EDAA6C.
.myBgColor { background-color: #EDAA6C; }
<div style="background-color:#EDAA6C">Inner text</div>
This div background color is #EDAA6C.
.myBorderColor { border: 1px solid #EDAA6C; }
<div style="border:3px solid #EDAA6C">Div</div>
This div border color is #EDAA6C.
.myOpacity80 { color: #EDAA6C; opacity: 0.8; }
<p style="color:#EDAA6C;opacity:0.8;">80%</p>
Text with #EDAA6C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDAA6C;}
<p style="text-shadow: 3px 3px 1px #EDAA6C">Text here.</p>
This text has shadow with #EDAA6C color.
.textShadow {text-shadow: 3px 3px 1px #EDAA6C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDAA6C, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDAA6C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDAA6C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDAA6C, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDAA6C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDAA6C; -webkit-box-shadow: 1px 1px 3px 2px #EDAA6C; box-shadow: 1px 1px 3px 2px #EDAA6C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDAA6C; -webkit-box-shadow: 1px 1px 3px 2px #EDAA6C; box-shadow:1px 1px 3px 2px #EDAA6C;">
Div content here</div>
This text has color #EDAA6C on black background.
This text has color #EDAA6C on white background.
This text has black color on #EDAA6C background.
This text has white color on #EDAA6C background.