HEX: #E6209A
RGB: (230,32,154)
#E6209A contains mainly red color. Web safe color of #E6209A is #CC3399 (or #C39).
#E6209A color RGB value is (230,32,154).
RGB: (230,32,154) (90%,13%,60%)
R 230 of 255 = 90%
G 32 of 255 = 13%
B 154 of 255 = 60%
R + G + B ~ 54%. #E6209A is middle color (not dark and not light).
R + G + B =
230 + 32 + 154 = 416 (100%)
R 230 of 416 ~ 55.29%
G 32 of 416 ~ 7.69%
B 154 of 416 ~ 37.02%
#E6209A color CMYK value is (0,86,33,10).
CMYK: (0,86,33,10) C0M86Y33K10 (0%,86%,33%,10%) (0.00/0.86/0.33/0.10)
E6 | 20 | 9A | |
---|---|---|---|
RGB | 230 | 32 | 154 |
HSL | 323° | 79.84% | 51.37% |
HSB/HSV | 323° | 86.09% | 90.20% |
CMYK | 0.00% | 86.09% | 33.04% |
9.80% |
HEX | E6 | 20 | 9A |
Decimal | 230 | 32 | 154 |
Binary | 11100110 | 100000 | 10011010 |
Octal | 346 | 40 | 232 |
Examples of css and html codes for elements with #E6209A color. Also use rgb(230,32,154) instead hex code.
.myTextColor { color: #E6209A; }
<p style="color:#E6209A">This sample text font color is #E6209A.</p>
This text font color is #E6209A.
.myBgColor { background-color: #E6209A; }
<div style="background-color:#E6209A">Inner text</div>
This div background color is #E6209A.
.myBorderColor { border: 1px solid #E6209A; }
<div style="border:3px solid #E6209A">Div</div>
This div border color is #E6209A.
.myOpacity80 { color: #E6209A; opacity: 0.8; }
<p style="color:#E6209A;opacity:0.8;">80%</p>
Text with #E6209A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6209A;}
<p style="text-shadow: 3px 3px 1px #E6209A">Text here.</p>
This text has shadow with #E6209A color.
.textShadow {text-shadow: 3px 3px 1px #E6209A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6209A, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6209A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6209A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6209A, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6209A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6209A; -webkit-box-shadow: 1px 1px 3px 2px #E6209A; box-shadow: 1px 1px 3px 2px #E6209A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6209A; -webkit-box-shadow: 1px 1px 3px 2px #E6209A; box-shadow:1px 1px 3px 2px #E6209A;">
Div content here</div>
This text has color #E6209A on black background.
This text has color #E6209A on white background.
This text has black color on #E6209A background.
This text has white color on #E6209A background.