HEX: #32CD32
RGB: (50,205,50)
Color name is LimeGreen. #32CD32 contains mainly green color. Web safe color of #32CD32 is #33CC33 (or #3C3).
#32CD32 color RGB value is (50,205,50).
RGB: (50,205,50) (20%,80%,20%)
R 50 of 255 = 20%
G 205 of 255 = 80%
B 50 of 255 = 20%
R + G + B ~ 40%. #32CD32 is middle color (not dark and not light).
R + G + B =
50 + 205 + 50 = 305 (100%)
R 50 of 305 ~ 16.39%
G 205 of 305 ~ 67.21%
B 50 of 305 ~ 16.39%
#32CD32 color CMYK value is (76,0,76,20).
CMYK: (76,0,76,20) C76M0Y76K20 (76%,0%,76%,20%) (0.76/0.00/0.76/0.20)
32 | CD | 32 | |
---|---|---|---|
RGB | 50 | 205 | 50 |
HSL | 120° | 60.78% | 50.00% |
HSB/HSV | 120° | 75.61% | 80.39% |
CMYK | 75.61% | 0.00% | 75.61% |
19.61% |
HEX | 32 | CD | 32 |
Decimal | 50 | 205 | 50 |
Binary | 110010 | 11001101 | 110010 |
Octal | 62 | 315 | 62 |
Examples of css and html codes for elements with #32CD32 color. Also use rgb(50,205,50) instead hex code.
.myTextColor { color: #32CD32; }
<p style="color:#32CD32">This sample text font color is #32CD32.</p>
This text font color is #32CD32.
.myBgColor { background-color: #32CD32; }
<div style="background-color:#32CD32">Inner text</div>
This div background color is #32CD32.
.myBorderColor { border: 1px solid #32CD32; }
<div style="border:3px solid #32CD32">Div</div>
This div border color is #32CD32.
.myOpacity80 { color: #32CD32; opacity: 0.8; }
<p style="color:#32CD32;opacity:0.8;">80%</p>
Text with #32CD32 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #32CD32;}
<p style="text-shadow: 3px 3px 1px #32CD32">Text here.</p>
This text has shadow with #32CD32 color.
.textShadow {text-shadow: 3px 3px 1px #32CD32, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #32CD32, 5px 5px 20px red">Text here.</p>
This text has shadow with #32CD32 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#32CD32, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#32CD32, Direction=45, Strength=4)">Text</p>
This text has shadow with #32CD32 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #32CD32; -webkit-box-shadow: 1px 1px 3px 2px #32CD32; box-shadow: 1px 1px 3px 2px #32CD32; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #32CD32; -webkit-box-shadow: 1px 1px 3px 2px #32CD32; box-shadow:1px 1px 3px 2px #32CD32;">
Div content here</div>
This text has color #32CD32 on black background.
This text has color #32CD32 on white background.
This text has black color on #32CD32 background.
This text has white color on #32CD32 background.