HEX: #E59D99
RGB: (229,157,153)
#E59D99 contains mainly red color. Web safe color of #E59D99 is #CC9999 (or #C99).
#E59D99 color RGB value is (229,157,153).
RGB: (229,157,153) (90%,62%,60%)
R 229 of 255 = 90%
G 157 of 255 = 62%
B 153 of 255 = 60%
R + G + B ~ 71%. #E59D99 is quite light color.
R + G + B =
229 + 157 + 153 = 539 (100%)
R 229 of 539 ~ 42.49%
G 157 of 539 ~ 29.13%
B 153 of 539 ~ 28.39%
#E59D99 color CMYK value is (0,31,33,10).
CMYK: (0,31,33,10) C0M31Y33K10 (0%,31%,33%,10%) (0.00/0.31/0.33/0.10)
E5 | 9D | 99 | |
---|---|---|---|
RGB | 229 | 157 | 153 |
HSL | 3° | 59.38% | 74.90% |
HSB/HSV | 3° | 33.19% | 89.80% |
CMYK | 0.00% | 31.44% | 33.19% |
10.20% |
HEX | E5 | 9D | 99 |
Decimal | 229 | 157 | 153 |
Binary | 11100101 | 10011101 | 10011001 |
Octal | 345 | 235 | 231 |
Examples of css and html codes for elements with #E59D99 color. Also use rgb(229,157,153) instead hex code.
.myTextColor { color: #E59D99; }
<p style="color:#E59D99">This sample text font color is #E59D99.</p>
This text font color is #E59D99.
.myBgColor { background-color: #E59D99; }
<div style="background-color:#E59D99">Inner text</div>
This div background color is #E59D99.
.myBorderColor { border: 1px solid #E59D99; }
<div style="border:3px solid #E59D99">Div</div>
This div border color is #E59D99.
.myOpacity80 { color: #E59D99; opacity: 0.8; }
<p style="color:#E59D99;opacity:0.8;">80%</p>
Text with #E59D99 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E59D99;}
<p style="text-shadow: 3px 3px 1px #E59D99">Text here.</p>
This text has shadow with #E59D99 color.
.textShadow {text-shadow: 3px 3px 1px #E59D99, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E59D99, 5px 5px 20px red">Text here.</p>
This text has shadow with #E59D99 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E59D99, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E59D99, Direction=45, Strength=4)">Text</p>
This text has shadow with #E59D99 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E59D99; -webkit-box-shadow: 1px 1px 3px 2px #E59D99; box-shadow: 1px 1px 3px 2px #E59D99; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E59D99; -webkit-box-shadow: 1px 1px 3px 2px #E59D99; box-shadow:1px 1px 3px 2px #E59D99;">
Div content here</div>
This text has color #E59D99 on black background.
This text has color #E59D99 on white background.
This text has black color on #E59D99 background.
This text has white color on #E59D99 background.