HEX: #112529
RGB: (17,37,41)
#112529 contains red, green and blue colors in about the same proportion. Web safe color of #112529 is #003333 (or #033).
#112529 color RGB value is (17,37,41).
RGB: (17,37,41) (7%,15%,16%)
R 17 of 255 = 7%
G 37 of 255 = 15%
B 41 of 255 = 16%
R + G + B ~ 13%. #112529 is dark color.
R + G + B =
17 + 37 + 41 = 95 (100%)
R 17 of 95 ~ 17.89%
G 37 of 95 ~ 38.95%
B 41 of 95 ~ 43.16%
#112529 color CMYK value is (59,10,0,84).
CMYK: (59,10,0,84) C59M10Y0K84 (59%,10%,0%,84%) (0.59/0.10/0.00/0.84)
11 | 25 | 29 | |
---|---|---|---|
RGB | 17 | 37 | 41 |
HSL | 190° | 41.38% | 11.37% |
HSB/HSV | 190° | 58.54% | 16.08% |
CMYK | 58.54% | 9.76% | 0.00% |
83.92% |
HEX | 11 | 25 | 29 |
Decimal | 17 | 37 | 41 |
Binary | 10001 | 100101 | 101001 |
Octal | 21 | 45 | 51 |
Examples of css and html codes for elements with #112529 color. Also use rgb(17,37,41) instead hex code.
.myTextColor { color: #112529; }
<p style="color:#112529">This sample text font color is #112529.</p>
This text font color is #112529.
.myBgColor { background-color: #112529; }
<div style="background-color:#112529">Inner text</div>
This div background color is #112529.
.myBorderColor { border: 1px solid #112529; }
<div style="border:3px solid #112529">Div</div>
This div border color is #112529.
.myOpacity80 { color: #112529; opacity: 0.8; }
<p style="color:#112529;opacity:0.8;">80%</p>
Text with #112529 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #112529;}
<p style="text-shadow: 3px 3px 1px #112529">Text here.</p>
This text has shadow with #112529 color.
.textShadow {text-shadow: 3px 3px 1px #112529, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #112529, 5px 5px 20px red">Text here.</p>
This text has shadow with #112529 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#112529, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#112529, Direction=45, Strength=4)">Text</p>
This text has shadow with #112529 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #112529; -webkit-box-shadow: 1px 1px 3px 2px #112529; box-shadow: 1px 1px 3px 2px #112529; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #112529; -webkit-box-shadow: 1px 1px 3px 2px #112529; box-shadow:1px 1px 3px 2px #112529;">
Div content here</div>
This text has color #112529 on black background.
This text has color #112529 on white background.
This text has black color on #112529 background.
This text has white color on #112529 background.