HEX: #558DD6
RGB: (85,141,214)
#558DD6 contains mainly blue color. Web safe color of #558DD6 is #6699CC (or #69C).
#558DD6 color RGB value is (85,141,214).
RGB: (85,141,214) (33%,55%,84%)
R 85 of 255 = 33%
G 141 of 255 = 55%
B 214 of 255 = 84%
R + G + B ~ 57%. #558DD6 is middle color (not dark and not light).
R + G + B =
85 + 141 + 214 = 440 (100%)
R 85 of 440 ~ 19.32%
G 141 of 440 ~ 32.05%
B 214 of 440 ~ 48.64%
#558DD6 color CMYK value is (60,34,0,16).
CMYK: (60,34,0,16) C60M34Y0K16 (60%,34%,0%,16%) (0.60/0.34/0.00/0.16)
55 | 8D | D6 | |
---|---|---|---|
RGB | 85 | 141 | 214 |
HSL | 214° | 61.14% | 58.63% |
HSB/HSV | 214° | 60.28% | 83.92% |
CMYK | 60.28% | 34.11% | 0.00% |
16.08% |
HEX | 55 | 8D | D6 |
Decimal | 85 | 141 | 214 |
Binary | 1010101 | 10001101 | 11010110 |
Octal | 125 | 215 | 326 |
Examples of css and html codes for elements with #558DD6 color. Also use rgb(85,141,214) instead hex code.
.myTextColor { color: #558DD6; }
<p style="color:#558DD6">This sample text font color is #558DD6.</p>
This text font color is #558DD6.
.myBgColor { background-color: #558DD6; }
<div style="background-color:#558DD6">Inner text</div>
This div background color is #558DD6.
.myBorderColor { border: 1px solid #558DD6; }
<div style="border:3px solid #558DD6">Div</div>
This div border color is #558DD6.
.myOpacity80 { color: #558DD6; opacity: 0.8; }
<p style="color:#558DD6;opacity:0.8;">80%</p>
Text with #558DD6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #558DD6;}
<p style="text-shadow: 3px 3px 1px #558DD6">Text here.</p>
This text has shadow with #558DD6 color.
.textShadow {text-shadow: 3px 3px 1px #558DD6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #558DD6, 5px 5px 20px red">Text here.</p>
This text has shadow with #558DD6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#558DD6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#558DD6, Direction=45, Strength=4)">Text</p>
This text has shadow with #558DD6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #558DD6; -webkit-box-shadow: 1px 1px 3px 2px #558DD6; box-shadow: 1px 1px 3px 2px #558DD6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #558DD6; -webkit-box-shadow: 1px 1px 3px 2px #558DD6; box-shadow:1px 1px 3px 2px #558DD6;">
Div content here</div>
This text has color #558DD6 on black background.
This text has color #558DD6 on white background.
This text has black color on #558DD6 background.
This text has white color on #558DD6 background.