HEX: #E6897C
RGB: (230,137,124)
#E6897C contains mainly red color. Web safe color of #E6897C is #CC9966 (or #C96).
#E6897C color RGB value is (230,137,124).
RGB: (230,137,124) (90%,54%,49%)
R 230 of 255 = 90%
G 137 of 255 = 54%
B 124 of 255 = 49%
R + G + B ~ 64%. #E6897C is quite light color.
R + G + B =
230 + 137 + 124 = 491 (100%)
R 230 of 491 ~ 46.84%
G 137 of 491 ~ 27.9%
B 124 of 491 ~ 25.25%
#E6897C color CMYK value is (0,40,46,10).
CMYK: (0,40,46,10) C0M40Y46K10 (0%,40%,46%,10%) (0.00/0.40/0.46/0.10)
E6 | 89 | 7C | |
---|---|---|---|
RGB | 230 | 137 | 124 |
HSL | 7° | 67.95% | 69.41% |
HSB/HSV | 7° | 46.09% | 90.20% |
CMYK | 0.00% | 40.43% | 46.09% |
9.80% |
HEX | E6 | 89 | 7C |
Decimal | 230 | 137 | 124 |
Binary | 11100110 | 10001001 | 1111100 |
Octal | 346 | 211 | 174 |
Examples of css and html codes for elements with #E6897C color. Also use rgb(230,137,124) instead hex code.
.myTextColor { color: #E6897C; }
<p style="color:#E6897C">This sample text font color is #E6897C.</p>
This text font color is #E6897C.
.myBgColor { background-color: #E6897C; }
<div style="background-color:#E6897C">Inner text</div>
This div background color is #E6897C.
.myBorderColor { border: 1px solid #E6897C; }
<div style="border:3px solid #E6897C">Div</div>
This div border color is #E6897C.
.myOpacity80 { color: #E6897C; opacity: 0.8; }
<p style="color:#E6897C;opacity:0.8;">80%</p>
Text with #E6897C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6897C;}
<p style="text-shadow: 3px 3px 1px #E6897C">Text here.</p>
This text has shadow with #E6897C color.
.textShadow {text-shadow: 3px 3px 1px #E6897C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6897C, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6897C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6897C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6897C, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6897C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6897C; -webkit-box-shadow: 1px 1px 3px 2px #E6897C; box-shadow: 1px 1px 3px 2px #E6897C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6897C; -webkit-box-shadow: 1px 1px 3px 2px #E6897C; box-shadow:1px 1px 3px 2px #E6897C;">
Div content here</div>
This text has color #E6897C on black background.
This text has color #E6897C on white background.
This text has black color on #E6897C background.
This text has white color on #E6897C background.