HEX: #488B37
RGB: (72,139,55)
#488B37 contains mainly green color. Web safe color of #488B37 is #339933 (or #393).
#488B37 color RGB value is (72,139,55).
RGB: (72,139,55) (28%,55%,22%)
R 72 of 255 = 28%
G 139 of 255 = 55%
B 55 of 255 = 22%
R + G + B ~ 35%. #488B37 is quite dark color.
R + G + B =
72 + 139 + 55 = 266 (100%)
R 72 of 266 ~ 27.07%
G 139 of 266 ~ 52.26%
B 55 of 266 ~ 20.68%
#488B37 color CMYK value is (48,0,60,45).
CMYK: (48,0,60,45) C48M0Y60K45 (48%,0%,60%,45%) (0.48/0.00/0.60/0.45)
48 | 8B | 37 | |
---|---|---|---|
RGB | 72 | 139 | 55 |
HSL | 108° | 43.30% | 38.04% |
HSB/HSV | 108° | 60.43% | 54.51% |
CMYK | 48.20% | 0.00% | 60.43% |
45.49% |
HEX | 48 | 8B | 37 |
Decimal | 72 | 139 | 55 |
Binary | 1001000 | 10001011 | 110111 |
Octal | 110 | 213 | 67 |
Examples of css and html codes for elements with #488B37 color. Also use rgb(72,139,55) instead hex code.
.myTextColor { color: #488B37; }
<p style="color:#488B37">This sample text font color is #488B37.</p>
This text font color is #488B37.
.myBgColor { background-color: #488B37; }
<div style="background-color:#488B37">Inner text</div>
This div background color is #488B37.
.myBorderColor { border: 1px solid #488B37; }
<div style="border:3px solid #488B37">Div</div>
This div border color is #488B37.
.myOpacity80 { color: #488B37; opacity: 0.8; }
<p style="color:#488B37;opacity:0.8;">80%</p>
Text with #488B37 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #488B37;}
<p style="text-shadow: 3px 3px 1px #488B37">Text here.</p>
This text has shadow with #488B37 color.
.textShadow {text-shadow: 3px 3px 1px #488B37, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #488B37, 5px 5px 20px red">Text here.</p>
This text has shadow with #488B37 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#488B37, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#488B37, Direction=45, Strength=4)">Text</p>
This text has shadow with #488B37 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #488B37; -webkit-box-shadow: 1px 1px 3px 2px #488B37; box-shadow: 1px 1px 3px 2px #488B37; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #488B37; -webkit-box-shadow: 1px 1px 3px 2px #488B37; box-shadow:1px 1px 3px 2px #488B37;">
Div content here</div>
This text has color #488B37 on black background.
This text has color #488B37 on white background.
This text has black color on #488B37 background.
This text has white color on #488B37 background.