HEX: #E6ECBA
RGB: (230,236,186)
#E6ECBA contains red, green and blue colors in about the same proportion. Web safe color of #E6ECBA is #CCFFCC (or #CFC).
#E6ECBA color RGB value is (230,236,186).
RGB: (230,236,186) (90%,93%,73%)
R 230 of 255 = 90%
G 236 of 255 = 93%
B 186 of 255 = 73%
R + G + B ~ 85%. #E6ECBA is quite light color.
R + G + B =
230 + 236 + 186 = 652 (100%)
R 230 of 652 ~ 35.28%
G 236 of 652 ~ 36.2%
B 186 of 652 ~ 28.53%
#E6ECBA color CMYK value is (3,0,21,7).
CMYK: (3,0,21,7) C3M0Y21K7 (3%,0%,21%,7%) (0.03/0.00/0.21/0.07)
E6 | EC | BA | |
---|---|---|---|
RGB | 230 | 236 | 186 |
HSL | 67° | 56.82% | 82.75% |
HSB/HSV | 67° | 21.19% | 92.55% |
CMYK | 2.54% | 0.00% | 21.19% |
7.45% |
HEX | E6 | EC | BA |
Decimal | 230 | 236 | 186 |
Binary | 11100110 | 11101100 | 10111010 |
Octal | 346 | 354 | 272 |
Examples of css and html codes for elements with #E6ECBA color. Also use rgb(230,236,186) instead hex code.
.myTextColor { color: #E6ECBA; }
<p style="color:#E6ECBA">This sample text font color is #E6ECBA.</p>
This text font color is #E6ECBA.
.myBgColor { background-color: #E6ECBA; }
<div style="background-color:#E6ECBA">Inner text</div>
This div background color is #E6ECBA.
.myBorderColor { border: 1px solid #E6ECBA; }
<div style="border:3px solid #E6ECBA">Div</div>
This div border color is #E6ECBA.
.myOpacity80 { color: #E6ECBA; opacity: 0.8; }
<p style="color:#E6ECBA;opacity:0.8;">80%</p>
Text with #E6ECBA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6ECBA;}
<p style="text-shadow: 3px 3px 1px #E6ECBA">Text here.</p>
This text has shadow with #E6ECBA color.
.textShadow {text-shadow: 3px 3px 1px #E6ECBA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6ECBA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6ECBA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6ECBA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6ECBA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6ECBA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6ECBA; -webkit-box-shadow: 1px 1px 3px 2px #E6ECBA; box-shadow: 1px 1px 3px 2px #E6ECBA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6ECBA; -webkit-box-shadow: 1px 1px 3px 2px #E6ECBA; box-shadow:1px 1px 3px 2px #E6ECBA;">
Div content here</div>
This text has color #E6ECBA on black background.
This text has color #E6ECBA on white background.
This text has black color on #E6ECBA background.
This text has white color on #E6ECBA background.