HEX: #588DDE
RGB: (88,141,222)
#588DDE contains mainly blue color. Web safe color of #588DDE is #6699CC (or #69C).
#588DDE color RGB value is (88,141,222).
RGB: (88,141,222) (35%,55%,87%)
R 88 of 255 = 35%
G 141 of 255 = 55%
B 222 of 255 = 87%
R + G + B ~ 59%. #588DDE is middle color (not dark and not light).
R + G + B =
88 + 141 + 222 = 451 (100%)
R 88 of 451 ~ 19.51%
G 141 of 451 ~ 31.26%
B 222 of 451 ~ 49.22%
#588DDE color CMYK value is (60,36,0,13).
CMYK: (60,36,0,13) C60M36Y0K13 (60%,36%,0%,13%) (0.60/0.36/0.00/0.13)
58 | 8D | DE | |
---|---|---|---|
RGB | 88 | 141 | 222 |
HSL | 216° | 67.00% | 60.78% |
HSB/HSV | 216° | 60.36% | 87.06% |
CMYK | 60.36% | 36.49% | 0.00% |
12.94% |
HEX | 58 | 8D | DE |
Decimal | 88 | 141 | 222 |
Binary | 1011000 | 10001101 | 11011110 |
Octal | 130 | 215 | 336 |
Examples of css and html codes for elements with #588DDE color. Also use rgb(88,141,222) instead hex code.
.myTextColor { color: #588DDE; }
<p style="color:#588DDE">This sample text font color is #588DDE.</p>
This text font color is #588DDE.
.myBgColor { background-color: #588DDE; }
<div style="background-color:#588DDE">Inner text</div>
This div background color is #588DDE.
.myBorderColor { border: 1px solid #588DDE; }
<div style="border:3px solid #588DDE">Div</div>
This div border color is #588DDE.
.myOpacity80 { color: #588DDE; opacity: 0.8; }
<p style="color:#588DDE;opacity:0.8;">80%</p>
Text with #588DDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #588DDE;}
<p style="text-shadow: 3px 3px 1px #588DDE">Text here.</p>
This text has shadow with #588DDE color.
.textShadow {text-shadow: 3px 3px 1px #588DDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #588DDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #588DDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#588DDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#588DDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #588DDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #588DDE; -webkit-box-shadow: 1px 1px 3px 2px #588DDE; box-shadow: 1px 1px 3px 2px #588DDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #588DDE; -webkit-box-shadow: 1px 1px 3px 2px #588DDE; box-shadow:1px 1px 3px 2px #588DDE;">
Div content here</div>
This text has color #588DDE on black background.
This text has color #588DDE on white background.
This text has black color on #588DDE background.
This text has white color on #588DDE background.