HEX: #E48BB4
RGB: (228,139,180)
#E48BB4 contains mainly red and blue colors. Web safe color of #E48BB4 is #CC99CC (or #C9C).
#E48BB4 color RGB value is (228,139,180).
RGB: (228,139,180) (89%,55%,71%)
R 228 of 255 = 89%
G 139 of 255 = 55%
B 180 of 255 = 71%
R + G + B ~ 72%. #E48BB4 is quite light color.
R + G + B =
228 + 139 + 180 = 547 (100%)
R 228 of 547 ~ 41.68%
G 139 of 547 ~ 25.41%
B 180 of 547 ~ 32.91%
#E48BB4 color CMYK value is (0,39,21,11).
CMYK: (0,39,21,11) C0M39Y21K11 (0%,39%,21%,11%) (0.00/0.39/0.21/0.11)
E4 | 8B | B4 | |
---|---|---|---|
RGB | 228 | 139 | 180 |
HSL | 332° | 62.24% | 71.96% |
HSB/HSV | 332° | 39.04% | 89.41% |
CMYK | 0.00% | 39.04% | 21.05% |
10.59% |
HEX | E4 | 8B | B4 |
Decimal | 228 | 139 | 180 |
Binary | 11100100 | 10001011 | 10110100 |
Octal | 344 | 213 | 264 |
Examples of css and html codes for elements with #E48BB4 color. Also use rgb(228,139,180) instead hex code.
.myTextColor { color: #E48BB4; }
<p style="color:#E48BB4">This sample text font color is #E48BB4.</p>
This text font color is #E48BB4.
.myBgColor { background-color: #E48BB4; }
<div style="background-color:#E48BB4">Inner text</div>
This div background color is #E48BB4.
.myBorderColor { border: 1px solid #E48BB4; }
<div style="border:3px solid #E48BB4">Div</div>
This div border color is #E48BB4.
.myOpacity80 { color: #E48BB4; opacity: 0.8; }
<p style="color:#E48BB4;opacity:0.8;">80%</p>
Text with #E48BB4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E48BB4;}
<p style="text-shadow: 3px 3px 1px #E48BB4">Text here.</p>
This text has shadow with #E48BB4 color.
.textShadow {text-shadow: 3px 3px 1px #E48BB4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E48BB4, 5px 5px 20px red">Text here.</p>
This text has shadow with #E48BB4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E48BB4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E48BB4, Direction=45, Strength=4)">Text</p>
This text has shadow with #E48BB4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E48BB4; -webkit-box-shadow: 1px 1px 3px 2px #E48BB4; box-shadow: 1px 1px 3px 2px #E48BB4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E48BB4; -webkit-box-shadow: 1px 1px 3px 2px #E48BB4; box-shadow:1px 1px 3px 2px #E48BB4;">
Div content here</div>
This text has color #E48BB4 on black background.
This text has color #E48BB4 on white background.
This text has black color on #E48BB4 background.
This text has white color on #E48BB4 background.