HEX: #133512
RGB: (19,53,18)
#133512 contains red, green and blue colors in about the same proportion. Web safe color of #133512 is #003300 (or #030).
#133512 color RGB value is (19,53,18).
RGB: (19,53,18) (7%,21%,7%)
R 19 of 255 = 7%
G 53 of 255 = 21%
B 18 of 255 = 7%
R + G + B ~ 12%. #133512 is dark color.
R + G + B =
19 + 53 + 18 = 90 (100%)
R 19 of 90 ~ 21.11%
G 53 of 90 ~ 58.89%
B 18 of 90 ~ 20%
#133512 color CMYK value is (64,0,66,79).
CMYK: (64,0,66,79) C64M0Y66K79 (64%,0%,66%,79%) (0.64/0.00/0.66/0.79)
13 | 35 | 12 | |
---|---|---|---|
RGB | 19 | 53 | 18 |
HSL | 118° | 49.30% | 13.92% |
HSB/HSV | 118° | 66.04% | 20.78% |
CMYK | 64.15% | 0.00% | 66.04% |
79.22% |
HEX | 13 | 35 | 12 |
Decimal | 19 | 53 | 18 |
Binary | 10011 | 110101 | 10010 |
Octal | 23 | 65 | 22 |
Examples of css and html codes for elements with #133512 color. Also use rgb(19,53,18) instead hex code.
.myTextColor { color: #133512; }
<p style="color:#133512">This sample text font color is #133512.</p>
This text font color is #133512.
.myBgColor { background-color: #133512; }
<div style="background-color:#133512">Inner text</div>
This div background color is #133512.
.myBorderColor { border: 1px solid #133512; }
<div style="border:3px solid #133512">Div</div>
This div border color is #133512.
.myOpacity80 { color: #133512; opacity: 0.8; }
<p style="color:#133512;opacity:0.8;">80%</p>
Text with #133512 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #133512;}
<p style="text-shadow: 3px 3px 1px #133512">Text here.</p>
This text has shadow with #133512 color.
.textShadow {text-shadow: 3px 3px 1px #133512, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #133512, 5px 5px 20px red">Text here.</p>
This text has shadow with #133512 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#133512, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#133512, Direction=45, Strength=4)">Text</p>
This text has shadow with #133512 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #133512; -webkit-box-shadow: 1px 1px 3px 2px #133512; box-shadow: 1px 1px 3px 2px #133512; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #133512; -webkit-box-shadow: 1px 1px 3px 2px #133512; box-shadow:1px 1px 3px 2px #133512;">
Div content here</div>
This text has color #133512 on black background.
This text has color #133512 on white background.
This text has black color on #133512 background.
This text has white color on #133512 background.