HEX: #487A3E
RGB: (72,122,62)
#487A3E contains mainly red and green colors. Web safe color of #487A3E is #336633 (or #363).
#487A3E color RGB value is (72,122,62).
RGB: (72,122,62) (28%,48%,24%)
R 72 of 255 = 28%
G 122 of 255 = 48%
B 62 of 255 = 24%
R + G + B ~ 33%. #487A3E is quite dark color.
R + G + B =
72 + 122 + 62 = 256 (100%)
R 72 of 256 ~ 28.13%
G 122 of 256 ~ 47.66%
B 62 of 256 ~ 24.22%
#487A3E color CMYK value is (41,0,49,52).
CMYK: (41,0,49,52) C41M0Y49K52 (41%,0%,49%,52%) (0.41/0.00/0.49/0.52)
48 | 7A | 3E | |
---|---|---|---|
RGB | 72 | 122 | 62 |
HSL | 110° | 32.61% | 36.08% |
HSB/HSV | 110° | 49.18% | 47.84% |
CMYK | 40.98% | 0.00% | 49.18% |
52.16% |
HEX | 48 | 7A | 3E |
Decimal | 72 | 122 | 62 |
Binary | 1001000 | 1111010 | 111110 |
Octal | 110 | 172 | 76 |
Examples of css and html codes for elements with #487A3E color. Also use rgb(72,122,62) instead hex code.
.myTextColor { color: #487A3E; }
<p style="color:#487A3E">This sample text font color is #487A3E.</p>
This text font color is #487A3E.
.myBgColor { background-color: #487A3E; }
<div style="background-color:#487A3E">Inner text</div>
This div background color is #487A3E.
.myBorderColor { border: 1px solid #487A3E; }
<div style="border:3px solid #487A3E">Div</div>
This div border color is #487A3E.
.myOpacity80 { color: #487A3E; opacity: 0.8; }
<p style="color:#487A3E;opacity:0.8;">80%</p>
Text with #487A3E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #487A3E;}
<p style="text-shadow: 3px 3px 1px #487A3E">Text here.</p>
This text has shadow with #487A3E color.
.textShadow {text-shadow: 3px 3px 1px #487A3E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #487A3E, 5px 5px 20px red">Text here.</p>
This text has shadow with #487A3E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#487A3E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#487A3E, Direction=45, Strength=4)">Text</p>
This text has shadow with #487A3E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #487A3E; -webkit-box-shadow: 1px 1px 3px 2px #487A3E; box-shadow: 1px 1px 3px 2px #487A3E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #487A3E; -webkit-box-shadow: 1px 1px 3px 2px #487A3E; box-shadow:1px 1px 3px 2px #487A3E;">
Div content here</div>
This text has color #487A3E on black background.
This text has color #487A3E on white background.
This text has black color on #487A3E background.
This text has white color on #487A3E background.