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