HEX: #E4B2CC
RGB: (228,178,204)
#E4B2CC contains red, green and blue colors in about the same proportion. Web safe color of #E4B2CC is #CC99CC (or #C9C).
#E4B2CC color RGB value is (228,178,204).
RGB: (228,178,204) (89%,70%,80%)
R 228 of 255 = 89%
G 178 of 255 = 70%
B 204 of 255 = 80%
R + G + B ~ 80%. #E4B2CC is quite light color.
R + G + B =
228 + 178 + 204 = 610 (100%)
R 228 of 610 ~ 37.38%
G 178 of 610 ~ 29.18%
B 204 of 610 ~ 33.44%
#E4B2CC color CMYK value is (0,22,11,11).
CMYK: (0,22,11,11) C0M22Y11K11 (0%,22%,11%,11%) (0.00/0.22/0.11/0.11)
E4 | B2 | CC | |
---|---|---|---|
RGB | 228 | 178 | 204 |
HSL | 329° | 48.08% | 79.61% |
HSB/HSV | 329° | 21.93% | 89.41% |
CMYK | 0.00% | 21.93% | 10.53% |
10.59% |
HEX | E4 | B2 | CC |
Decimal | 228 | 178 | 204 |
Binary | 11100100 | 10110010 | 11001100 |
Octal | 344 | 262 | 314 |
Examples of css and html codes for elements with #E4B2CC color. Also use rgb(228,178,204) instead hex code.
.myTextColor { color: #E4B2CC; }
<p style="color:#E4B2CC">This sample text font color is #E4B2CC.</p>
This text font color is #E4B2CC.
.myBgColor { background-color: #E4B2CC; }
<div style="background-color:#E4B2CC">Inner text</div>
This div background color is #E4B2CC.
.myBorderColor { border: 1px solid #E4B2CC; }
<div style="border:3px solid #E4B2CC">Div</div>
This div border color is #E4B2CC.
.myOpacity80 { color: #E4B2CC; opacity: 0.8; }
<p style="color:#E4B2CC;opacity:0.8;">80%</p>
Text with #E4B2CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4B2CC;}
<p style="text-shadow: 3px 3px 1px #E4B2CC">Text here.</p>
This text has shadow with #E4B2CC color.
.textShadow {text-shadow: 3px 3px 1px #E4B2CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4B2CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4B2CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4B2CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4B2CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4B2CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4B2CC; -webkit-box-shadow: 1px 1px 3px 2px #E4B2CC; box-shadow: 1px 1px 3px 2px #E4B2CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4B2CC; -webkit-box-shadow: 1px 1px 3px 2px #E4B2CC; box-shadow:1px 1px 3px 2px #E4B2CC;">
Div content here</div>
This text has color #E4B2CC on black background.
This text has color #E4B2CC on white background.
This text has black color on #E4B2CC background.
This text has white color on #E4B2CC background.