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