HEX: #EBB4DE
RGB: (235,180,222)
#EBB4DE contains red, green and blue colors in about the same proportion. Web safe color of #EBB4DE is #FFCCCC (or #FCC).
#EBB4DE color RGB value is (235,180,222).
RGB: (235,180,222) (92%,71%,87%)
R 235 of 255 = 92%
G 180 of 255 = 71%
B 222 of 255 = 87%
R + G + B ~ 83%. #EBB4DE is quite light color.
R + G + B =
235 + 180 + 222 = 637 (100%)
R 235 of 637 ~ 36.89%
G 180 of 637 ~ 28.26%
B 222 of 637 ~ 34.85%
#EBB4DE 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 | B4 | DE | |
---|---|---|---|
RGB | 235 | 180 | 222 |
HSL | 314° | 57.89% | 81.37% |
HSB/HSV | 314° | 23.40% | 92.16% |
CMYK | 0.00% | 23.40% | 5.53% |
7.84% |
HEX | EB | B4 | DE |
Decimal | 235 | 180 | 222 |
Binary | 11101011 | 10110100 | 11011110 |
Octal | 353 | 264 | 336 |
Examples of css and html codes for elements with #EBB4DE color. Also use rgb(235,180,222) instead hex code.
.myTextColor { color: #EBB4DE; }
<p style="color:#EBB4DE">This sample text font color is #EBB4DE.</p>
This text font color is #EBB4DE.
.myBgColor { background-color: #EBB4DE; }
<div style="background-color:#EBB4DE">Inner text</div>
This div background color is #EBB4DE.
.myBorderColor { border: 1px solid #EBB4DE; }
<div style="border:3px solid #EBB4DE">Div</div>
This div border color is #EBB4DE.
.myOpacity80 { color: #EBB4DE; opacity: 0.8; }
<p style="color:#EBB4DE;opacity:0.8;">80%</p>
Text with #EBB4DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBB4DE;}
<p style="text-shadow: 3px 3px 1px #EBB4DE">Text here.</p>
This text has shadow with #EBB4DE color.
.textShadow {text-shadow: 3px 3px 1px #EBB4DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBB4DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBB4DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBB4DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBB4DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBB4DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBB4DE; -webkit-box-shadow: 1px 1px 3px 2px #EBB4DE; box-shadow: 1px 1px 3px 2px #EBB4DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBB4DE; -webkit-box-shadow: 1px 1px 3px 2px #EBB4DE; box-shadow:1px 1px 3px 2px #EBB4DE;">
Div content here</div>
This text has color #EBB4DE on black background.
This text has color #EBB4DE on white background.
This text has black color on #EBB4DE background.
This text has white color on #EBB4DE background.