HEX: #E1EBBD
RGB: (225,235,189)
#E1EBBD contains red, green and blue colors in about the same proportion. Web safe color of #E1EBBD is #CCFFCC (or #CFC).
#E1EBBD color RGB value is (225,235,189).
RGB: (225,235,189) (88%,92%,74%)
R 225 of 255 = 88%
G 235 of 255 = 92%
B 189 of 255 = 74%
R + G + B ~ 85%. #E1EBBD is quite light color.
R + G + B =
225 + 235 + 189 = 649 (100%)
R 225 of 649 ~ 34.67%
G 235 of 649 ~ 36.21%
B 189 of 649 ~ 29.12%
#E1EBBD color CMYK value is (4,0,20,8).
CMYK: (4,0,20,8) C4M0Y20K8 (4%,0%,20%,8%) (0.04/0.00/0.20/0.08)
E1 | EB | BD | |
---|---|---|---|
RGB | 225 | 235 | 189 |
HSL | 73° | 53.49% | 83.14% |
HSB/HSV | 73° | 19.57% | 92.16% |
CMYK | 4.26% | 0.00% | 19.57% |
7.84% |
HEX | E1 | EB | BD |
Decimal | 225 | 235 | 189 |
Binary | 11100001 | 11101011 | 10111101 |
Octal | 341 | 353 | 275 |
Examples of css and html codes for elements with #E1EBBD color. Also use rgb(225,235,189) instead hex code.
.myTextColor { color: #E1EBBD; }
<p style="color:#E1EBBD">This sample text font color is #E1EBBD.</p>
This text font color is #E1EBBD.
.myBgColor { background-color: #E1EBBD; }
<div style="background-color:#E1EBBD">Inner text</div>
This div background color is #E1EBBD.
.myBorderColor { border: 1px solid #E1EBBD; }
<div style="border:3px solid #E1EBBD">Div</div>
This div border color is #E1EBBD.
.myOpacity80 { color: #E1EBBD; opacity: 0.8; }
<p style="color:#E1EBBD;opacity:0.8;">80%</p>
Text with #E1EBBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1EBBD;}
<p style="text-shadow: 3px 3px 1px #E1EBBD">Text here.</p>
This text has shadow with #E1EBBD color.
.textShadow {text-shadow: 3px 3px 1px #E1EBBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1EBBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1EBBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1EBBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1EBBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1EBBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1EBBD; -webkit-box-shadow: 1px 1px 3px 2px #E1EBBD; box-shadow: 1px 1px 3px 2px #E1EBBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1EBBD; -webkit-box-shadow: 1px 1px 3px 2px #E1EBBD; box-shadow:1px 1px 3px 2px #E1EBBD;">
Div content here</div>
This text has color #E1EBBD on black background.
This text has color #E1EBBD on white background.
This text has black color on #E1EBBD background.
This text has white color on #E1EBBD background.