HEX: #6495ED
RGB: (100,149,237)
Color name is CornflowerBlue. #6495ED contains mainly blue color. Web safe color of #6495ED is #6699FF (or #69F).
#6495ED color RGB value is (100,149,237).
RGB: (100,149,237) (39%,58%,93%)
R 100 of 255 = 39%
G 149 of 255 = 58%
B 237 of 255 = 93%
R + G + B ~ 63%. #6495ED is quite light color.
R + G + B =
100 + 149 + 237 = 486 (100%)
R 100 of 486 ~ 20.58%
G 149 of 486 ~ 30.66%
B 237 of 486 ~ 48.77%
#6495ED color CMYK value is (58,37,0,7).
CMYK: (58,37,0,7) C58M37Y0K7 (58%,37%,0%,7%) (0.58/0.37/0.00/0.07)
64 | 95 | ED | |
---|---|---|---|
RGB | 100 | 149 | 237 |
HSL | 219° | 79.19% | 66.08% |
HSB/HSV | 219° | 57.81% | 92.94% |
CMYK | 57.81% | 37.13% | 0.00% |
7.06% |
HEX | 64 | 95 | ED |
Decimal | 100 | 149 | 237 |
Binary | 1100100 | 10010101 | 11101101 |
Octal | 144 | 225 | 355 |
Examples of css and html codes for elements with #6495ED color. Also use rgb(100,149,237) instead hex code.
.myTextColor { color: #6495ED; }
<p style="color:#6495ED">This sample text font color is #6495ED.</p>
This text font color is #6495ED.
.myBgColor { background-color: #6495ED; }
<div style="background-color:#6495ED">Inner text</div>
This div background color is #6495ED.
.myBorderColor { border: 1px solid #6495ED; }
<div style="border:3px solid #6495ED">Div</div>
This div border color is #6495ED.
.myOpacity80 { color: #6495ED; opacity: 0.8; }
<p style="color:#6495ED;opacity:0.8;">80%</p>
Text with #6495ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6495ED;}
<p style="text-shadow: 3px 3px 1px #6495ED">Text here.</p>
This text has shadow with #6495ED color.
.textShadow {text-shadow: 3px 3px 1px #6495ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6495ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #6495ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6495ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6495ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #6495ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6495ED; -webkit-box-shadow: 1px 1px 3px 2px #6495ED; box-shadow: 1px 1px 3px 2px #6495ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6495ED; -webkit-box-shadow: 1px 1px 3px 2px #6495ED; box-shadow:1px 1px 3px 2px #6495ED;">
Div content here</div>
This text has color #6495ED on black background.
This text has color #6495ED on white background.
This text has black color on #6495ED background.
This text has white color on #6495ED background.