HEX: #EDB576
RGB: (237,181,118)
#EDB576 contains mainly red and green colors. Web safe color of #EDB576 is #FFCC66 (or #FC6).
#EDB576 color RGB value is (237,181,118).
RGB: (237,181,118) (93%,71%,46%)
R 237 of 255 = 93%
G 181 of 255 = 71%
B 118 of 255 = 46%
R + G + B ~ 70%. #EDB576 is quite light color.
R + G + B =
237 + 181 + 118 = 536 (100%)
R 237 of 536 ~ 44.22%
G 181 of 536 ~ 33.77%
B 118 of 536 ~ 22.01%
#EDB576 color CMYK value is (0,24,50,7).
CMYK: (0,24,50,7) C0M24Y50K7 (0%,24%,50%,7%) (0.00/0.24/0.50/0.07)
ED | B5 | 76 | |
---|---|---|---|
RGB | 237 | 181 | 118 |
HSL | 32° | 76.77% | 69.61% |
HSB/HSV | 32° | 50.21% | 92.94% |
CMYK | 0.00% | 23.63% | 50.21% |
7.06% |
HEX | ED | B5 | 76 |
Decimal | 237 | 181 | 118 |
Binary | 11101101 | 10110101 | 1110110 |
Octal | 355 | 265 | 166 |
Examples of css and html codes for elements with #EDB576 color. Also use rgb(237,181,118) instead hex code.
.myTextColor { color: #EDB576; }
<p style="color:#EDB576">This sample text font color is #EDB576.</p>
This text font color is #EDB576.
.myBgColor { background-color: #EDB576; }
<div style="background-color:#EDB576">Inner text</div>
This div background color is #EDB576.
.myBorderColor { border: 1px solid #EDB576; }
<div style="border:3px solid #EDB576">Div</div>
This div border color is #EDB576.
.myOpacity80 { color: #EDB576; opacity: 0.8; }
<p style="color:#EDB576;opacity:0.8;">80%</p>
Text with #EDB576 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDB576;}
<p style="text-shadow: 3px 3px 1px #EDB576">Text here.</p>
This text has shadow with #EDB576 color.
.textShadow {text-shadow: 3px 3px 1px #EDB576, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDB576, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDB576 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDB576, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDB576, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDB576 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDB576; -webkit-box-shadow: 1px 1px 3px 2px #EDB576; box-shadow: 1px 1px 3px 2px #EDB576; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDB576; -webkit-box-shadow: 1px 1px 3px 2px #EDB576; box-shadow:1px 1px 3px 2px #EDB576;">
Div content here</div>
This text has color #EDB576 on black background.
This text has color #EDB576 on white background.
This text has black color on #EDB576 background.
This text has white color on #EDB576 background.