HEX: #FFE0EB
RGB: (255,224,235)
#FFE0EB contains red, green and blue colors in about the same proportion. Web safe color of #FFE0EB is #FFCCFF (or #FCF).
#FFE0EB color RGB value is (255,224,235).
RGB: (255,224,235)
(100%, 88%, 92%)
R 255 of 255 = 100%
G 224 of 255 = 88%
B 235 of 255 = 92%
R + G + B ~ 93%. #FFE0EB is light color.
R + G + B = 255 + 224 + 235 = 714 (100%)
R 255 of 714 ~ 35.71%
G 224 of 714 ~ 31.37%
B 235 of 714 ~ 32.91'%
#FFE0EB color CMYK value is (0,12,8,0).
CMYK: (0,12,8,0) C0M12Y8K0 (0%,12%,8%,0%) (0.00/0.12/0.08/0.00)
Color #FFE0EB in popluar color models
FF | E0 | EB | |
---|---|---|---|
RGB | 255 | 224 | 235 |
HSL | 339° | 100.00% | 93.92% |
HSB/HSV | 339° | 12.16% | 100.00% |
CMYK | 0.00% | 12.16% | 7.84% |
0.00% |
Color #FFE0EB in popluar number systems.
HEX | FF | E0 | EB |
Decimal | 255 | 224 | 235 |
Binary | 11111111 | 11100000 | 11101011 |
Octal | 377 | 340 | 353 |
Examples of css and html codes for elements with #FFE0EB color. Also use rgb(255,224,235) instead hex code.
.myTextColor { color: #FFE0EB; }
<p style="color:#FFE0EB">This sample text font color is #FFE0EB.</p>
This text font color is #FFE0EB.
.myBgColor { background-color: #FFE0EB; }
<div style="background-color:#FFE0EB">Inner text</div>
This div background color is #FFE0EB.
.myBorderColor { border: 1px solid #FFE0EB; }
<div style="border:3px solid #FFE0EB">Div</div>
This div border color is #FFE0EB.
.myOpacity80 { color: #FFE0EB; opacity: 0.8; }
<p style="color:#FFE0EB;opacity:0.8;">80%</p>
Text with #FFE0EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFE0EB;}
<p style="text-shadow: 3px 3px 1px #FFE0EB">Text here.</p>
This text has shadow with #FFE0EB color.
.textShadow {text-shadow: 3px 3px 1px #FFE0EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFE0EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFE0EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFE0EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFE0EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFE0EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFE0EB; -webkit-box-shadow: 1px 1px 3px 2px #FFE0EB; box-shadow: 1px 1px 3px 2px #FFE0EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFE0EB; -webkit-box-shadow: 1px 1px 3px 2px #FFE0EB; box-shadow:1px 1px 3px 2px #FFE0EB;">
Div content here</div>
This text has color #FFE0EB on black background.
This text has color #FFE0EB on white background.
This text has black color on #FFE0EB background.
This text has white color on #FFE0EB background.