HEX: #EBB2E1
RGB: (235,178,225)
#EBB2E1 contains red, green and blue colors in about the same proportion. Web safe color of #EBB2E1 is #FF99CC (or #F9C).
#EBB2E1 color RGB value is (235,178,225).
RGB: (235,178,225) (92%,70%,88%)
R 235 of 255 = 92%
G 178 of 255 = 70%
B 225 of 255 = 88%
R + G + B ~ 83%. #EBB2E1 is quite light color.
R + G + B =
235 + 178 + 225 = 638 (100%)
R 235 of 638 ~ 36.83%
G 178 of 638 ~ 27.9%
B 225 of 638 ~ 35.27%
#EBB2E1 color CMYK value is (0,24,4,8).
CMYK: (0,24,4,8) C0M24Y4K8 (0%,24%,4%,8%) (0.00/0.24/0.04/0.08)
EB | B2 | E1 | |
---|---|---|---|
RGB | 235 | 178 | 225 |
HSL | 311° | 58.76% | 80.98% |
HSB/HSV | 311° | 24.26% | 92.16% |
CMYK | 0.00% | 24.26% | 4.26% |
7.84% |
HEX | EB | B2 | E1 |
Decimal | 235 | 178 | 225 |
Binary | 11101011 | 10110010 | 11100001 |
Octal | 353 | 262 | 341 |
Examples of css and html codes for elements with #EBB2E1 color. Also use rgb(235,178,225) instead hex code.
.myTextColor { color: #EBB2E1; }
<p style="color:#EBB2E1">This sample text font color is #EBB2E1.</p>
This text font color is #EBB2E1.
.myBgColor { background-color: #EBB2E1; }
<div style="background-color:#EBB2E1">Inner text</div>
This div background color is #EBB2E1.
.myBorderColor { border: 1px solid #EBB2E1; }
<div style="border:3px solid #EBB2E1">Div</div>
This div border color is #EBB2E1.
.myOpacity80 { color: #EBB2E1; opacity: 0.8; }
<p style="color:#EBB2E1;opacity:0.8;">80%</p>
Text with #EBB2E1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBB2E1;}
<p style="text-shadow: 3px 3px 1px #EBB2E1">Text here.</p>
This text has shadow with #EBB2E1 color.
.textShadow {text-shadow: 3px 3px 1px #EBB2E1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBB2E1, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBB2E1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBB2E1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBB2E1, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBB2E1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBB2E1; -webkit-box-shadow: 1px 1px 3px 2px #EBB2E1; box-shadow: 1px 1px 3px 2px #EBB2E1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBB2E1; -webkit-box-shadow: 1px 1px 3px 2px #EBB2E1; box-shadow:1px 1px 3px 2px #EBB2E1;">
Div content here</div>
This text has color #EBB2E1 on black background.
This text has color #EBB2E1 on white background.
This text has black color on #EBB2E1 background.
This text has white color on #EBB2E1 background.