HEX: #211333
RGB: (33,19,51)
#211333 contains red, green and blue colors in about the same proportion. Web safe color of #211333 is #330033 (or #303).
#211333 color RGB value is (33,19,51).
RGB: (33,19,51) (13%,7%,20%)
R 33 of 255 = 13%
G 19 of 255 = 7%
B 51 of 255 = 20%
R + G + B ~ 13%. #211333 is dark color.
R + G + B =
33 + 19 + 51 = 103 (100%)
R 33 of 103 ~ 32.04%
G 19 of 103 ~ 18.45%
B 51 of 103 ~ 49.51%
#211333 color CMYK value is (35,63,0,80).
CMYK: (35,63,0,80) C35M63Y0K80 (35%,63%,0%,80%) (0.35/0.63/0.00/0.80)
21 | 13 | 33 | |
---|---|---|---|
RGB | 33 | 19 | 51 |
HSL | 266° | 45.71% | 13.73% |
HSB/HSV | 266° | 62.75% | 20.00% |
CMYK | 35.29% | 62.75% | 0.00% |
80.00% |
HEX | 21 | 13 | 33 |
Decimal | 33 | 19 | 51 |
Binary | 100001 | 10011 | 110011 |
Octal | 41 | 23 | 63 |
Examples of css and html codes for elements with #211333 color. Also use rgb(33,19,51) instead hex code.
.myTextColor { color: #211333; }
<p style="color:#211333">This sample text font color is #211333.</p>
This text font color is #211333.
.myBgColor { background-color: #211333; }
<div style="background-color:#211333">Inner text</div>
This div background color is #211333.
.myBorderColor { border: 1px solid #211333; }
<div style="border:3px solid #211333">Div</div>
This div border color is #211333.
.myOpacity80 { color: #211333; opacity: 0.8; }
<p style="color:#211333;opacity:0.8;">80%</p>
Text with #211333 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #211333;}
<p style="text-shadow: 3px 3px 1px #211333">Text here.</p>
This text has shadow with #211333 color.
.textShadow {text-shadow: 3px 3px 1px #211333, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #211333, 5px 5px 20px red">Text here.</p>
This text has shadow with #211333 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#211333, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#211333, Direction=45, Strength=4)">Text</p>
This text has shadow with #211333 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #211333; -webkit-box-shadow: 1px 1px 3px 2px #211333; box-shadow: 1px 1px 3px 2px #211333; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #211333; -webkit-box-shadow: 1px 1px 3px 2px #211333; box-shadow:1px 1px 3px 2px #211333;">
Div content here</div>
This text has color #211333 on black background.
This text has color #211333 on white background.
This text has black color on #211333 background.
This text has white color on #211333 background.