HEX: #133823
RGB: (19,56,35)
#133823 contains red, green and blue colors in about the same proportion. Web safe color of #133823 is #003333 (or #033).
#133823 color RGB value is (19,56,35).
RGB: (19,56,35) (7%,22%,14%)
R 19 of 255 = 7%
G 56 of 255 = 22%
B 35 of 255 = 14%
R + G + B ~ 14%. #133823 is dark color.
R + G + B =
19 + 56 + 35 = 110 (100%)
R 19 of 110 ~ 17.27%
G 56 of 110 ~ 50.91%
B 35 of 110 ~ 31.82%
#133823 color CMYK value is (66,0,38,78).
CMYK: (66,0,38,78) C66M0Y38K78 (66%,0%,38%,78%) (0.66/0.00/0.38/0.78)
13 | 38 | 23 | |
---|---|---|---|
RGB | 19 | 56 | 35 |
HSL | 146° | 49.33% | 14.71% |
HSB/HSV | 146° | 66.07% | 21.96% |
CMYK | 66.07% | 0.00% | 37.50% |
78.04% |
HEX | 13 | 38 | 23 |
Decimal | 19 | 56 | 35 |
Binary | 10011 | 111000 | 100011 |
Octal | 23 | 70 | 43 |
Examples of css and html codes for elements with #133823 color. Also use rgb(19,56,35) instead hex code.
.myTextColor { color: #133823; }
<p style="color:#133823">This sample text font color is #133823.</p>
This text font color is #133823.
.myBgColor { background-color: #133823; }
<div style="background-color:#133823">Inner text</div>
This div background color is #133823.
.myBorderColor { border: 1px solid #133823; }
<div style="border:3px solid #133823">Div</div>
This div border color is #133823.
.myOpacity80 { color: #133823; opacity: 0.8; }
<p style="color:#133823;opacity:0.8;">80%</p>
Text with #133823 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #133823;}
<p style="text-shadow: 3px 3px 1px #133823">Text here.</p>
This text has shadow with #133823 color.
.textShadow {text-shadow: 3px 3px 1px #133823, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #133823, 5px 5px 20px red">Text here.</p>
This text has shadow with #133823 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#133823, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#133823, Direction=45, Strength=4)">Text</p>
This text has shadow with #133823 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #133823; -webkit-box-shadow: 1px 1px 3px 2px #133823; box-shadow: 1px 1px 3px 2px #133823; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #133823; -webkit-box-shadow: 1px 1px 3px 2px #133823; box-shadow:1px 1px 3px 2px #133823;">
Div content here</div>
This text has color #133823 on black background.
This text has color #133823 on white background.
This text has black color on #133823 background.
This text has white color on #133823 background.