HEX: #13333D
RGB: (19,51,61)
#13333D contains red, green and blue colors in about the same proportion. Web safe color of #13333D is #003333 (or #033).
#13333D color RGB value is (19,51,61).
RGB: (19,51,61) (7%,20%,24%)
R 19 of 255 = 7%
G 51 of 255 = 20%
B 61 of 255 = 24%
R + G + B ~ 17%. #13333D is dark color.
R + G + B =
19 + 51 + 61 = 131 (100%)
R 19 of 131 ~ 14.5%
G 51 of 131 ~ 38.93%
B 61 of 131 ~ 46.56%
#13333D color CMYK value is (69,16,0,76).
CMYK: (69,16,0,76) C69M16Y0K76 (69%,16%,0%,76%) (0.69/0.16/0.00/0.76)
13 | 33 | 3D | |
---|---|---|---|
RGB | 19 | 51 | 61 |
HSL | 194° | 52.50% | 15.69% |
HSB/HSV | 194° | 68.85% | 23.92% |
CMYK | 68.85% | 16.39% | 0.00% |
76.08% |
HEX | 13 | 33 | 3D |
Decimal | 19 | 51 | 61 |
Binary | 10011 | 110011 | 111101 |
Octal | 23 | 63 | 75 |
Examples of css and html codes for elements with #13333D color. Also use rgb(19,51,61) instead hex code.
.myTextColor { color: #13333D; }
<p style="color:#13333D">This sample text font color is #13333D.</p>
This text font color is #13333D.
.myBgColor { background-color: #13333D; }
<div style="background-color:#13333D">Inner text</div>
This div background color is #13333D.
.myBorderColor { border: 1px solid #13333D; }
<div style="border:3px solid #13333D">Div</div>
This div border color is #13333D.
.myOpacity80 { color: #13333D; opacity: 0.8; }
<p style="color:#13333D;opacity:0.8;">80%</p>
Text with #13333D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #13333D;}
<p style="text-shadow: 3px 3px 1px #13333D">Text here.</p>
This text has shadow with #13333D color.
.textShadow {text-shadow: 3px 3px 1px #13333D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #13333D, 5px 5px 20px red">Text here.</p>
This text has shadow with #13333D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#13333D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#13333D, Direction=45, Strength=4)">Text</p>
This text has shadow with #13333D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #13333D; -webkit-box-shadow: 1px 1px 3px 2px #13333D; box-shadow: 1px 1px 3px 2px #13333D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #13333D; -webkit-box-shadow: 1px 1px 3px 2px #13333D; box-shadow:1px 1px 3px 2px #13333D;">
Div content here</div>
This text has color #13333D on black background.
This text has color #13333D on white background.
This text has black color on #13333D background.
This text has white color on #13333D background.