HEX: #555266
RGB: (85,82,102)
#555266 contains red, green and blue colors in about the same proportion. Web safe color of #555266 is #666666 (or #666).
#555266 color RGB value is (85,82,102).
RGB: (85,82,102) (33%,32%,40%)
R 85 of 255 = 33%
G 82 of 255 = 32%
B 102 of 255 = 40%
R + G + B ~ 35%. #555266 is quite dark color.
R + G + B =
85 + 82 + 102 = 269 (100%)
R 85 of 269 ~ 31.6%
G 82 of 269 ~ 30.48%
B 102 of 269 ~ 37.92%
#555266 color CMYK value is (17,20,0,60).
CMYK: (17,20,0,60) C17M20Y0K60 (17%,20%,0%,60%) (0.17/0.20/0.00/0.60)
55 | 52 | 66 | |
---|---|---|---|
RGB | 85 | 82 | 102 |
HSL | 249° | 10.87% | 36.08% |
HSB/HSV | 249° | 19.61% | 40.00% |
CMYK | 16.67% | 19.61% | 0.00% |
60.00% |
HEX | 55 | 52 | 66 |
Decimal | 85 | 82 | 102 |
Binary | 1010101 | 1010010 | 1100110 |
Octal | 125 | 122 | 146 |
Examples of css and html codes for elements with #555266 color. Also use rgb(85,82,102) instead hex code.
.myTextColor { color: #555266; }
<p style="color:#555266">This sample text font color is #555266.</p>
This text font color is #555266.
.myBgColor { background-color: #555266; }
<div style="background-color:#555266">Inner text</div>
This div background color is #555266.
.myBorderColor { border: 1px solid #555266; }
<div style="border:3px solid #555266">Div</div>
This div border color is #555266.
.myOpacity80 { color: #555266; opacity: 0.8; }
<p style="color:#555266;opacity:0.8;">80%</p>
Text with #555266 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #555266;}
<p style="text-shadow: 3px 3px 1px #555266">Text here.</p>
This text has shadow with #555266 color.
.textShadow {text-shadow: 3px 3px 1px #555266, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #555266, 5px 5px 20px red">Text here.</p>
This text has shadow with #555266 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#555266, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#555266, Direction=45, Strength=4)">Text</p>
This text has shadow with #555266 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #555266; -webkit-box-shadow: 1px 1px 3px 2px #555266; box-shadow: 1px 1px 3px 2px #555266; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #555266; -webkit-box-shadow: 1px 1px 3px 2px #555266; box-shadow:1px 1px 3px 2px #555266;">
Div content here</div>
This text has color #555266 on black background.
This text has color #555266 on white background.
This text has black color on #555266 background.
This text has white color on #555266 background.