HEX: #E6EBDF
RGB: (230,235,223)
#E6EBDF contains red, green and blue colors in about the same proportion. Web safe color of #E6EBDF is #CCFFCC (or #CFC).
#E6EBDF color RGB value is (230,235,223).
RGB: (230,235,223) (90%,92%,87%)
R 230 of 255 = 90%
G 235 of 255 = 92%
B 223 of 255 = 87%
R + G + B ~ 90%. #E6EBDF is light color.
R + G + B =
230 + 235 + 223 = 688 (100%)
R 230 of 688 ~ 33.43%
G 235 of 688 ~ 34.16%
B 223 of 688 ~ 32.41%
#E6EBDF color CMYK value is (2,0,5,8).
CMYK: (2,0,5,8) C2M0Y5K8 (2%,0%,5%,8%) (0.02/0.00/0.05/0.08)
E6 | EB | DF | |
---|---|---|---|
RGB | 230 | 235 | 223 |
HSL | 85° | 23.08% | 89.80% |
HSB/HSV | 85° | 5.11% | 92.16% |
CMYK | 2.13% | 0.00% | 5.11% |
7.84% |
HEX | E6 | EB | DF |
Decimal | 230 | 235 | 223 |
Binary | 11100110 | 11101011 | 11011111 |
Octal | 346 | 353 | 337 |
Examples of css and html codes for elements with #E6EBDF color. Also use rgb(230,235,223) instead hex code.
.myTextColor { color: #E6EBDF; }
<p style="color:#E6EBDF">This sample text font color is #E6EBDF.</p>
This text font color is #E6EBDF.
.myBgColor { background-color: #E6EBDF; }
<div style="background-color:#E6EBDF">Inner text</div>
This div background color is #E6EBDF.
.myBorderColor { border: 1px solid #E6EBDF; }
<div style="border:3px solid #E6EBDF">Div</div>
This div border color is #E6EBDF.
.myOpacity80 { color: #E6EBDF; opacity: 0.8; }
<p style="color:#E6EBDF;opacity:0.8;">80%</p>
Text with #E6EBDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6EBDF;}
<p style="text-shadow: 3px 3px 1px #E6EBDF">Text here.</p>
This text has shadow with #E6EBDF color.
.textShadow {text-shadow: 3px 3px 1px #E6EBDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6EBDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6EBDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6EBDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6EBDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6EBDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6EBDF; -webkit-box-shadow: 1px 1px 3px 2px #E6EBDF; box-shadow: 1px 1px 3px 2px #E6EBDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6EBDF; -webkit-box-shadow: 1px 1px 3px 2px #E6EBDF; box-shadow:1px 1px 3px 2px #E6EBDF;">
Div content here</div>
This text has color #E6EBDF on black background.
This text has color #E6EBDF on white background.
This text has black color on #E6EBDF background.
This text has white color on #E6EBDF background.