HEX: #EFCAF6
RGB: (239,202,246)
#EFCAF6 contains red, green and blue colors in about the same proportion. #EFCAF6 ‘ nin web güvenlik rengi #FFCCFF (ya da #FCF) dir.
#EFCAF6 color RGB value is (239,202,246).
RGB: (239,202,246) (94%,79%,96%)
R 239 of 255 = 94%
G 202 of 255 = 79%
B 246 of 255 = 96%
R + G + B ~ 90%. #EFCAF6 is light color.
R + G + B =
239 + 202 + 246 = 687 (100%)
R 239 of 687 ~ 34.79%
G 202 of 687 ~ 29.4%
B 246 of 687 ~ 35.81%
#EFCAF6 rengi CMYK tonu (3,18,0,4).
CMYK: (3,18,0,4) C3M18Y0K4 (3%,18%,0%,4%) (0.03/0.18/0.00/0.04)
EF | CA | F6 | |
---|---|---|---|
RGB | 239 | 202 | 246 |
HSL | 290° | 70.97% | 87.84% |
HSB/HSV | 290° | 17.89% | 96.47% |
CMYK | 2.85% | 17.89% | 0.00% |
3.53% |
HEX | EF | CA | F6 |
Decimal | 239 | 202 | 246 |
Binary | 11101111 | 11001010 | 11110110 |
Octal | 357 | 312 | 366 |
Examples of css and html codes for elements with #EFCAF6 color. Also use rgb(239,202,246) instead hex code.
.myTextColor { color: #EFCAF6; }
<p style="color:#EFCAF6">This sample text font color is #EFCAF6.</p>
This text font color is #EFCAF6.
.myBgColor { background-color: #EFCAF6; }
<div style="background-color:#EFCAF6">Inner text</div>
This div background color is #EFCAF6.
.myBorderColor { border: 1px solid #EFCAF6; }
<div style="border:3px solid #EFCAF6">Div</div>
This div border color is #EFCAF6.
.myOpacity80 { color: #EFCAF6; opacity: 0.8; }
<p style="color:#EFCAF6;opacity:0.8;">80%</p>
Text with #EFCAF6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFCAF6;}
<p style="text-shadow: 3px 3px 1px #EFCAF6">Text here.</p>
This text has shadow with #EFCAF6 color.
.textShadow {text-shadow: 3px 3px 1px #EFCAF6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFCAF6, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFCAF6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFCAF6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFCAF6, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFCAF6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFCAF6; -webkit-box-shadow: 1px 1px 3px 2px #EFCAF6; box-shadow: 1px 1px 3px 2px #EFCAF6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFCAF6; -webkit-box-shadow: 1px 1px 3px 2px #EFCAF6; box-shadow:1px 1px 3px 2px #EFCAF6;">
Div content here</div>
This text has color #EFCAF6 on black background.
This text has color #EFCAF6 on white background.
This text has black color on #EFCAF6 background.
This text has white color on #EFCAF6 background.