HEX: #E6607A
RGB: (230,96,122)
#E6607A contains mainly red color. Web safe color of #E6607A is #CC6666 (or #C66).
#E6607A color RGB value is (230,96,122).
RGB: (230,96,122) (90%,38%,48%)
R 230 of 255 = 90%
G 96 of 255 = 38%
B 122 of 255 = 48%
R + G + B ~ 59%. #E6607A is middle color (not dark and not light).
R + G + B =
230 + 96 + 122 = 448 (100%)
R 230 of 448 ~ 51.34%
G 96 of 448 ~ 21.43%
B 122 of 448 ~ 27.23%
#E6607A color CMYK value is (0,58,47,10).
CMYK: (0,58,47,10) C0M58Y47K10 (0%,58%,47%,10%) (0.00/0.58/0.47/0.10)
E6 | 60 | 7A | |
---|---|---|---|
RGB | 230 | 96 | 122 |
HSL | 348° | 72.83% | 63.92% |
HSB/HSV | 348° | 58.26% | 90.20% |
CMYK | 0.00% | 58.26% | 46.96% |
9.80% |
HEX | E6 | 60 | 7A |
Decimal | 230 | 96 | 122 |
Binary | 11100110 | 1100000 | 1111010 |
Octal | 346 | 140 | 172 |
Examples of css and html codes for elements with #E6607A color. Also use rgb(230,96,122) instead hex code.
.myTextColor { color: #E6607A; }
<p style="color:#E6607A">This sample text font color is #E6607A.</p>
This text font color is #E6607A.
.myBgColor { background-color: #E6607A; }
<div style="background-color:#E6607A">Inner text</div>
This div background color is #E6607A.
.myBorderColor { border: 1px solid #E6607A; }
<div style="border:3px solid #E6607A">Div</div>
This div border color is #E6607A.
.myOpacity80 { color: #E6607A; opacity: 0.8; }
<p style="color:#E6607A;opacity:0.8;">80%</p>
Text with #E6607A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6607A;}
<p style="text-shadow: 3px 3px 1px #E6607A">Text here.</p>
This text has shadow with #E6607A color.
.textShadow {text-shadow: 3px 3px 1px #E6607A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6607A, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6607A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6607A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6607A, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6607A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6607A; -webkit-box-shadow: 1px 1px 3px 2px #E6607A; box-shadow: 1px 1px 3px 2px #E6607A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6607A; -webkit-box-shadow: 1px 1px 3px 2px #E6607A; box-shadow:1px 1px 3px 2px #E6607A;">
Div content here</div>
This text has color #E6607A on black background.
This text has color #E6607A on white background.
This text has black color on #E6607A background.
This text has white color on #E6607A background.