HEX: #E6A09C
RGB: (230,160,156)
#E6A09C contains mainly red color. Web safe color of #E6A09C is #CC9999 (or #C99).
#E6A09C color RGB value is (230,160,156).
RGB: (230,160,156) (90%,63%,61%)
R 230 of 255 = 90%
G 160 of 255 = 63%
B 156 of 255 = 61%
R + G + B ~ 71%. #E6A09C is quite light color.
R + G + B =
230 + 160 + 156 = 546 (100%)
R 230 of 546 ~ 42.12%
G 160 of 546 ~ 29.3%
B 156 of 546 ~ 28.57%
#E6A09C color CMYK value is (0,30,32,10).
CMYK: (0,30,32,10) C0M30Y32K10 (0%,30%,32%,10%) (0.00/0.30/0.32/0.10)
E6 | A0 | 9C | |
---|---|---|---|
RGB | 230 | 160 | 156 |
HSL | 3° | 59.68% | 75.69% |
HSB/HSV | 3° | 32.17% | 90.20% |
CMYK | 0.00% | 30.43% | 32.17% |
9.80% |
HEX | E6 | A0 | 9C |
Decimal | 230 | 160 | 156 |
Binary | 11100110 | 10100000 | 10011100 |
Octal | 346 | 240 | 234 |
Examples of css and html codes for elements with #E6A09C color. Also use rgb(230,160,156) instead hex code.
.myTextColor { color: #E6A09C; }
<p style="color:#E6A09C">This sample text font color is #E6A09C.</p>
This text font color is #E6A09C.
.myBgColor { background-color: #E6A09C; }
<div style="background-color:#E6A09C">Inner text</div>
This div background color is #E6A09C.
.myBorderColor { border: 1px solid #E6A09C; }
<div style="border:3px solid #E6A09C">Div</div>
This div border color is #E6A09C.
.myOpacity80 { color: #E6A09C; opacity: 0.8; }
<p style="color:#E6A09C;opacity:0.8;">80%</p>
Text with #E6A09C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6A09C;}
<p style="text-shadow: 3px 3px 1px #E6A09C">Text here.</p>
This text has shadow with #E6A09C color.
.textShadow {text-shadow: 3px 3px 1px #E6A09C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6A09C, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6A09C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6A09C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6A09C, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6A09C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6A09C; -webkit-box-shadow: 1px 1px 3px 2px #E6A09C; box-shadow: 1px 1px 3px 2px #E6A09C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6A09C; -webkit-box-shadow: 1px 1px 3px 2px #E6A09C; box-shadow:1px 1px 3px 2px #E6A09C;">
Div content here</div>
This text has color #E6A09C on black background.
This text has color #E6A09C on white background.
This text has black color on #E6A09C background.
This text has white color on #E6A09C background.