HEX: #EF6FAC
RGB: (239,111,172)
#EF6FAC contains mainly red color. Web safe color of #EF6FAC is #FF6699 (or #F69).
#EF6FAC color RGB value is (239,111,172).
RGB: (239,111,172) (94%,44%,67%)
R 239 of 255 = 94%
G 111 of 255 = 44%
B 172 of 255 = 67%
R + G + B ~ 68%. #EF6FAC is quite light color.
R + G + B =
239 + 111 + 172 = 522 (100%)
R 239 of 522 ~ 45.79%
G 111 of 522 ~ 21.26%
B 172 of 522 ~ 32.95%
#EF6FAC color CMYK value is (0,54,28,6).
CMYK: (0,54,28,6) C0M54Y28K6 (0%,54%,28%,6%) (0.00/0.54/0.28/0.06)
EF | 6F | AC | |
---|---|---|---|
RGB | 239 | 111 | 172 |
HSL | 331° | 80.00% | 68.63% |
HSB/HSV | 331° | 53.56% | 93.73% |
CMYK | 0.00% | 53.56% | 28.03% |
6.27% |
HEX | EF | 6F | AC |
Decimal | 239 | 111 | 172 |
Binary | 11101111 | 1101111 | 10101100 |
Octal | 357 | 157 | 254 |
Examples of css and html codes for elements with #EF6FAC color. Also use rgb(239,111,172) instead hex code.
.myTextColor { color: #EF6FAC; }
<p style="color:#EF6FAC">This sample text font color is #EF6FAC.</p>
This text font color is #EF6FAC.
.myBgColor { background-color: #EF6FAC; }
<div style="background-color:#EF6FAC">Inner text</div>
This div background color is #EF6FAC.
.myBorderColor { border: 1px solid #EF6FAC; }
<div style="border:3px solid #EF6FAC">Div</div>
This div border color is #EF6FAC.
.myOpacity80 { color: #EF6FAC; opacity: 0.8; }
<p style="color:#EF6FAC;opacity:0.8;">80%</p>
Text with #EF6FAC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF6FAC;}
<p style="text-shadow: 3px 3px 1px #EF6FAC">Text here.</p>
This text has shadow with #EF6FAC color.
.textShadow {text-shadow: 3px 3px 1px #EF6FAC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF6FAC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF6FAC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF6FAC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF6FAC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF6FAC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF6FAC; -webkit-box-shadow: 1px 1px 3px 2px #EF6FAC; box-shadow: 1px 1px 3px 2px #EF6FAC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF6FAC; -webkit-box-shadow: 1px 1px 3px 2px #EF6FAC; box-shadow:1px 1px 3px 2px #EF6FAC;">
Div content here</div>
This text has color #EF6FAC on black background.
This text has color #EF6FAC on white background.
This text has black color on #EF6FAC background.
This text has white color on #EF6FAC background.