HEX: #EDBE96
RGB: (237,190,150)
#EDBE96 contains mainly red and green colors. Web safe color of #EDBE96 is #FFCC99 (or #FC9).
#EDBE96 color RGB value is (237,190,150).
RGB: (237,190,150) (93%,75%,59%)
R 237 of 255 = 93%
G 190 of 255 = 75%
B 150 of 255 = 59%
R + G + B ~ 76%. #EDBE96 is quite light color.
R + G + B =
237 + 190 + 150 = 577 (100%)
R 237 of 577 ~ 41.07%
G 190 of 577 ~ 32.93%
B 150 of 577 ~ 26%
#EDBE96 color CMYK value is (0,20,37,7).
CMYK: (0,20,37,7) C0M20Y37K7 (0%,20%,37%,7%) (0.00/0.20/0.37/0.07)
ED | BE | 96 | |
---|---|---|---|
RGB | 237 | 190 | 150 |
HSL | 28° | 70.73% | 75.88% |
HSB/HSV | 28° | 36.71% | 92.94% |
CMYK | 0.00% | 19.83% | 36.71% |
7.06% |
HEX | ED | BE | 96 |
Decimal | 237 | 190 | 150 |
Binary | 11101101 | 10111110 | 10010110 |
Octal | 355 | 276 | 226 |
Examples of css and html codes for elements with #EDBE96 color. Also use rgb(237,190,150) instead hex code.
.myTextColor { color: #EDBE96; }
<p style="color:#EDBE96">This sample text font color is #EDBE96.</p>
This text font color is #EDBE96.
.myBgColor { background-color: #EDBE96; }
<div style="background-color:#EDBE96">Inner text</div>
This div background color is #EDBE96.
.myBorderColor { border: 1px solid #EDBE96; }
<div style="border:3px solid #EDBE96">Div</div>
This div border color is #EDBE96.
.myOpacity80 { color: #EDBE96; opacity: 0.8; }
<p style="color:#EDBE96;opacity:0.8;">80%</p>
Text with #EDBE96 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDBE96;}
<p style="text-shadow: 3px 3px 1px #EDBE96">Text here.</p>
This text has shadow with #EDBE96 color.
.textShadow {text-shadow: 3px 3px 1px #EDBE96, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDBE96, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDBE96 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDBE96, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDBE96, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDBE96 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDBE96; -webkit-box-shadow: 1px 1px 3px 2px #EDBE96; box-shadow: 1px 1px 3px 2px #EDBE96; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDBE96; -webkit-box-shadow: 1px 1px 3px 2px #EDBE96; box-shadow:1px 1px 3px 2px #EDBE96;">
Div content here</div>
This text has color #EDBE96 on black background.
This text has color #EDBE96 on white background.
This text has black color on #EDBE96 background.
This text has white color on #EDBE96 background.