HEX: #E6FA98
RGB: (230,250,152)
#E6FA98 contains mainly red and green colors. Web safe color of #E6FA98 is #CCFF99 (or #CF9).
#E6FA98 color RGB value is (230,250,152).
RGB: (230,250,152) (90%,98%,60%)
R 230 of 255 = 90%
G 250 of 255 = 98%
B 152 of 255 = 60%
R + G + B ~ 83%. #E6FA98 is quite light color.
R + G + B =
230 + 250 + 152 = 632 (100%)
R 230 of 632 ~ 36.39%
G 250 of 632 ~ 39.56%
B 152 of 632 ~ 24.05%
#E6FA98 color CMYK value is (8,0,39,2).
CMYK: (8,0,39,2) C8M0Y39K2 (8%,0%,39%,2%) (0.08/0.00/0.39/0.02)
E6 | FA | 98 | |
---|---|---|---|
RGB | 230 | 250 | 152 |
HSL | 72° | 90.74% | 78.82% |
HSB/HSV | 72° | 39.20% | 98.04% |
CMYK | 8.00% | 0.00% | 39.20% |
1.96% |
HEX | E6 | FA | 98 |
Decimal | 230 | 250 | 152 |
Binary | 11100110 | 11111010 | 10011000 |
Octal | 346 | 372 | 230 |
Examples of css and html codes for elements with #E6FA98 color. Also use rgb(230,250,152) instead hex code.
.myTextColor { color: #E6FA98; }
<p style="color:#E6FA98">This sample text font color is #E6FA98.</p>
This text font color is #E6FA98.
.myBgColor { background-color: #E6FA98; }
<div style="background-color:#E6FA98">Inner text</div>
This div background color is #E6FA98.
.myBorderColor { border: 1px solid #E6FA98; }
<div style="border:3px solid #E6FA98">Div</div>
This div border color is #E6FA98.
.myOpacity80 { color: #E6FA98; opacity: 0.8; }
<p style="color:#E6FA98;opacity:0.8;">80%</p>
Text with #E6FA98 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6FA98;}
<p style="text-shadow: 3px 3px 1px #E6FA98">Text here.</p>
This text has shadow with #E6FA98 color.
.textShadow {text-shadow: 3px 3px 1px #E6FA98, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6FA98, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6FA98 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6FA98, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6FA98, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6FA98 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6FA98; -webkit-box-shadow: 1px 1px 3px 2px #E6FA98; box-shadow: 1px 1px 3px 2px #E6FA98; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6FA98; -webkit-box-shadow: 1px 1px 3px 2px #E6FA98; box-shadow:1px 1px 3px 2px #E6FA98;">
Div content here</div>
This text has color #E6FA98 on black background.
This text has color #E6FA98 on white background.
This text has black color on #E6FA98 background.
This text has white color on #E6FA98 background.