HEX: #E67371
RGB: (230,115,113)
#E67371 contains mainly red color. Web safe color of #E67371 is #CC6666 (or #C66).
#E67371 color RGB value is (230,115,113).
RGB: (230,115,113) (90%,45%,44%)
R 230 of 255 = 90%
G 115 of 255 = 45%
B 113 of 255 = 44%
R + G + B ~ 60%. #E67371 is middle color (not dark and not light).
R + G + B =
230 + 115 + 113 = 458 (100%)
R 230 of 458 ~ 50.22%
G 115 of 458 ~ 25.11%
B 113 of 458 ~ 24.67%
#E67371 color CMYK value is (0,50,51,10).
CMYK: (0,50,51,10) C0M50Y51K10 (0%,50%,51%,10%) (0.00/0.50/0.51/0.10)
E6 | 73 | 71 | |
---|---|---|---|
RGB | 230 | 115 | 113 |
HSL | 1° | 70.06% | 67.25% |
HSB/HSV | 1° | 50.87% | 90.20% |
CMYK | 0.00% | 50.00% | 50.87% |
9.80% |
HEX | E6 | 73 | 71 |
Decimal | 230 | 115 | 113 |
Binary | 11100110 | 1110011 | 1110001 |
Octal | 346 | 163 | 161 |
Examples of css and html codes for elements with #E67371 color. Also use rgb(230,115,113) instead hex code.
.myTextColor { color: #E67371; }
<p style="color:#E67371">This sample text font color is #E67371.</p>
This text font color is #E67371.
.myBgColor { background-color: #E67371; }
<div style="background-color:#E67371">Inner text</div>
This div background color is #E67371.
.myBorderColor { border: 1px solid #E67371; }
<div style="border:3px solid #E67371">Div</div>
This div border color is #E67371.
.myOpacity80 { color: #E67371; opacity: 0.8; }
<p style="color:#E67371;opacity:0.8;">80%</p>
Text with #E67371 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E67371;}
<p style="text-shadow: 3px 3px 1px #E67371">Text here.</p>
This text has shadow with #E67371 color.
.textShadow {text-shadow: 3px 3px 1px #E67371, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E67371, 5px 5px 20px red">Text here.</p>
This text has shadow with #E67371 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E67371, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E67371, Direction=45, Strength=4)">Text</p>
This text has shadow with #E67371 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E67371; -webkit-box-shadow: 1px 1px 3px 2px #E67371; box-shadow: 1px 1px 3px 2px #E67371; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E67371; -webkit-box-shadow: 1px 1px 3px 2px #E67371; box-shadow:1px 1px 3px 2px #E67371;">
Div content here</div>
This text has color #E67371 on black background.
This text has color #E67371 on white background.
This text has black color on #E67371 background.
This text has white color on #E67371 background.