HEX: #EB74DB
RGB: (235,116,219)
#EB74DB contains mainly red and blue colors. Web safe color of #EB74DB is #FF66CC (or #F6C).
#EB74DB color RGB value is (235,116,219).
RGB: (235,116,219) (92%,45%,86%)
R 235 of 255 = 92%
G 116 of 255 = 45%
B 219 of 255 = 86%
R + G + B ~ 74%. #EB74DB is quite light color.
R + G + B =
235 + 116 + 219 = 570 (100%)
R 235 of 570 ~ 41.23%
G 116 of 570 ~ 20.35%
B 219 of 570 ~ 38.42%
#EB74DB color CMYK value is (0,51,7,8).
CMYK: (0,51,7,8) C0M51Y7K8 (0%,51%,7%,8%) (0.00/0.51/0.07/0.08)
EB | 74 | DB | |
---|---|---|---|
RGB | 235 | 116 | 219 |
HSL | 308° | 74.84% | 68.82% |
HSB/HSV | 308° | 50.64% | 92.16% |
CMYK | 0.00% | 50.64% | 6.81% |
7.84% |
HEX | EB | 74 | DB |
Decimal | 235 | 116 | 219 |
Binary | 11101011 | 1110100 | 11011011 |
Octal | 353 | 164 | 333 |
Examples of css and html codes for elements with #EB74DB color. Also use rgb(235,116,219) instead hex code.
.myTextColor { color: #EB74DB; }
<p style="color:#EB74DB">This sample text font color is #EB74DB.</p>
This text font color is #EB74DB.
.myBgColor { background-color: #EB74DB; }
<div style="background-color:#EB74DB">Inner text</div>
This div background color is #EB74DB.
.myBorderColor { border: 1px solid #EB74DB; }
<div style="border:3px solid #EB74DB">Div</div>
This div border color is #EB74DB.
.myOpacity80 { color: #EB74DB; opacity: 0.8; }
<p style="color:#EB74DB;opacity:0.8;">80%</p>
Text with #EB74DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EB74DB;}
<p style="text-shadow: 3px 3px 1px #EB74DB">Text here.</p>
This text has shadow with #EB74DB color.
.textShadow {text-shadow: 3px 3px 1px #EB74DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EB74DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EB74DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EB74DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EB74DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EB74DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EB74DB; -webkit-box-shadow: 1px 1px 3px 2px #EB74DB; box-shadow: 1px 1px 3px 2px #EB74DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EB74DB; -webkit-box-shadow: 1px 1px 3px 2px #EB74DB; box-shadow:1px 1px 3px 2px #EB74DB;">
Div content here</div>
This text has color #EB74DB on black background.
This text has color #EB74DB on white background.
This text has black color on #EB74DB background.
This text has white color on #EB74DB background.