HEX: #173825
RGB: (23,56,37)
#173825 contains red, green and blue colors in about the same proportion. Web safe color of #173825 is #003333 (or #033).
#173825 color RGB value is (23,56,37).
RGB: (23,56,37) (9%,22%,15%)
R 23 of 255 = 9%
G 56 of 255 = 22%
B 37 of 255 = 15%
R + G + B ~ 15%. #173825 is dark color.
R + G + B =
23 + 56 + 37 = 116 (100%)
R 23 of 116 ~ 19.83%
G 56 of 116 ~ 48.28%
B 37 of 116 ~ 31.9%
#173825 color CMYK value is (59,0,34,78).
CMYK: (59,0,34,78) C59M0Y34K78 (59%,0%,34%,78%) (0.59/0.00/0.34/0.78)
17 | 38 | 25 | |
---|---|---|---|
RGB | 23 | 56 | 37 |
HSL | 145° | 41.77% | 15.49% |
HSB/HSV | 145° | 58.93% | 21.96% |
CMYK | 58.93% | 0.00% | 33.93% |
78.04% |
HEX | 17 | 38 | 25 |
Decimal | 23 | 56 | 37 |
Binary | 10111 | 111000 | 100101 |
Octal | 27 | 70 | 45 |
Examples of css and html codes for elements with #173825 color. Also use rgb(23,56,37) instead hex code.
.myTextColor { color: #173825; }
<p style="color:#173825">This sample text font color is #173825.</p>
This text font color is #173825.
.myBgColor { background-color: #173825; }
<div style="background-color:#173825">Inner text</div>
This div background color is #173825.
.myBorderColor { border: 1px solid #173825; }
<div style="border:3px solid #173825">Div</div>
This div border color is #173825.
.myOpacity80 { color: #173825; opacity: 0.8; }
<p style="color:#173825;opacity:0.8;">80%</p>
Text with #173825 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #173825;}
<p style="text-shadow: 3px 3px 1px #173825">Text here.</p>
This text has shadow with #173825 color.
.textShadow {text-shadow: 3px 3px 1px #173825, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #173825, 5px 5px 20px red">Text here.</p>
This text has shadow with #173825 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#173825, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#173825, Direction=45, Strength=4)">Text</p>
This text has shadow with #173825 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #173825; -webkit-box-shadow: 1px 1px 3px 2px #173825; box-shadow: 1px 1px 3px 2px #173825; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #173825; -webkit-box-shadow: 1px 1px 3px 2px #173825; box-shadow:1px 1px 3px 2px #173825;">
Div content here</div>
This text has color #173825 on black background.
This text has color #173825 on white background.
This text has black color on #173825 background.
This text has white color on #173825 background.