HEX: #EC614B
RGB: (236,97,75)
#EC614B contains mainly red color. Web safe color of #EC614B is #FF6633 (or #F63).
#EC614B color RGB value is (236,97,75).
RGB: (236,97,75) (93%,38%,29%)
R 236 of 255 = 93%
G 97 of 255 = 38%
B 75 of 255 = 29%
R + G + B ~ 53%. #EC614B is middle color (not dark and not light).
R + G + B =
236 + 97 + 75 = 408 (100%)
R 236 of 408 ~ 57.84%
G 97 of 408 ~ 23.77%
B 75 of 408 ~ 18.38%
#EC614B color CMYK value is (0,59,68,7).
CMYK: (0,59,68,7) C0M59Y68K7 (0%,59%,68%,7%) (0.00/0.59/0.68/0.07)
EC | 61 | 4B | |
---|---|---|---|
RGB | 236 | 97 | 75 |
HSL | 8° | 80.90% | 60.98% |
HSB/HSV | 8° | 68.22% | 92.55% |
CMYK | 0.00% | 58.90% | 68.22% |
7.45% |
HEX | EC | 61 | 4B |
Decimal | 236 | 97 | 75 |
Binary | 11101100 | 1100001 | 1001011 |
Octal | 354 | 141 | 113 |
Examples of css and html codes for elements with #EC614B color. Also use rgb(236,97,75) instead hex code.
.myTextColor { color: #EC614B; }
<p style="color:#EC614B">This sample text font color is #EC614B.</p>
This text font color is #EC614B.
.myBgColor { background-color: #EC614B; }
<div style="background-color:#EC614B">Inner text</div>
This div background color is #EC614B.
.myBorderColor { border: 1px solid #EC614B; }
<div style="border:3px solid #EC614B">Div</div>
This div border color is #EC614B.
.myOpacity80 { color: #EC614B; opacity: 0.8; }
<p style="color:#EC614B;opacity:0.8;">80%</p>
Text with #EC614B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EC614B;}
<p style="text-shadow: 3px 3px 1px #EC614B">Text here.</p>
This text has shadow with #EC614B color.
.textShadow {text-shadow: 3px 3px 1px #EC614B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EC614B, 5px 5px 20px red">Text here.</p>
This text has shadow with #EC614B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EC614B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EC614B, Direction=45, Strength=4)">Text</p>
This text has shadow with #EC614B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EC614B; -webkit-box-shadow: 1px 1px 3px 2px #EC614B; box-shadow: 1px 1px 3px 2px #EC614B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EC614B; -webkit-box-shadow: 1px 1px 3px 2px #EC614B; box-shadow:1px 1px 3px 2px #EC614B;">
Div content here</div>
This text has color #EC614B on black background.
This text has color #EC614B on white background.
This text has black color on #EC614B background.
This text has white color on #EC614B background.