HEX: #5C5599
RGB: (92,85,153)
#5C5599 contains mainly blue color. Web safe color of #5C5599 is #666699 (or #669).
#5C5599 color RGB value is (92,85,153).
RGB: (92,85,153) (36%,33%,60%)
R 92 of 255 = 36%
G 85 of 255 = 33%
B 153 of 255 = 60%
R + G + B ~ 43%. #5C5599 is middle color (not dark and not light).
R + G + B =
92 + 85 + 153 = 330 (100%)
R 92 of 330 ~ 27.88%
G 85 of 330 ~ 25.76%
B 153 of 330 ~ 46.36%
#5C5599 color CMYK value is (40,44,0,40).
CMYK: (40,44,0,40) C40M44Y0K40 (40%,44%,0%,40%) (0.40/0.44/0.00/0.40)
5C | 55 | 99 | |
---|---|---|---|
RGB | 92 | 85 | 153 |
HSL | 246° | 28.57% | 46.67% |
HSB/HSV | 246° | 44.44% | 60.00% |
CMYK | 39.87% | 44.44% | 0.00% |
40.00% |
HEX | 5C | 55 | 99 |
Decimal | 92 | 85 | 153 |
Binary | 1011100 | 1010101 | 10011001 |
Octal | 134 | 125 | 231 |
Examples of css and html codes for elements with #5C5599 color. Also use rgb(92,85,153) instead hex code.
.myTextColor { color: #5C5599; }
<p style="color:#5C5599">This sample text font color is #5C5599.</p>
This text font color is #5C5599.
.myBgColor { background-color: #5C5599; }
<div style="background-color:#5C5599">Inner text</div>
This div background color is #5C5599.
.myBorderColor { border: 1px solid #5C5599; }
<div style="border:3px solid #5C5599">Div</div>
This div border color is #5C5599.
.myOpacity80 { color: #5C5599; opacity: 0.8; }
<p style="color:#5C5599;opacity:0.8;">80%</p>
Text with #5C5599 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #5C5599;}
<p style="text-shadow: 3px 3px 1px #5C5599">Text here.</p>
This text has shadow with #5C5599 color.
.textShadow {text-shadow: 3px 3px 1px #5C5599, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #5C5599, 5px 5px 20px red">Text here.</p>
This text has shadow with #5C5599 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#5C5599, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#5C5599, Direction=45, Strength=4)">Text</p>
This text has shadow with #5C5599 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #5C5599; -webkit-box-shadow: 1px 1px 3px 2px #5C5599; box-shadow: 1px 1px 3px 2px #5C5599; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #5C5599; -webkit-box-shadow: 1px 1px 3px 2px #5C5599; box-shadow:1px 1px 3px 2px #5C5599;">
Div content here</div>
This text has color #5C5599 on black background.
This text has color #5C5599 on white background.
This text has black color on #5C5599 background.
This text has white color on #5C5599 background.