HEX: #E1A4BE
RGB: (225,164,190)
#E1A4BE contains mainly red and blue colors. Web safe color of #E1A4BE is #CC99CC (or #C9C).
#E1A4BE color RGB value is (225,164,190).
RGB: (225,164,190) (88%,64%,75%)
R 225 of 255 = 88%
G 164 of 255 = 64%
B 190 of 255 = 75%
R + G + B ~ 76%. #E1A4BE is quite light color.
R + G + B =
225 + 164 + 190 = 579 (100%)
R 225 of 579 ~ 38.86%
G 164 of 579 ~ 28.32%
B 190 of 579 ~ 32.82%
#E1A4BE color CMYK value is (0,27,16,12).
CMYK: (0,27,16,12) C0M27Y16K12 (0%,27%,16%,12%) (0.00/0.27/0.16/0.12)
E1 | A4 | BE | |
---|---|---|---|
RGB | 225 | 164 | 190 |
HSL | 334° | 50.41% | 76.27% |
HSB/HSV | 334° | 27.11% | 88.24% |
CMYK | 0.00% | 27.11% | 15.56% |
11.76% |
HEX | E1 | A4 | BE |
Decimal | 225 | 164 | 190 |
Binary | 11100001 | 10100100 | 10111110 |
Octal | 341 | 244 | 276 |
Examples of css and html codes for elements with #E1A4BE color. Also use rgb(225,164,190) instead hex code.
.myTextColor { color: #E1A4BE; }
<p style="color:#E1A4BE">This sample text font color is #E1A4BE.</p>
This text font color is #E1A4BE.
.myBgColor { background-color: #E1A4BE; }
<div style="background-color:#E1A4BE">Inner text</div>
This div background color is #E1A4BE.
.myBorderColor { border: 1px solid #E1A4BE; }
<div style="border:3px solid #E1A4BE">Div</div>
This div border color is #E1A4BE.
.myOpacity80 { color: #E1A4BE; opacity: 0.8; }
<p style="color:#E1A4BE;opacity:0.8;">80%</p>
Text with #E1A4BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1A4BE;}
<p style="text-shadow: 3px 3px 1px #E1A4BE">Text here.</p>
This text has shadow with #E1A4BE color.
.textShadow {text-shadow: 3px 3px 1px #E1A4BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1A4BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1A4BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1A4BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1A4BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1A4BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1A4BE; -webkit-box-shadow: 1px 1px 3px 2px #E1A4BE; box-shadow: 1px 1px 3px 2px #E1A4BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1A4BE; -webkit-box-shadow: 1px 1px 3px 2px #E1A4BE; box-shadow:1px 1px 3px 2px #E1A4BE;">
Div content here</div>
This text has color #E1A4BE on black background.
This text has color #E1A4BE on white background.
This text has black color on #E1A4BE background.
This text has white color on #E1A4BE background.