HEX: #6DA4DF
RGB: (109,164,223)
#6DA4DF contains mainly green and blue colors. Web safe color of #6DA4DF is #6699CC (or #69C).
#6DA4DF color RGB value is (109,164,223).
RGB: (109,164,223) (43%,64%,87%)
R 109 of 255 = 43%
G 164 of 255 = 64%
B 223 of 255 = 87%
R + G + B ~ 65%. #6DA4DF is quite light color.
R + G + B =
109 + 164 + 223 = 496 (100%)
R 109 of 496 ~ 21.98%
G 164 of 496 ~ 33.06%
B 223 of 496 ~ 44.96%
#6DA4DF color CMYK value is (51,26,0,13).
CMYK: (51,26,0,13) C51M26Y0K13 (51%,26%,0%,13%) (0.51/0.26/0.00/0.13)
6D | A4 | DF | |
---|---|---|---|
RGB | 109 | 164 | 223 |
HSL | 211° | 64.04% | 65.10% |
HSB/HSV | 211° | 51.12% | 87.45% |
CMYK | 51.12% | 26.46% | 0.00% |
12.55% |
HEX | 6D | A4 | DF |
Decimal | 109 | 164 | 223 |
Binary | 1101101 | 10100100 | 11011111 |
Octal | 155 | 244 | 337 |
Examples of css and html codes for elements with #6DA4DF color. Also use rgb(109,164,223) instead hex code.
.myTextColor { color: #6DA4DF; }
<p style="color:#6DA4DF">This sample text font color is #6DA4DF.</p>
This text font color is #6DA4DF.
.myBgColor { background-color: #6DA4DF; }
<div style="background-color:#6DA4DF">Inner text</div>
This div background color is #6DA4DF.
.myBorderColor { border: 1px solid #6DA4DF; }
<div style="border:3px solid #6DA4DF">Div</div>
This div border color is #6DA4DF.
.myOpacity80 { color: #6DA4DF; opacity: 0.8; }
<p style="color:#6DA4DF;opacity:0.8;">80%</p>
Text with #6DA4DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6DA4DF;}
<p style="text-shadow: 3px 3px 1px #6DA4DF">Text here.</p>
This text has shadow with #6DA4DF color.
.textShadow {text-shadow: 3px 3px 1px #6DA4DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6DA4DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #6DA4DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6DA4DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6DA4DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #6DA4DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6DA4DF; -webkit-box-shadow: 1px 1px 3px 2px #6DA4DF; box-shadow: 1px 1px 3px 2px #6DA4DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6DA4DF; -webkit-box-shadow: 1px 1px 3px 2px #6DA4DF; box-shadow:1px 1px 3px 2px #6DA4DF;">
Div content here</div>
This text has color #6DA4DF on black background.
This text has color #6DA4DF on white background.
This text has black color on #6DA4DF background.
This text has white color on #6DA4DF background.