HEX: #EA5C6C
RGB: (234,92,108)
#EA5C6C contains mainly red color. Web safe color of #EA5C6C is #FF6666 (or #F66).
#EA5C6C color RGB value is (234,92,108).
RGB: (234,92,108) (92%,36%,42%)
R 234 of 255 = 92%
G 92 of 255 = 36%
B 108 of 255 = 42%
R + G + B ~ 57%. #EA5C6C is middle color (not dark and not light).
R + G + B =
234 + 92 + 108 = 434 (100%)
R 234 of 434 ~ 53.92%
G 92 of 434 ~ 21.2%
B 108 of 434 ~ 24.88%
#EA5C6C color CMYK value is (0,61,54,8).
CMYK: (0,61,54,8) C0M61Y54K8 (0%,61%,54%,8%) (0.00/0.61/0.54/0.08)
EA | 5C | 6C | |
---|---|---|---|
RGB | 234 | 92 | 108 |
HSL | 353° | 77.17% | 63.92% |
HSB/HSV | 353° | 60.68% | 91.76% |
CMYK | 0.00% | 60.68% | 53.85% |
8.24% |
HEX | EA | 5C | 6C |
Decimal | 234 | 92 | 108 |
Binary | 11101010 | 1011100 | 1101100 |
Octal | 352 | 134 | 154 |
Examples of css and html codes for elements with #EA5C6C color. Also use rgb(234,92,108) instead hex code.
.myTextColor { color: #EA5C6C; }
<p style="color:#EA5C6C">This sample text font color is #EA5C6C.</p>
This text font color is #EA5C6C.
.myBgColor { background-color: #EA5C6C; }
<div style="background-color:#EA5C6C">Inner text</div>
This div background color is #EA5C6C.
.myBorderColor { border: 1px solid #EA5C6C; }
<div style="border:3px solid #EA5C6C">Div</div>
This div border color is #EA5C6C.
.myOpacity80 { color: #EA5C6C; opacity: 0.8; }
<p style="color:#EA5C6C;opacity:0.8;">80%</p>
Text with #EA5C6C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EA5C6C;}
<p style="text-shadow: 3px 3px 1px #EA5C6C">Text here.</p>
This text has shadow with #EA5C6C color.
.textShadow {text-shadow: 3px 3px 1px #EA5C6C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EA5C6C, 5px 5px 20px red">Text here.</p>
This text has shadow with #EA5C6C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EA5C6C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EA5C6C, Direction=45, Strength=4)">Text</p>
This text has shadow with #EA5C6C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EA5C6C; -webkit-box-shadow: 1px 1px 3px 2px #EA5C6C; box-shadow: 1px 1px 3px 2px #EA5C6C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EA5C6C; -webkit-box-shadow: 1px 1px 3px 2px #EA5C6C; box-shadow:1px 1px 3px 2px #EA5C6C;">
Div content here</div>
This text has color #EA5C6C on black background.
This text has color #EA5C6C on white background.
This text has black color on #EA5C6C background.
This text has white color on #EA5C6C background.