HEX: #59A2DA
RGB: (89,162,218)
#59A2DA contains mainly green and blue colors. Web safe color of #59A2DA is #6699CC (or #69C).
#59A2DA color RGB value is (89,162,218).
RGB: (89,162,218) (35%,64%,85%)
R 89 of 255 = 35%
G 162 of 255 = 64%
B 218 of 255 = 85%
R + G + B ~ 61%. #59A2DA is quite light color.
R + G + B =
89 + 162 + 218 = 469 (100%)
R 89 of 469 ~ 18.98%
G 162 of 469 ~ 34.54%
B 218 of 469 ~ 46.48%
#59A2DA color CMYK value is (59,26,0,15).
CMYK: (59,26,0,15) C59M26Y0K15 (59%,26%,0%,15%) (0.59/0.26/0.00/0.15)
59 | A2 | DA | |
---|---|---|---|
RGB | 89 | 162 | 218 |
HSL | 206° | 63.55% | 60.20% |
HSB/HSV | 206° | 59.17% | 85.49% |
CMYK | 59.17% | 25.69% | 0.00% |
14.51% |
HEX | 59 | A2 | DA |
Decimal | 89 | 162 | 218 |
Binary | 1011001 | 10100010 | 11011010 |
Octal | 131 | 242 | 332 |
Examples of css and html codes for elements with #59A2DA color. Also use rgb(89,162,218) instead hex code.
.myTextColor { color: #59A2DA; }
<p style="color:#59A2DA">This sample text font color is #59A2DA.</p>
This text font color is #59A2DA.
.myBgColor { background-color: #59A2DA; }
<div style="background-color:#59A2DA">Inner text</div>
This div background color is #59A2DA.
.myBorderColor { border: 1px solid #59A2DA; }
<div style="border:3px solid #59A2DA">Div</div>
This div border color is #59A2DA.
.myOpacity80 { color: #59A2DA; opacity: 0.8; }
<p style="color:#59A2DA;opacity:0.8;">80%</p>
Text with #59A2DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #59A2DA;}
<p style="text-shadow: 3px 3px 1px #59A2DA">Text here.</p>
This text has shadow with #59A2DA color.
.textShadow {text-shadow: 3px 3px 1px #59A2DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #59A2DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #59A2DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#59A2DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#59A2DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #59A2DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #59A2DA; -webkit-box-shadow: 1px 1px 3px 2px #59A2DA; box-shadow: 1px 1px 3px 2px #59A2DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #59A2DA; -webkit-box-shadow: 1px 1px 3px 2px #59A2DA; box-shadow:1px 1px 3px 2px #59A2DA;">
Div content here</div>
This text has color #59A2DA on black background.
This text has color #59A2DA on white background.
This text has black color on #59A2DA background.
This text has white color on #59A2DA background.