HEX: #33375D
RGB: (51,55,93)
#33375D contains red, green and blue colors in about the same proportion. Web safe color of #33375D is #333366 (or #336).
#33375D color RGB value is (51,55,93).
RGB: (51,55,93) (20%,22%,36%)
R 51 of 255 = 20%
G 55 of 255 = 22%
B 93 of 255 = 36%
R + G + B ~ 26%. #33375D is quite dark color.
R + G + B =
51 + 55 + 93 = 199 (100%)
R 51 of 199 ~ 25.63%
G 55 of 199 ~ 27.64%
B 93 of 199 ~ 46.73%
#33375D color CMYK value is (45,41,0,64).
CMYK: (45,41,0,64) C45M41Y0K64 (45%,41%,0%,64%) (0.45/0.41/0.00/0.64)
33 | 37 | 5D | |
---|---|---|---|
RGB | 51 | 55 | 93 |
HSL | 234° | 29.17% | 28.24% |
HSB/HSV | 234° | 45.16% | 36.47% |
CMYK | 45.16% | 40.86% | 0.00% |
63.53% |
HEX | 33 | 37 | 5D |
Decimal | 51 | 55 | 93 |
Binary | 110011 | 110111 | 1011101 |
Octal | 63 | 67 | 135 |
Examples of css and html codes for elements with #33375D color. Also use rgb(51,55,93) instead hex code.
.myTextColor { color: #33375D; }
<p style="color:#33375D">This sample text font color is #33375D.</p>
This text font color is #33375D.
.myBgColor { background-color: #33375D; }
<div style="background-color:#33375D">Inner text</div>
This div background color is #33375D.
.myBorderColor { border: 1px solid #33375D; }
<div style="border:3px solid #33375D">Div</div>
This div border color is #33375D.
.myOpacity80 { color: #33375D; opacity: 0.8; }
<p style="color:#33375D;opacity:0.8;">80%</p>
Text with #33375D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #33375D;}
<p style="text-shadow: 3px 3px 1px #33375D">Text here.</p>
This text has shadow with #33375D color.
.textShadow {text-shadow: 3px 3px 1px #33375D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #33375D, 5px 5px 20px red">Text here.</p>
This text has shadow with #33375D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#33375D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#33375D, Direction=45, Strength=4)">Text</p>
This text has shadow with #33375D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #33375D; -webkit-box-shadow: 1px 1px 3px 2px #33375D; box-shadow: 1px 1px 3px 2px #33375D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #33375D; -webkit-box-shadow: 1px 1px 3px 2px #33375D; box-shadow:1px 1px 3px 2px #33375D;">
Div content here</div>
This text has color #33375D on black background.
This text has color #33375D on white background.
This text has black color on #33375D background.
This text has white color on #33375D background.