HEX: #E37955
RGB: (227,121,85)
#E37955 contains mainly red color. Web safe color of #E37955 is #CC6666 (or #C66).
#E37955 color RGB value is (227,121,85).
RGB: (227,121,85) (89%,47%,33%)
R 227 of 255 = 89%
G 121 of 255 = 47%
B 85 of 255 = 33%
R + G + B ~ 56%. #E37955 is middle color (not dark and not light).
R + G + B =
227 + 121 + 85 = 433 (100%)
R 227 of 433 ~ 52.42%
G 121 of 433 ~ 27.94%
B 85 of 433 ~ 19.63%
#E37955 color CMYK value is (0,47,63,11).
CMYK: (0,47,63,11) C0M47Y63K11 (0%,47%,63%,11%) (0.00/0.47/0.63/0.11)
E3 | 79 | 55 | |
---|---|---|---|
RGB | 227 | 121 | 85 |
HSL | 15° | 71.72% | 61.18% |
HSB/HSV | 15° | 62.56% | 89.02% |
CMYK | 0.00% | 46.70% | 62.56% |
10.98% |
HEX | E3 | 79 | 55 |
Decimal | 227 | 121 | 85 |
Binary | 11100011 | 1111001 | 1010101 |
Octal | 343 | 171 | 125 |
Examples of css and html codes for elements with #E37955 color. Also use rgb(227,121,85) instead hex code.
.myTextColor { color: #E37955; }
<p style="color:#E37955">This sample text font color is #E37955.</p>
This text font color is #E37955.
.myBgColor { background-color: #E37955; }
<div style="background-color:#E37955">Inner text</div>
This div background color is #E37955.
.myBorderColor { border: 1px solid #E37955; }
<div style="border:3px solid #E37955">Div</div>
This div border color is #E37955.
.myOpacity80 { color: #E37955; opacity: 0.8; }
<p style="color:#E37955;opacity:0.8;">80%</p>
Text with #E37955 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E37955;}
<p style="text-shadow: 3px 3px 1px #E37955">Text here.</p>
This text has shadow with #E37955 color.
.textShadow {text-shadow: 3px 3px 1px #E37955, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E37955, 5px 5px 20px red">Text here.</p>
This text has shadow with #E37955 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E37955, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E37955, Direction=45, Strength=4)">Text</p>
This text has shadow with #E37955 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E37955; -webkit-box-shadow: 1px 1px 3px 2px #E37955; box-shadow: 1px 1px 3px 2px #E37955; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E37955; -webkit-box-shadow: 1px 1px 3px 2px #E37955; box-shadow:1px 1px 3px 2px #E37955;">
Div content here</div>
This text has color #E37955 on black background.
This text has color #E37955 on white background.
This text has black color on #E37955 background.
This text has white color on #E37955 background.