HEX: #E3895A
RGB: (227,137,90)
#E3895A contains mainly red color. Web safe color of #E3895A is #CC9966 (or #C96).
#E3895A color RGB value is (227,137,90).
RGB: (227,137,90) (89%,54%,35%)
R 227 of 255 = 89%
G 137 of 255 = 54%
B 90 of 255 = 35%
R + G + B ~ 59%. #E3895A is middle color (not dark and not light).
R + G + B =
227 + 137 + 90 = 454 (100%)
R 227 of 454 ~ 50%
G 137 of 454 ~ 30.18%
B 90 of 454 ~ 19.82%
#E3895A color CMYK value is (0,40,60,11).
CMYK: (0,40,60,11) C0M40Y60K11 (0%,40%,60%,11%) (0.00/0.40/0.60/0.11)
E3 | 89 | 5A | |
---|---|---|---|
RGB | 227 | 137 | 90 |
HSL | 21° | 70.98% | 62.16% |
HSB/HSV | 21° | 60.35% | 89.02% |
CMYK | 0.00% | 39.65% | 60.35% |
10.98% |
HEX | E3 | 89 | 5A |
Decimal | 227 | 137 | 90 |
Binary | 11100011 | 10001001 | 1011010 |
Octal | 343 | 211 | 132 |
Examples of css and html codes for elements with #E3895A color. Also use rgb(227,137,90) instead hex code.
.myTextColor { color: #E3895A; }
<p style="color:#E3895A">This sample text font color is #E3895A.</p>
This text font color is #E3895A.
.myBgColor { background-color: #E3895A; }
<div style="background-color:#E3895A">Inner text</div>
This div background color is #E3895A.
.myBorderColor { border: 1px solid #E3895A; }
<div style="border:3px solid #E3895A">Div</div>
This div border color is #E3895A.
.myOpacity80 { color: #E3895A; opacity: 0.8; }
<p style="color:#E3895A;opacity:0.8;">80%</p>
Text with #E3895A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3895A;}
<p style="text-shadow: 3px 3px 1px #E3895A">Text here.</p>
This text has shadow with #E3895A color.
.textShadow {text-shadow: 3px 3px 1px #E3895A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3895A, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3895A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3895A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3895A, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3895A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3895A; -webkit-box-shadow: 1px 1px 3px 2px #E3895A; box-shadow: 1px 1px 3px 2px #E3895A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3895A; -webkit-box-shadow: 1px 1px 3px 2px #E3895A; box-shadow:1px 1px 3px 2px #E3895A;">
Div content here</div>
This text has color #E3895A on black background.
This text has color #E3895A on white background.
This text has black color on #E3895A background.
This text has white color on #E3895A background.