HEX: #98FB98
RGB: (152,251,152)
Color name is PaleGreen. #98FB98 contains mainly green color. Web safe color of #98FB98 is #99FF99 (or #9F9).
#98FB98 color RGB value is (152,251,152).
RGB: (152,251,152) (60%,98%,60%)
R 152 of 255 = 60%
G 251 of 255 = 98%
B 152 of 255 = 60%
R + G + B ~ 73%. #98FB98 is quite light color.
R + G + B =
152 + 251 + 152 = 555 (100%)
R 152 of 555 ~ 27.39%
G 251 of 555 ~ 45.23%
B 152 of 555 ~ 27.39%
#98FB98 color CMYK value is (39,0,39,2).
CMYK: (39,0,39,2) C39M0Y39K2 (39%,0%,39%,2%) (0.39/0.00/0.39/0.02)
98 | FB | 98 | |
---|---|---|---|
RGB | 152 | 251 | 152 |
HSL | 120° | 92.52% | 79.02% |
HSB/HSV | 120° | 39.44% | 98.43% |
CMYK | 39.44% | 0.00% | 39.44% |
1.57% |
HEX | 98 | FB | 98 |
Decimal | 152 | 251 | 152 |
Binary | 10011000 | 11111011 | 10011000 |
Octal | 230 | 373 | 230 |
Examples of css and html codes for elements with #98FB98 color. Also use rgb(152,251,152) instead hex code.
.myTextColor { color: #98FB98; }
<p style="color:#98FB98">This sample text font color is #98FB98.</p>
This text font color is #98FB98.
.myBgColor { background-color: #98FB98; }
<div style="background-color:#98FB98">Inner text</div>
This div background color is #98FB98.
.myBorderColor { border: 1px solid #98FB98; }
<div style="border:3px solid #98FB98">Div</div>
This div border color is #98FB98.
.myOpacity80 { color: #98FB98; opacity: 0.8; }
<p style="color:#98FB98;opacity:0.8;">80%</p>
Text with #98FB98 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #98FB98;}
<p style="text-shadow: 3px 3px 1px #98FB98">Text here.</p>
This text has shadow with #98FB98 color.
.textShadow {text-shadow: 3px 3px 1px #98FB98, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #98FB98, 5px 5px 20px red">Text here.</p>
This text has shadow with #98FB98 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#98FB98, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#98FB98, Direction=45, Strength=4)">Text</p>
This text has shadow with #98FB98 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #98FB98; -webkit-box-shadow: 1px 1px 3px 2px #98FB98; box-shadow: 1px 1px 3px 2px #98FB98; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #98FB98; -webkit-box-shadow: 1px 1px 3px 2px #98FB98; box-shadow:1px 1px 3px 2px #98FB98;">
Div content here</div>
This text has color #98FB98 on black background.
This text has color #98FB98 on white background.
This text has black color on #98FB98 background.
This text has white color on #98FB98 background.