HEX: #EBB5DC
RGB: (235,181,220)
#EBB5DC contains red, green and blue colors in about the same proportion. Web safe color of #EBB5DC is #FFCCCC (or #FCC).
#EBB5DC color RGB value is (235,181,220).
RGB: (235,181,220) (92%,71%,86%)
R 235 of 255 = 92%
G 181 of 255 = 71%
B 220 of 255 = 86%
R + G + B ~ 83%. #EBB5DC is quite light color.
R + G + B =
235 + 181 + 220 = 636 (100%)
R 235 of 636 ~ 36.95%
G 181 of 636 ~ 28.46%
B 220 of 636 ~ 34.59%
#EBB5DC color CMYK value is (0,23,6,8).
CMYK: (0,23,6,8) C0M23Y6K8 (0%,23%,6%,8%) (0.00/0.23/0.06/0.08)
EB | B5 | DC | |
---|---|---|---|
RGB | 235 | 181 | 220 |
HSL | 317° | 57.45% | 81.57% |
HSB/HSV | 317° | 22.98% | 92.16% |
CMYK | 0.00% | 22.98% | 6.38% |
7.84% |
HEX | EB | B5 | DC |
Decimal | 235 | 181 | 220 |
Binary | 11101011 | 10110101 | 11011100 |
Octal | 353 | 265 | 334 |
Examples of css and html codes for elements with #EBB5DC color. Also use rgb(235,181,220) instead hex code.
.myTextColor { color: #EBB5DC; }
<p style="color:#EBB5DC">This sample text font color is #EBB5DC.</p>
This text font color is #EBB5DC.
.myBgColor { background-color: #EBB5DC; }
<div style="background-color:#EBB5DC">Inner text</div>
This div background color is #EBB5DC.
.myBorderColor { border: 1px solid #EBB5DC; }
<div style="border:3px solid #EBB5DC">Div</div>
This div border color is #EBB5DC.
.myOpacity80 { color: #EBB5DC; opacity: 0.8; }
<p style="color:#EBB5DC;opacity:0.8;">80%</p>
Text with #EBB5DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBB5DC;}
<p style="text-shadow: 3px 3px 1px #EBB5DC">Text here.</p>
This text has shadow with #EBB5DC color.
.textShadow {text-shadow: 3px 3px 1px #EBB5DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBB5DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBB5DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBB5DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBB5DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBB5DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBB5DC; -webkit-box-shadow: 1px 1px 3px 2px #EBB5DC; box-shadow: 1px 1px 3px 2px #EBB5DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBB5DC; -webkit-box-shadow: 1px 1px 3px 2px #EBB5DC; box-shadow:1px 1px 3px 2px #EBB5DC;">
Div content here</div>
This text has color #EBB5DC on black background.
This text has color #EBB5DC on white background.
This text has black color on #EBB5DC background.
This text has white color on #EBB5DC background.