HEX: #335253
RGB: (51,82,83)
#335253 contains red, green and blue colors in about the same proportion. Web safe color of #335253 is #336666 (or #366).
#335253 color RGB value is (51,82,83).
RGB: (51,82,83) (20%,32%,33%)
R 51 of 255 = 20%
G 82 of 255 = 32%
B 83 of 255 = 33%
R + G + B ~ 28%. #335253 is quite dark color.
R + G + B =
51 + 82 + 83 = 216 (100%)
R 51 of 216 ~ 23.61%
G 82 of 216 ~ 37.96%
B 83 of 216 ~ 38.43%
#335253 color CMYK value is (39,1,0,67).
CMYK: (39,1,0,67) C39M1Y0K67 (39%,1%,0%,67%) (0.39/0.01/0.00/0.67)
33 | 52 | 53 | |
---|---|---|---|
RGB | 51 | 82 | 83 |
HSL | 182° | 23.88% | 26.27% |
HSB/HSV | 182° | 38.55% | 32.55% |
CMYK | 38.55% | 1.20% | 0.00% |
67.45% |
HEX | 33 | 52 | 53 |
Decimal | 51 | 82 | 83 |
Binary | 110011 | 1010010 | 1010011 |
Octal | 63 | 122 | 123 |
Examples of css and html codes for elements with #335253 color. Also use rgb(51,82,83) instead hex code.
.myTextColor { color: #335253; }
<p style="color:#335253">This sample text font color is #335253.</p>
This text font color is #335253.
.myBgColor { background-color: #335253; }
<div style="background-color:#335253">Inner text</div>
This div background color is #335253.
.myBorderColor { border: 1px solid #335253; }
<div style="border:3px solid #335253">Div</div>
This div border color is #335253.
.myOpacity80 { color: #335253; opacity: 0.8; }
<p style="color:#335253;opacity:0.8;">80%</p>
Text with #335253 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #335253;}
<p style="text-shadow: 3px 3px 1px #335253">Text here.</p>
This text has shadow with #335253 color.
.textShadow {text-shadow: 3px 3px 1px #335253, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #335253, 5px 5px 20px red">Text here.</p>
This text has shadow with #335253 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#335253, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#335253, Direction=45, Strength=4)">Text</p>
This text has shadow with #335253 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #335253; -webkit-box-shadow: 1px 1px 3px 2px #335253; box-shadow: 1px 1px 3px 2px #335253; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #335253; -webkit-box-shadow: 1px 1px 3px 2px #335253; box-shadow:1px 1px 3px 2px #335253;">
Div content here</div>
This text has color #335253 on black background.
This text has color #335253 on white background.
This text has black color on #335253 background.
This text has white color on #335253 background.