HEX: #E6ADAA
RGB: (230,173,170)
#E6ADAA contains mainly red and green colors. Web safe color of #E6ADAA is #CC9999 (or #C99).
#E6ADAA color RGB value is (230,173,170).
RGB: (230,173,170) (90%,68%,67%)
R 230 of 255 = 90%
G 173 of 255 = 68%
B 170 of 255 = 67%
R + G + B ~ 75%. #E6ADAA is quite light color.
R + G + B =
230 + 173 + 170 = 573 (100%)
R 230 of 573 ~ 40.14%
G 173 of 573 ~ 30.19%
B 170 of 573 ~ 29.67%
#E6ADAA color CMYK value is (0,25,26,10).
CMYK: (0,25,26,10) C0M25Y26K10 (0%,25%,26%,10%) (0.00/0.25/0.26/0.10)
E6 | AD | AA | |
---|---|---|---|
RGB | 230 | 173 | 170 |
HSL | 3° | 54.55% | 78.43% |
HSB/HSV | 3° | 26.09% | 90.20% |
CMYK | 0.00% | 24.78% | 26.09% |
9.80% |
HEX | E6 | AD | AA |
Decimal | 230 | 173 | 170 |
Binary | 11100110 | 10101101 | 10101010 |
Octal | 346 | 255 | 252 |
Examples of css and html codes for elements with #E6ADAA color. Also use rgb(230,173,170) instead hex code.
.myTextColor { color: #E6ADAA; }
<p style="color:#E6ADAA">This sample text font color is #E6ADAA.</p>
This text font color is #E6ADAA.
.myBgColor { background-color: #E6ADAA; }
<div style="background-color:#E6ADAA">Inner text</div>
This div background color is #E6ADAA.
.myBorderColor { border: 1px solid #E6ADAA; }
<div style="border:3px solid #E6ADAA">Div</div>
This div border color is #E6ADAA.
.myOpacity80 { color: #E6ADAA; opacity: 0.8; }
<p style="color:#E6ADAA;opacity:0.8;">80%</p>
Text with #E6ADAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6ADAA;}
<p style="text-shadow: 3px 3px 1px #E6ADAA">Text here.</p>
This text has shadow with #E6ADAA color.
.textShadow {text-shadow: 3px 3px 1px #E6ADAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6ADAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6ADAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6ADAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6ADAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6ADAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6ADAA; -webkit-box-shadow: 1px 1px 3px 2px #E6ADAA; box-shadow: 1px 1px 3px 2px #E6ADAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6ADAA; -webkit-box-shadow: 1px 1px 3px 2px #E6ADAA; box-shadow:1px 1px 3px 2px #E6ADAA;">
Div content here</div>
This text has color #E6ADAA on black background.
This text has color #E6ADAA on white background.
This text has black color on #E6ADAA background.
This text has white color on #E6ADAA background.