HEX: #E6FEBF
RGB: (230,254,191)
#E6FEBF contains mainly red and green colors. Web safe color of #E6FEBF is #CCFFCC (or #CFC).
#E6FEBF color RGB value is (230,254,191).
RGB: (230,254,191) (90%,100%,75%)
R 230 of 255 = 90%
G 254 of 255 = 100%
B 191 of 255 = 75%
R + G + B ~ 88%. #E6FEBF is light color.
R + G + B =
230 + 254 + 191 = 675 (100%)
R 230 of 675 ~ 34.07%
G 254 of 675 ~ 37.63%
B 191 of 675 ~ 28.3%
#E6FEBF color CMYK value is (9,0,25,0).
CMYK: (9,0,25,0) C9M0Y25K0 (9%,0%,25%,0%) (0.09/0.00/0.25/0.00)
E6 | FE | BF | |
---|---|---|---|
RGB | 230 | 254 | 191 |
HSL | 83° | 96.92% | 87.25% |
HSB/HSV | 83° | 24.80% | 99.61% |
CMYK | 9.45% | 0.00% | 24.80% |
0.39% |
HEX | E6 | FE | BF |
Decimal | 230 | 254 | 191 |
Binary | 11100110 | 11111110 | 10111111 |
Octal | 346 | 376 | 277 |
Examples of css and html codes for elements with #E6FEBF color. Also use rgb(230,254,191) instead hex code.
.myTextColor { color: #E6FEBF; }
<p style="color:#E6FEBF">This sample text font color is #E6FEBF.</p>
This text font color is #E6FEBF.
.myBgColor { background-color: #E6FEBF; }
<div style="background-color:#E6FEBF">Inner text</div>
This div background color is #E6FEBF.
.myBorderColor { border: 1px solid #E6FEBF; }
<div style="border:3px solid #E6FEBF">Div</div>
This div border color is #E6FEBF.
.myOpacity80 { color: #E6FEBF; opacity: 0.8; }
<p style="color:#E6FEBF;opacity:0.8;">80%</p>
Text with #E6FEBF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6FEBF;}
<p style="text-shadow: 3px 3px 1px #E6FEBF">Text here.</p>
This text has shadow with #E6FEBF color.
.textShadow {text-shadow: 3px 3px 1px #E6FEBF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6FEBF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6FEBF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6FEBF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6FEBF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6FEBF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6FEBF; -webkit-box-shadow: 1px 1px 3px 2px #E6FEBF; box-shadow: 1px 1px 3px 2px #E6FEBF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6FEBF; -webkit-box-shadow: 1px 1px 3px 2px #E6FEBF; box-shadow:1px 1px 3px 2px #E6FEBF;">
Div content here</div>
This text has color #E6FEBF on black background.
This text has color #E6FEBF on white background.
This text has black color on #E6FEBF background.
This text has white color on #E6FEBF background.