HEX: #577CD1
RGB: (87,124,209)
#577CD1 contains mainly blue color. Web safe color of #577CD1 is #6666CC (or #66C).
#577CD1 color RGB value is (87,124,209).
RGB: (87,124,209) (34%,49%,82%)
R 87 of 255 = 34%
G 124 of 255 = 49%
B 209 of 255 = 82%
R + G + B ~ 55%. #577CD1 is middle color (not dark and not light).
R + G + B =
87 + 124 + 209 = 420 (100%)
R 87 of 420 ~ 20.71%
G 124 of 420 ~ 29.52%
B 209 of 420 ~ 49.76%
#577CD1 color CMYK value is (58,41,0,18).
CMYK: (58,41,0,18) C58M41Y0K18 (58%,41%,0%,18%) (0.58/0.41/0.00/0.18)
57 | 7C | D1 | |
---|---|---|---|
RGB | 87 | 124 | 209 |
HSL | 222° | 57.01% | 58.04% |
HSB/HSV | 222° | 58.37% | 81.96% |
CMYK | 58.37% | 40.67% | 0.00% |
18.04% |
HEX | 57 | 7C | D1 |
Decimal | 87 | 124 | 209 |
Binary | 1010111 | 1111100 | 11010001 |
Octal | 127 | 174 | 321 |
Examples of css and html codes for elements with #577CD1 color. Also use rgb(87,124,209) instead hex code.
.myTextColor { color: #577CD1; }
<p style="color:#577CD1">This sample text font color is #577CD1.</p>
This text font color is #577CD1.
.myBgColor { background-color: #577CD1; }
<div style="background-color:#577CD1">Inner text</div>
This div background color is #577CD1.
.myBorderColor { border: 1px solid #577CD1; }
<div style="border:3px solid #577CD1">Div</div>
This div border color is #577CD1.
.myOpacity80 { color: #577CD1; opacity: 0.8; }
<p style="color:#577CD1;opacity:0.8;">80%</p>
Text with #577CD1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #577CD1;}
<p style="text-shadow: 3px 3px 1px #577CD1">Text here.</p>
This text has shadow with #577CD1 color.
.textShadow {text-shadow: 3px 3px 1px #577CD1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #577CD1, 5px 5px 20px red">Text here.</p>
This text has shadow with #577CD1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#577CD1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#577CD1, Direction=45, Strength=4)">Text</p>
This text has shadow with #577CD1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #577CD1; -webkit-box-shadow: 1px 1px 3px 2px #577CD1; box-shadow: 1px 1px 3px 2px #577CD1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #577CD1; -webkit-box-shadow: 1px 1px 3px 2px #577CD1; box-shadow:1px 1px 3px 2px #577CD1;">
Div content here</div>
This text has color #577CD1 on black background.
This text has color #577CD1 on white background.
This text has black color on #577CD1 background.
This text has white color on #577CD1 background.