HEX: #598A01
RGB: (89,138,1)
#598A01 contains mainly red and green colors. Web safe color of #598A01 is #669900 (or #690).
#598A01 color RGB value is (89,138,1).
RGB: (89,138,1) (35%,54%,0%)
R 89 of 255 = 35%
G 138 of 255 = 54%
B 1 of 255 = 0%
R + G + B ~ 30%. #598A01 is quite dark color.
R + G + B =
89 + 138 + 1 = 228 (100%)
R 89 of 228 ~ 39.04%
G 138 of 228 ~ 60.53%
B 1 of 228 ~ 0.44%
#598A01 color CMYK value is (36,0,99,46).
CMYK: (36,0,99,46) C36M0Y99K46 (36%,0%,99%,46%) (0.36/0.00/0.99/0.46)
59 | 8A | 01 | |
---|---|---|---|
RGB | 89 | 138 | 1 |
HSL | 81° | 98.56% | 27.25% |
HSB/HSV | 81° | 99.28% | 54.12% |
CMYK | 35.51% | 0.00% | 99.28% |
45.88% |
HEX | 59 | 8A | 01 |
Decimal | 89 | 138 | 1 |
Binary | 1011001 | 10001010 | 1 |
Octal | 131 | 212 | 1 |
Examples of css and html codes for elements with #598A01 color. Also use rgb(89,138,1) instead hex code.
.myTextColor { color: #598A01; }
<p style="color:#598A01">This sample text font color is #598A01.</p>
This text font color is #598A01.
.myBgColor { background-color: #598A01; }
<div style="background-color:#598A01">Inner text</div>
This div background color is #598A01.
.myBorderColor { border: 1px solid #598A01; }
<div style="border:3px solid #598A01">Div</div>
This div border color is #598A01.
.myOpacity80 { color: #598A01; opacity: 0.8; }
<p style="color:#598A01;opacity:0.8;">80%</p>
Text with #598A01 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #598A01;}
<p style="text-shadow: 3px 3px 1px #598A01">Text here.</p>
This text has shadow with #598A01 color.
.textShadow {text-shadow: 3px 3px 1px #598A01, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #598A01, 5px 5px 20px red">Text here.</p>
This text has shadow with #598A01 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#598A01, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#598A01, Direction=45, Strength=4)">Text</p>
This text has shadow with #598A01 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #598A01; -webkit-box-shadow: 1px 1px 3px 2px #598A01; box-shadow: 1px 1px 3px 2px #598A01; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #598A01; -webkit-box-shadow: 1px 1px 3px 2px #598A01; box-shadow:1px 1px 3px 2px #598A01;">
Div content here</div>
This text has color #598A01 on black background.
This text has color #598A01 on white background.
This text has black color on #598A01 background.
This text has white color on #598A01 background.