HEX: #6481BA
RGB: (100,129,186)
#6481BA contains mainly green and blue colors. Web safe color of #6481BA is #6699CC (or #69C).
#6481BA color RGB value is (100,129,186).
RGB: (100,129,186) (39%,51%,73%)
R 100 of 255 = 39%
G 129 of 255 = 51%
B 186 of 255 = 73%
R + G + B ~ 54%. #6481BA is middle color (not dark and not light).
R + G + B =
100 + 129 + 186 = 415 (100%)
R 100 of 415 ~ 24.1%
G 129 of 415 ~ 31.08%
B 186 of 415 ~ 44.82%
#6481BA color CMYK value is (46,31,0,27).
CMYK: (46,31,0,27) C46M31Y0K27 (46%,31%,0%,27%) (0.46/0.31/0.00/0.27)
64 | 81 | BA | |
---|---|---|---|
RGB | 100 | 129 | 186 |
HSL | 220° | 38.39% | 56.08% |
HSB/HSV | 220° | 46.24% | 72.94% |
CMYK | 46.24% | 30.65% | 0.00% |
27.06% |
HEX | 64 | 81 | BA |
Decimal | 100 | 129 | 186 |
Binary | 1100100 | 10000001 | 10111010 |
Octal | 144 | 201 | 272 |
Examples of css and html codes for elements with #6481BA color. Also use rgb(100,129,186) instead hex code.
.myTextColor { color: #6481BA; }
<p style="color:#6481BA">This sample text font color is #6481BA.</p>
This text font color is #6481BA.
.myBgColor { background-color: #6481BA; }
<div style="background-color:#6481BA">Inner text</div>
This div background color is #6481BA.
.myBorderColor { border: 1px solid #6481BA; }
<div style="border:3px solid #6481BA">Div</div>
This div border color is #6481BA.
.myOpacity80 { color: #6481BA; opacity: 0.8; }
<p style="color:#6481BA;opacity:0.8;">80%</p>
Text with #6481BA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6481BA;}
<p style="text-shadow: 3px 3px 1px #6481BA">Text here.</p>
This text has shadow with #6481BA color.
.textShadow {text-shadow: 3px 3px 1px #6481BA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6481BA, 5px 5px 20px red">Text here.</p>
This text has shadow with #6481BA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6481BA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6481BA, Direction=45, Strength=4)">Text</p>
This text has shadow with #6481BA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6481BA; -webkit-box-shadow: 1px 1px 3px 2px #6481BA; box-shadow: 1px 1px 3px 2px #6481BA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6481BA; -webkit-box-shadow: 1px 1px 3px 2px #6481BA; box-shadow:1px 1px 3px 2px #6481BA;">
Div content here</div>
This text has color #6481BA on black background.
This text has color #6481BA on white background.
This text has black color on #6481BA background.
This text has white color on #6481BA background.