HEX: #ED326F
RGB: (237,50,111)
#ED326F contains mainly red color. Web safe color of #ED326F is #FF3366 (or #F36).
#ED326F color RGB value is (237,50,111).
RGB: (237,50,111) (93%,20%,44%)
R 237 of 255 = 93%
G 50 of 255 = 20%
B 111 of 255 = 44%
R + G + B ~ 52%. #ED326F is middle color (not dark and not light).
R + G + B =
237 + 50 + 111 = 398 (100%)
R 237 of 398 ~ 59.55%
G 50 of 398 ~ 12.56%
B 111 of 398 ~ 27.89%
#ED326F color CMYK value is (0,79,53,7).
CMYK: (0,79,53,7) C0M79Y53K7 (0%,79%,53%,7%) (0.00/0.79/0.53/0.07)
ED | 32 | 6F | |
---|---|---|---|
RGB | 237 | 50 | 111 |
HSL | 340° | 83.86% | 56.27% |
HSB/HSV | 340° | 78.90% | 92.94% |
CMYK | 0.00% | 78.90% | 53.16% |
7.06% |
HEX | ED | 32 | 6F |
Decimal | 237 | 50 | 111 |
Binary | 11101101 | 110010 | 1101111 |
Octal | 355 | 62 | 157 |
Examples of css and html codes for elements with #ED326F color. Also use rgb(237,50,111) instead hex code.
.myTextColor { color: #ED326F; }
<p style="color:#ED326F">This sample text font color is #ED326F.</p>
This text font color is #ED326F.
.myBgColor { background-color: #ED326F; }
<div style="background-color:#ED326F">Inner text</div>
This div background color is #ED326F.
.myBorderColor { border: 1px solid #ED326F; }
<div style="border:3px solid #ED326F">Div</div>
This div border color is #ED326F.
.myOpacity80 { color: #ED326F; opacity: 0.8; }
<p style="color:#ED326F;opacity:0.8;">80%</p>
Text with #ED326F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ED326F;}
<p style="text-shadow: 3px 3px 1px #ED326F">Text here.</p>
This text has shadow with #ED326F color.
.textShadow {text-shadow: 3px 3px 1px #ED326F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ED326F, 5px 5px 20px red">Text here.</p>
This text has shadow with #ED326F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ED326F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ED326F, Direction=45, Strength=4)">Text</p>
This text has shadow with #ED326F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ED326F; -webkit-box-shadow: 1px 1px 3px 2px #ED326F; box-shadow: 1px 1px 3px 2px #ED326F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ED326F; -webkit-box-shadow: 1px 1px 3px 2px #ED326F; box-shadow:1px 1px 3px 2px #ED326F;">
Div content here</div>
This text has color #ED326F on black background.
This text has color #ED326F on white background.
This text has black color on #ED326F background.
This text has white color on #ED326F background.