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