HEX: #6588DF
RGB: (101,136,223)
#6588DF contains mainly blue color. Web safe color of #6588DF is #6699CC (or #69C).
#6588DF color RGB value is (101,136,223).
RGB: (101,136,223) (40%,53%,87%)
R 101 of 255 = 40%
G 136 of 255 = 53%
B 223 of 255 = 87%
R + G + B ~ 60%. #6588DF is middle color (not dark and not light).
R + G + B =
101 + 136 + 223 = 460 (100%)
R 101 of 460 ~ 21.96%
G 136 of 460 ~ 29.57%
B 223 of 460 ~ 48.48%
#6588DF color CMYK value is (55,39,0,13).
CMYK: (55,39,0,13) C55M39Y0K13 (55%,39%,0%,13%) (0.55/0.39/0.00/0.13)
65 | 88 | DF | |
---|---|---|---|
RGB | 101 | 136 | 223 |
HSL | 223° | 65.59% | 63.53% |
HSB/HSV | 223° | 54.71% | 87.45% |
CMYK | 54.71% | 39.01% | 0.00% |
12.55% |
HEX | 65 | 88 | DF |
Decimal | 101 | 136 | 223 |
Binary | 1100101 | 10001000 | 11011111 |
Octal | 145 | 210 | 337 |
Examples of css and html codes for elements with #6588DF color. Also use rgb(101,136,223) instead hex code.
.myTextColor { color: #6588DF; }
<p style="color:#6588DF">This sample text font color is #6588DF.</p>
This text font color is #6588DF.
.myBgColor { background-color: #6588DF; }
<div style="background-color:#6588DF">Inner text</div>
This div background color is #6588DF.
.myBorderColor { border: 1px solid #6588DF; }
<div style="border:3px solid #6588DF">Div</div>
This div border color is #6588DF.
.myOpacity80 { color: #6588DF; opacity: 0.8; }
<p style="color:#6588DF;opacity:0.8;">80%</p>
Text with #6588DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6588DF;}
<p style="text-shadow: 3px 3px 1px #6588DF">Text here.</p>
This text has shadow with #6588DF color.
.textShadow {text-shadow: 3px 3px 1px #6588DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6588DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #6588DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6588DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6588DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #6588DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6588DF; -webkit-box-shadow: 1px 1px 3px 2px #6588DF; box-shadow: 1px 1px 3px 2px #6588DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6588DF; -webkit-box-shadow: 1px 1px 3px 2px #6588DF; box-shadow:1px 1px 3px 2px #6588DF;">
Div content here</div>
This text has color #6588DF on black background.
This text has color #6588DF on white background.
This text has black color on #6588DF background.
This text has white color on #6588DF background.