HEX: #09520C
RGB: (9,82,12)
#09520C contains mainly green color. Web safe color of #09520C is #006600 (or #060).
#09520C color RGB value is (9,82,12).
RGB: (9,82,12) (4%,32%,5%)
R 9 of 255 = 4%
G 82 of 255 = 32%
B 12 of 255 = 5%
R + G + B ~ 14%. #09520C is dark color.
R + G + B =
9 + 82 + 12 = 103 (100%)
R 9 of 103 ~ 8.74%
G 82 of 103 ~ 79.61%
B 12 of 103 ~ 11.65%
#09520C color CMYK value is (89,0,85,68).
CMYK: (89,0,85,68) C89M0Y85K68 (89%,0%,85%,68%) (0.89/0.00/0.85/0.68)
09 | 52 | 0C | |
---|---|---|---|
RGB | 9 | 82 | 12 |
HSL | 122° | 80.22% | 17.84% |
HSB/HSV | 122° | 89.02% | 32.16% |
CMYK | 89.02% | 0.00% | 85.37% |
67.84% |
HEX | 09 | 52 | 0C |
Decimal | 9 | 82 | 12 |
Binary | 1001 | 1010010 | 1100 |
Octal | 11 | 122 | 14 |
Examples of css and html codes for elements with #09520C color. Also use rgb(9,82,12) instead hex code.
.myTextColor { color: #09520C; }
<p style="color:#09520C">This sample text font color is #09520C.</p>
This text font color is #09520C.
.myBgColor { background-color: #09520C; }
<div style="background-color:#09520C">Inner text</div>
This div background color is #09520C.
.myBorderColor { border: 1px solid #09520C; }
<div style="border:3px solid #09520C">Div</div>
This div border color is #09520C.
.myOpacity80 { color: #09520C; opacity: 0.8; }
<p style="color:#09520C;opacity:0.8;">80%</p>
Text with #09520C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #09520C;}
<p style="text-shadow: 3px 3px 1px #09520C">Text here.</p>
This text has shadow with #09520C color.
.textShadow {text-shadow: 3px 3px 1px #09520C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #09520C, 5px 5px 20px red">Text here.</p>
This text has shadow with #09520C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#09520C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#09520C, Direction=45, Strength=4)">Text</p>
This text has shadow with #09520C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #09520C; -webkit-box-shadow: 1px 1px 3px 2px #09520C; box-shadow: 1px 1px 3px 2px #09520C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #09520C; -webkit-box-shadow: 1px 1px 3px 2px #09520C; box-shadow:1px 1px 3px 2px #09520C;">
Div content here</div>
This text has color #09520C on black background.
This text has color #09520C on white background.
This text has black color on #09520C background.
This text has white color on #09520C background.