HEX: #131721
RGB: (19,23,33)
#131721 contains red, green and blue colors in about the same proportion. Web safe color of #131721 is #000033 (or #003).
#131721 color RGB value is (19,23,33).
RGB: (19,23,33) (7%,9%,13%)
R 19 of 255 = 7%
G 23 of 255 = 9%
B 33 of 255 = 13%
R + G + B ~ 10%. #131721 is dark color.
R + G + B =
19 + 23 + 33 = 75 (100%)
R 19 of 75 ~ 25.33%
G 23 of 75 ~ 30.67%
B 33 of 75 ~ 44%
#131721 color CMYK value is (42,30,0,87).
CMYK: (42,30,0,87) C42M30Y0K87 (42%,30%,0%,87%) (0.42/0.30/0.00/0.87)
13 | 17 | 21 | |
---|---|---|---|
RGB | 19 | 23 | 33 |
HSL | 223° | 26.92% | 10.20% |
HSB/HSV | 223° | 42.42% | 12.94% |
CMYK | 42.42% | 30.30% | 0.00% |
87.06% |
HEX | 13 | 17 | 21 |
Decimal | 19 | 23 | 33 |
Binary | 10011 | 10111 | 100001 |
Octal | 23 | 27 | 41 |
Examples of css and html codes for elements with #131721 color. Also use rgb(19,23,33) instead hex code.
.myTextColor { color: #131721; }
<p style="color:#131721">This sample text font color is #131721.</p>
This text font color is #131721.
.myBgColor { background-color: #131721; }
<div style="background-color:#131721">Inner text</div>
This div background color is #131721.
.myBorderColor { border: 1px solid #131721; }
<div style="border:3px solid #131721">Div</div>
This div border color is #131721.
.myOpacity80 { color: #131721; opacity: 0.8; }
<p style="color:#131721;opacity:0.8;">80%</p>
Text with #131721 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #131721;}
<p style="text-shadow: 3px 3px 1px #131721">Text here.</p>
This text has shadow with #131721 color.
.textShadow {text-shadow: 3px 3px 1px #131721, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #131721, 5px 5px 20px red">Text here.</p>
This text has shadow with #131721 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#131721, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#131721, Direction=45, Strength=4)">Text</p>
This text has shadow with #131721 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #131721; -webkit-box-shadow: 1px 1px 3px 2px #131721; box-shadow: 1px 1px 3px 2px #131721; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #131721; -webkit-box-shadow: 1px 1px 3px 2px #131721; box-shadow:1px 1px 3px 2px #131721;">
Div content here</div>
This text has color #131721 on black background.
This text has color #131721 on white background.
This text has black color on #131721 background.
This text has white color on #131721 background.