HEX: #FFEEEB
RGB: (255,238,235)
#FFEEEB contains red, green and blue colors in about the same proportion. Web safe color of #FFEEEB is #FFFFFF (or #FFF).
#FFEEEB color RGB value is (255,238,235).
RGB: (255,238,235) (100%,93%,92%)
R 255 of 255 = 100%
G 238 of 255 = 93%
B 235 of 255 = 92%
R + G + B ~ 95%. #FFEEEB is light color.
R + G + B =
255 + 238 + 235 = 728 (100%)
R 255 of 728 ~ 35.03%
G 238 of 728 ~ 32.69%
B 235 of 728 ~ 32.28%
#FFEEEB color CMYK value is (0,7,8,0).
CMYK: (0,7,8,0) C0M7Y8K0 (0%,7%,8%,0%) (0.00/0.07/0.08/0.00)
FF | EE | EB | |
---|---|---|---|
RGB | 255 | 238 | 235 |
HSL | 9° | 100.00% | 96.08% |
HSB/HSV | 9° | 7.84% | 100.00% |
CMYK | 0.00% | 6.67% | 7.84% |
0.00% |
HEX | FF | EE | EB |
Decimal | 255 | 238 | 235 |
Binary | 11111111 | 11101110 | 11101011 |
Octal | 377 | 356 | 353 |
Examples of css and html codes for elements with #FFEEEB color. Also use rgb(255,238,235) instead hex code.
.myTextColor { color: #FFEEEB; }
<p style="color:#FFEEEB">This sample text font color is #FFEEEB.</p>
This text font color is #FFEEEB.
.myBgColor { background-color: #FFEEEB; }
<div style="background-color:#FFEEEB">Inner text</div>
This div background color is #FFEEEB.
.myBorderColor { border: 1px solid #FFEEEB; }
<div style="border:3px solid #FFEEEB">Div</div>
This div border color is #FFEEEB.
.myOpacity80 { color: #FFEEEB; opacity: 0.8; }
<p style="color:#FFEEEB;opacity:0.8;">80%</p>
Text with #FFEEEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFEEEB;}
<p style="text-shadow: 3px 3px 1px #FFEEEB">Text here.</p>
This text has shadow with #FFEEEB color.
.textShadow {text-shadow: 3px 3px 1px #FFEEEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFEEEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFEEEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFEEEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFEEEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFEEEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFEEEB; -webkit-box-shadow: 1px 1px 3px 2px #FFEEEB; box-shadow: 1px 1px 3px 2px #FFEEEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFEEEB; -webkit-box-shadow: 1px 1px 3px 2px #FFEEEB; box-shadow:1px 1px 3px 2px #FFEEEB;">
Div content here</div>
This text has color #FFEEEB on black background.
This text has color #FFEEEB on white background.
This text has black color on #FFEEEB background.
This text has white color on #FFEEEB background.