HEX: #EE665C
RGB: (238,102,92)
#EE665C contains mainly red color. Web safe color of #EE665C is #FF6666 (or #F66).
#EE665C color RGB value is (238,102,92).
RGB: (238,102,92) (93%,40%,36%)
R 238 of 255 = 93%
G 102 of 255 = 40%
B 92 of 255 = 36%
R + G + B ~ 56%. #EE665C is middle color (not dark and not light).
R + G + B =
238 + 102 + 92 = 432 (100%)
R 238 of 432 ~ 55.09%
G 102 of 432 ~ 23.61%
B 92 of 432 ~ 21.3%
#EE665C color CMYK value is (0,57,61,7).
CMYK: (0,57,61,7) C0M57Y61K7 (0%,57%,61%,7%) (0.00/0.57/0.61/0.07)
EE | 66 | 5C | |
---|---|---|---|
RGB | 238 | 102 | 92 |
HSL | 4° | 81.11% | 64.71% |
HSB/HSV | 4° | 61.34% | 93.33% |
CMYK | 0.00% | 57.14% | 61.34% |
6.67% |
HEX | EE | 66 | 5C |
Decimal | 238 | 102 | 92 |
Binary | 11101110 | 1100110 | 1011100 |
Octal | 356 | 146 | 134 |
Examples of css and html codes for elements with #EE665C color. Also use rgb(238,102,92) instead hex code.
.myTextColor { color: #EE665C; }
<p style="color:#EE665C">This sample text font color is #EE665C.</p>
This text font color is #EE665C.
.myBgColor { background-color: #EE665C; }
<div style="background-color:#EE665C">Inner text</div>
This div background color is #EE665C.
.myBorderColor { border: 1px solid #EE665C; }
<div style="border:3px solid #EE665C">Div</div>
This div border color is #EE665C.
.myOpacity80 { color: #EE665C; opacity: 0.8; }
<p style="color:#EE665C;opacity:0.8;">80%</p>
Text with #EE665C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE665C;}
<p style="text-shadow: 3px 3px 1px #EE665C">Text here.</p>
This text has shadow with #EE665C color.
.textShadow {text-shadow: 3px 3px 1px #EE665C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE665C, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE665C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE665C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE665C, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE665C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE665C; -webkit-box-shadow: 1px 1px 3px 2px #EE665C; box-shadow: 1px 1px 3px 2px #EE665C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE665C; -webkit-box-shadow: 1px 1px 3px 2px #EE665C; box-shadow:1px 1px 3px 2px #EE665C;">
Div content here</div>
This text has color #EE665C on black background.
This text has color #EE665C on white background.
This text has black color on #EE665C background.
This text has white color on #EE665C background.