HEX: #E08CBE
RGB: (224,140,190)
#E08CBE contains mainly red and blue colors. Web safe color of #E08CBE is #CC99CC (or #C9C).
#E08CBE color RGB value is (224,140,190).
RGB: (224,140,190) (88%,55%,75%)
R 224 of 255 = 88%
G 140 of 255 = 55%
B 190 of 255 = 75%
R + G + B ~ 73%. #E08CBE is quite light color.
R + G + B =
224 + 140 + 190 = 554 (100%)
R 224 of 554 ~ 40.43%
G 140 of 554 ~ 25.27%
B 190 of 554 ~ 34.3%
#E08CBE color CMYK value is (0,38,15,12).
CMYK: (0,38,15,12) C0M38Y15K12 (0%,38%,15%,12%) (0.00/0.38/0.15/0.12)
E0 | 8C | BE | |
---|---|---|---|
RGB | 224 | 140 | 190 |
HSL | 324° | 57.53% | 71.37% |
HSB/HSV | 324° | 37.50% | 87.84% |
CMYK | 0.00% | 37.50% | 15.18% |
12.16% |
HEX | E0 | 8C | BE |
Decimal | 224 | 140 | 190 |
Binary | 11100000 | 10001100 | 10111110 |
Octal | 340 | 214 | 276 |
Examples of css and html codes for elements with #E08CBE color. Also use rgb(224,140,190) instead hex code.
.myTextColor { color: #E08CBE; }
<p style="color:#E08CBE">This sample text font color is #E08CBE.</p>
This text font color is #E08CBE.
.myBgColor { background-color: #E08CBE; }
<div style="background-color:#E08CBE">Inner text</div>
This div background color is #E08CBE.
.myBorderColor { border: 1px solid #E08CBE; }
<div style="border:3px solid #E08CBE">Div</div>
This div border color is #E08CBE.
.myOpacity80 { color: #E08CBE; opacity: 0.8; }
<p style="color:#E08CBE;opacity:0.8;">80%</p>
Text with #E08CBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E08CBE;}
<p style="text-shadow: 3px 3px 1px #E08CBE">Text here.</p>
This text has shadow with #E08CBE color.
.textShadow {text-shadow: 3px 3px 1px #E08CBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E08CBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E08CBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E08CBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E08CBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E08CBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E08CBE; -webkit-box-shadow: 1px 1px 3px 2px #E08CBE; box-shadow: 1px 1px 3px 2px #E08CBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E08CBE; -webkit-box-shadow: 1px 1px 3px 2px #E08CBE; box-shadow:1px 1px 3px 2px #E08CBE;">
Div content here</div>
This text has color #E08CBE on black background.
This text has color #E08CBE on white background.
This text has black color on #E08CBE background.
This text has white color on #E08CBE background.