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