HEX: #589AD4
RGB: (88,154,212)
#589AD4 contains mainly green and blue colors. Web safe color of #589AD4 is #6699CC (or #69C).
#589AD4 color RGB value is (88,154,212).
RGB: (88,154,212) (35%,60%,83%)
R 88 of 255 = 35%
G 154 of 255 = 60%
B 212 of 255 = 83%
R + G + B ~ 59%. #589AD4 is middle color (not dark and not light).
R + G + B =
88 + 154 + 212 = 454 (100%)
R 88 of 454 ~ 19.38%
G 154 of 454 ~ 33.92%
B 212 of 454 ~ 46.7%
#589AD4 color CMYK value is (58,27,0,17).
CMYK: (58,27,0,17) C58M27Y0K17 (58%,27%,0%,17%) (0.58/0.27/0.00/0.17)
58 | 9A | D4 | |
---|---|---|---|
RGB | 88 | 154 | 212 |
HSL | 208° | 59.05% | 58.82% |
HSB/HSV | 208° | 58.49% | 83.14% |
CMYK | 58.49% | 27.36% | 0.00% |
16.86% |
HEX | 58 | 9A | D4 |
Decimal | 88 | 154 | 212 |
Binary | 1011000 | 10011010 | 11010100 |
Octal | 130 | 232 | 324 |
Examples of css and html codes for elements with #589AD4 color. Also use rgb(88,154,212) instead hex code.
.myTextColor { color: #589AD4; }
<p style="color:#589AD4">This sample text font color is #589AD4.</p>
This text font color is #589AD4.
.myBgColor { background-color: #589AD4; }
<div style="background-color:#589AD4">Inner text</div>
This div background color is #589AD4.
.myBorderColor { border: 1px solid #589AD4; }
<div style="border:3px solid #589AD4">Div</div>
This div border color is #589AD4.
.myOpacity80 { color: #589AD4; opacity: 0.8; }
<p style="color:#589AD4;opacity:0.8;">80%</p>
Text with #589AD4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #589AD4;}
<p style="text-shadow: 3px 3px 1px #589AD4">Text here.</p>
This text has shadow with #589AD4 color.
.textShadow {text-shadow: 3px 3px 1px #589AD4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #589AD4, 5px 5px 20px red">Text here.</p>
This text has shadow with #589AD4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#589AD4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#589AD4, Direction=45, Strength=4)">Text</p>
This text has shadow with #589AD4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #589AD4; -webkit-box-shadow: 1px 1px 3px 2px #589AD4; box-shadow: 1px 1px 3px 2px #589AD4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #589AD4; -webkit-box-shadow: 1px 1px 3px 2px #589AD4; box-shadow:1px 1px 3px 2px #589AD4;">
Div content here</div>
This text has color #589AD4 on black background.
This text has color #589AD4 on white background.
This text has black color on #589AD4 background.
This text has white color on #589AD4 background.