HEX: #EBAFD2
RGB: (235,175,210)
#EBAFD2 contains mainly red and blue colors. Web safe color of #EBAFD2 is #FF99CC (or #F9C).
#EBAFD2 color RGB value is (235,175,210).
RGB: (235,175,210) (92%,69%,82%)
R 235 of 255 = 92%
G 175 of 255 = 69%
B 210 of 255 = 82%
R + G + B ~ 81%. #EBAFD2 is quite light color.
R + G + B =
235 + 175 + 210 = 620 (100%)
R 235 of 620 ~ 37.9%
G 175 of 620 ~ 28.23%
B 210 of 620 ~ 33.87%
#EBAFD2 color CMYK value is (0,26,11,8).
CMYK: (0,26,11,8) C0M26Y11K8 (0%,26%,11%,8%) (0.00/0.26/0.11/0.08)
EB | AF | D2 | |
---|---|---|---|
RGB | 235 | 175 | 210 |
HSL | 325° | 60.00% | 80.39% |
HSB/HSV | 325° | 25.53% | 92.16% |
CMYK | 0.00% | 25.53% | 10.64% |
7.84% |
HEX | EB | AF | D2 |
Decimal | 235 | 175 | 210 |
Binary | 11101011 | 10101111 | 11010010 |
Octal | 353 | 257 | 322 |
Examples of css and html codes for elements with #EBAFD2 color. Also use rgb(235,175,210) instead hex code.
.myTextColor { color: #EBAFD2; }
<p style="color:#EBAFD2">This sample text font color is #EBAFD2.</p>
This text font color is #EBAFD2.
.myBgColor { background-color: #EBAFD2; }
<div style="background-color:#EBAFD2">Inner text</div>
This div background color is #EBAFD2.
.myBorderColor { border: 1px solid #EBAFD2; }
<div style="border:3px solid #EBAFD2">Div</div>
This div border color is #EBAFD2.
.myOpacity80 { color: #EBAFD2; opacity: 0.8; }
<p style="color:#EBAFD2;opacity:0.8;">80%</p>
Text with #EBAFD2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBAFD2;}
<p style="text-shadow: 3px 3px 1px #EBAFD2">Text here.</p>
This text has shadow with #EBAFD2 color.
.textShadow {text-shadow: 3px 3px 1px #EBAFD2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBAFD2, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBAFD2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBAFD2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBAFD2, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBAFD2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBAFD2; -webkit-box-shadow: 1px 1px 3px 2px #EBAFD2; box-shadow: 1px 1px 3px 2px #EBAFD2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBAFD2; -webkit-box-shadow: 1px 1px 3px 2px #EBAFD2; box-shadow:1px 1px 3px 2px #EBAFD2;">
Div content here</div>
This text has color #EBAFD2 on black background.
This text has color #EBAFD2 on white background.
This text has black color on #EBAFD2 background.
This text has white color on #EBAFD2 background.