HEX: #E74ADD
RGB: (231,74,221)
#E74ADD contains mainly red and blue colors. Web safe color of #E74ADD is #FF33CC (or #F3C).
#E74ADD color RGB value is (231,74,221).
RGB: (231,74,221) (91%,29%,87%)
R 231 of 255 = 91%
G 74 of 255 = 29%
B 221 of 255 = 87%
R + G + B ~ 69%. #E74ADD is quite light color.
R + G + B =
231 + 74 + 221 = 526 (100%)
R 231 of 526 ~ 43.92%
G 74 of 526 ~ 14.07%
B 221 of 526 ~ 42.02%
#E74ADD color CMYK value is (0,68,4,9).
CMYK: (0,68,4,9) C0M68Y4K9 (0%,68%,4%,9%) (0.00/0.68/0.04/0.09)
E7 | 4A | DD | |
---|---|---|---|
RGB | 231 | 74 | 221 |
HSL | 304° | 76.59% | 59.80% |
HSB/HSV | 304° | 67.97% | 90.59% |
CMYK | 0.00% | 67.97% | 4.33% |
9.41% |
HEX | E7 | 4A | DD |
Decimal | 231 | 74 | 221 |
Binary | 11100111 | 1001010 | 11011101 |
Octal | 347 | 112 | 335 |
Examples of css and html codes for elements with #E74ADD color. Also use rgb(231,74,221) instead hex code.
.myTextColor { color: #E74ADD; }
<p style="color:#E74ADD">This sample text font color is #E74ADD.</p>
This text font color is #E74ADD.
.myBgColor { background-color: #E74ADD; }
<div style="background-color:#E74ADD">Inner text</div>
This div background color is #E74ADD.
.myBorderColor { border: 1px solid #E74ADD; }
<div style="border:3px solid #E74ADD">Div</div>
This div border color is #E74ADD.
.myOpacity80 { color: #E74ADD; opacity: 0.8; }
<p style="color:#E74ADD;opacity:0.8;">80%</p>
Text with #E74ADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E74ADD;}
<p style="text-shadow: 3px 3px 1px #E74ADD">Text here.</p>
This text has shadow with #E74ADD color.
.textShadow {text-shadow: 3px 3px 1px #E74ADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E74ADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E74ADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E74ADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E74ADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E74ADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E74ADD; -webkit-box-shadow: 1px 1px 3px 2px #E74ADD; box-shadow: 1px 1px 3px 2px #E74ADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E74ADD; -webkit-box-shadow: 1px 1px 3px 2px #E74ADD; box-shadow:1px 1px 3px 2px #E74ADD;">
Div content here</div>
This text has color #E74ADD on black background.
This text has color #E74ADD on white background.
This text has black color on #E74ADD background.
This text has white color on #E74ADD background.