HEX: #90EE90
RGB: (144,238,144)
Color name is LightGreen. #90EE90 contains mainly green color. Web safe color of #90EE90 is #99FF99 (or #9F9).
#90EE90 color RGB value is (144,238,144).
RGB: (144,238,144) (56%,93%,56%)
R 144 of 255 = 56%
G 238 of 255 = 93%
B 144 of 255 = 56%
R + G + B ~ 68%. #90EE90 is quite light color.
R + G + B =
144 + 238 + 144 = 526 (100%)
R 144 of 526 ~ 27.38%
G 238 of 526 ~ 45.25%
B 144 of 526 ~ 27.38%
#90EE90 color CMYK value is (39,0,39,7).
CMYK: (39,0,39,7) C39M0Y39K7 (39%,0%,39%,7%) (0.39/0.00/0.39/0.07)
90 | EE | 90 | |
---|---|---|---|
RGB | 144 | 238 | 144 |
HSL | 120° | 73.44% | 74.90% |
HSB/HSV | 120° | 39.50% | 93.33% |
CMYK | 39.50% | 0.00% | 39.50% |
6.67% |
HEX | 90 | EE | 90 |
Decimal | 144 | 238 | 144 |
Binary | 10010000 | 11101110 | 10010000 |
Octal | 220 | 356 | 220 |
Examples of css and html codes for elements with #90EE90 color. Also use rgb(144,238,144) instead hex code.
.myTextColor { color: #90EE90; }
<p style="color:#90EE90">This sample text font color is #90EE90.</p>
This text font color is #90EE90.
.myBgColor { background-color: #90EE90; }
<div style="background-color:#90EE90">Inner text</div>
This div background color is #90EE90.
.myBorderColor { border: 1px solid #90EE90; }
<div style="border:3px solid #90EE90">Div</div>
This div border color is #90EE90.
.myOpacity80 { color: #90EE90; opacity: 0.8; }
<p style="color:#90EE90;opacity:0.8;">80%</p>
Text with #90EE90 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #90EE90;}
<p style="text-shadow: 3px 3px 1px #90EE90">Text here.</p>
This text has shadow with #90EE90 color.
.textShadow {text-shadow: 3px 3px 1px #90EE90, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #90EE90, 5px 5px 20px red">Text here.</p>
This text has shadow with #90EE90 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#90EE90, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#90EE90, Direction=45, Strength=4)">Text</p>
This text has shadow with #90EE90 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #90EE90; -webkit-box-shadow: 1px 1px 3px 2px #90EE90; box-shadow: 1px 1px 3px 2px #90EE90; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #90EE90; -webkit-box-shadow: 1px 1px 3px 2px #90EE90; box-shadow:1px 1px 3px 2px #90EE90;">
Div content here</div>
This text has color #90EE90 on black background.
This text has color #90EE90 on white background.
This text has black color on #90EE90 background.
This text has white color on #90EE90 background.