HEX: #E4BDCC
RGB: (228,189,204)
#E4BDCC contains red, green and blue colors in about the same proportion. Web safe color of #E4BDCC is #CCCCCC (or #CCC).
#E4BDCC color RGB value is (228,189,204).
RGB: (228,189,204) (89%,74%,80%)
R 228 of 255 = 89%
G 189 of 255 = 74%
B 204 of 255 = 80%
R + G + B ~ 81%. #E4BDCC is quite light color.
R + G + B =
228 + 189 + 204 = 621 (100%)
R 228 of 621 ~ 36.71%
G 189 of 621 ~ 30.43%
B 204 of 621 ~ 32.85%
#E4BDCC color CMYK value is (0,17,11,11).
CMYK: (0,17,11,11) C0M17Y11K11 (0%,17%,11%,11%) (0.00/0.17/0.11/0.11)
E4 | BD | CC | |
---|---|---|---|
RGB | 228 | 189 | 204 |
HSL | 337° | 41.94% | 81.76% |
HSB/HSV | 337° | 17.11% | 89.41% |
CMYK | 0.00% | 17.11% | 10.53% |
10.59% |
HEX | E4 | BD | CC |
Decimal | 228 | 189 | 204 |
Binary | 11100100 | 10111101 | 11001100 |
Octal | 344 | 275 | 314 |
Examples of css and html codes for elements with #E4BDCC color. Also use rgb(228,189,204) instead hex code.
.myTextColor { color: #E4BDCC; }
<p style="color:#E4BDCC">This sample text font color is #E4BDCC.</p>
This text font color is #E4BDCC.
.myBgColor { background-color: #E4BDCC; }
<div style="background-color:#E4BDCC">Inner text</div>
This div background color is #E4BDCC.
.myBorderColor { border: 1px solid #E4BDCC; }
<div style="border:3px solid #E4BDCC">Div</div>
This div border color is #E4BDCC.
.myOpacity80 { color: #E4BDCC; opacity: 0.8; }
<p style="color:#E4BDCC;opacity:0.8;">80%</p>
Text with #E4BDCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4BDCC;}
<p style="text-shadow: 3px 3px 1px #E4BDCC">Text here.</p>
This text has shadow with #E4BDCC color.
.textShadow {text-shadow: 3px 3px 1px #E4BDCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4BDCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4BDCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4BDCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4BDCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4BDCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4BDCC; -webkit-box-shadow: 1px 1px 3px 2px #E4BDCC; box-shadow: 1px 1px 3px 2px #E4BDCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4BDCC; -webkit-box-shadow: 1px 1px 3px 2px #E4BDCC; box-shadow:1px 1px 3px 2px #E4BDCC;">
Div content here</div>
This text has color #E4BDCC on black background.
This text has color #E4BDCC on white background.
This text has black color on #E4BDCC background.
This text has white color on #E4BDCC background.