HEX: #E3ADAB
RGB: (227,173,171)
#E3ADAB contains red, green and blue colors in about the same proportion. Web safe color of #E3ADAB is #CC9999 (or #C99).
#E3ADAB color RGB value is (227,173,171).
RGB: (227,173,171) (89%,68%,67%)
R 227 of 255 = 89%
G 173 of 255 = 68%
B 171 of 255 = 67%
R + G + B ~ 75%. #E3ADAB is quite light color.
R + G + B =
227 + 173 + 171 = 571 (100%)
R 227 of 571 ~ 39.75%
G 173 of 571 ~ 30.3%
B 171 of 571 ~ 29.95%
#E3ADAB color CMYK value is (0,24,25,11).
CMYK: (0,24,25,11) C0M24Y25K11 (0%,24%,25%,11%) (0.00/0.24/0.25/0.11)
E3 | AD | AB | |
---|---|---|---|
RGB | 227 | 173 | 171 |
HSL | 2° | 50.00% | 78.04% |
HSB/HSV | 2° | 24.67% | 89.02% |
CMYK | 0.00% | 23.79% | 24.67% |
10.98% |
HEX | E3 | AD | AB |
Decimal | 227 | 173 | 171 |
Binary | 11100011 | 10101101 | 10101011 |
Octal | 343 | 255 | 253 |
Examples of css and html codes for elements with #E3ADAB color. Also use rgb(227,173,171) instead hex code.
.myTextColor { color: #E3ADAB; }
<p style="color:#E3ADAB">This sample text font color is #E3ADAB.</p>
This text font color is #E3ADAB.
.myBgColor { background-color: #E3ADAB; }
<div style="background-color:#E3ADAB">Inner text</div>
This div background color is #E3ADAB.
.myBorderColor { border: 1px solid #E3ADAB; }
<div style="border:3px solid #E3ADAB">Div</div>
This div border color is #E3ADAB.
.myOpacity80 { color: #E3ADAB; opacity: 0.8; }
<p style="color:#E3ADAB;opacity:0.8;">80%</p>
Text with #E3ADAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3ADAB;}
<p style="text-shadow: 3px 3px 1px #E3ADAB">Text here.</p>
This text has shadow with #E3ADAB color.
.textShadow {text-shadow: 3px 3px 1px #E3ADAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3ADAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3ADAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3ADAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3ADAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3ADAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3ADAB; -webkit-box-shadow: 1px 1px 3px 2px #E3ADAB; box-shadow: 1px 1px 3px 2px #E3ADAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3ADAB; -webkit-box-shadow: 1px 1px 3px 2px #E3ADAB; box-shadow:1px 1px 3px 2px #E3ADAB;">
Div content here</div>
This text has color #E3ADAB on black background.
This text has color #E3ADAB on white background.
This text has black color on #E3ADAB background.
This text has white color on #E3ADAB background.