HEX: #06531F
RGB: (6,83,31)
#06531F contains mainly green and blue colors. Web safe color of #06531F is #006633 (or #063).
#06531F color RGB value is (6,83,31).
RGB: (6,83,31) (2%,33%,12%)
R 6 of 255 = 2%
G 83 of 255 = 33%
B 31 of 255 = 12%
R + G + B ~ 16%. #06531F is dark color.
R + G + B =
6 + 83 + 31 = 120 (100%)
R 6 of 120 ~ 5%
G 83 of 120 ~ 69.17%
B 31 of 120 ~ 25.83%
#06531F color CMYK value is (93,0,63,67).
CMYK: (93,0,63,67) C93M0Y63K67 (93%,0%,63%,67%) (0.93/0.00/0.63/0.67)
06 | 53 | 1F | |
---|---|---|---|
RGB | 6 | 83 | 31 |
HSL | 139° | 86.52% | 17.45% |
HSB/HSV | 139° | 92.77% | 32.55% |
CMYK | 92.77% | 0.00% | 62.65% |
67.45% |
HEX | 06 | 53 | 1F |
Decimal | 6 | 83 | 31 |
Binary | 110 | 1010011 | 11111 |
Octal | 6 | 123 | 37 |
Examples of css and html codes for elements with #06531F color. Also use rgb(6,83,31) instead hex code.
.myTextColor { color: #06531F; }
<p style="color:#06531F">This sample text font color is #06531F.</p>
This text font color is #06531F.
.myBgColor { background-color: #06531F; }
<div style="background-color:#06531F">Inner text</div>
This div background color is #06531F.
.myBorderColor { border: 1px solid #06531F; }
<div style="border:3px solid #06531F">Div</div>
This div border color is #06531F.
.myOpacity80 { color: #06531F; opacity: 0.8; }
<p style="color:#06531F;opacity:0.8;">80%</p>
Text with #06531F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #06531F;}
<p style="text-shadow: 3px 3px 1px #06531F">Text here.</p>
This text has shadow with #06531F color.
.textShadow {text-shadow: 3px 3px 1px #06531F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #06531F, 5px 5px 20px red">Text here.</p>
This text has shadow with #06531F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#06531F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#06531F, Direction=45, Strength=4)">Text</p>
This text has shadow with #06531F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #06531F; -webkit-box-shadow: 1px 1px 3px 2px #06531F; box-shadow: 1px 1px 3px 2px #06531F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #06531F; -webkit-box-shadow: 1px 1px 3px 2px #06531F; box-shadow:1px 1px 3px 2px #06531F;">
Div content here</div>
This text has color #06531F on black background.
This text has color #06531F on white background.
This text has black color on #06531F background.
This text has white color on #06531F background.