HEX: #7478BA
RGB: (116,120,186)
#7478BA contains mainly blue color. Web safe color of #7478BA is #6666CC (or #66C).
#7478BA color RGB value is (116,120,186).
RGB: (116,120,186) (45%,47%,73%)
R 116 of 255 = 45%
G 120 of 255 = 47%
B 186 of 255 = 73%
R + G + B ~ 55%. #7478BA is middle color (not dark and not light).
R + G + B =
116 + 120 + 186 = 422 (100%)
R 116 of 422 ~ 27.49%
G 120 of 422 ~ 28.44%
B 186 of 422 ~ 44.08%
#7478BA color CMYK value is (38,35,0,27).
CMYK: (38,35,0,27) C38M35Y0K27 (38%,35%,0%,27%) (0.38/0.35/0.00/0.27)
74 | 78 | BA | |
---|---|---|---|
RGB | 116 | 120 | 186 |
HSL | 237° | 33.65% | 59.22% |
HSB/HSV | 237° | 37.63% | 72.94% |
CMYK | 37.63% | 35.48% | 0.00% |
27.06% |
HEX | 74 | 78 | BA |
Decimal | 116 | 120 | 186 |
Binary | 1110100 | 1111000 | 10111010 |
Octal | 164 | 170 | 272 |
Examples of css and html codes for elements with #7478BA color. Also use rgb(116,120,186) instead hex code.
.myTextColor { color: #7478BA; }
<p style="color:#7478BA">This sample text font color is #7478BA.</p>
This text font color is #7478BA.
.myBgColor { background-color: #7478BA; }
<div style="background-color:#7478BA">Inner text</div>
This div background color is #7478BA.
.myBorderColor { border: 1px solid #7478BA; }
<div style="border:3px solid #7478BA">Div</div>
This div border color is #7478BA.
.myOpacity80 { color: #7478BA; opacity: 0.8; }
<p style="color:#7478BA;opacity:0.8;">80%</p>
Text with #7478BA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7478BA;}
<p style="text-shadow: 3px 3px 1px #7478BA">Text here.</p>
This text has shadow with #7478BA color.
.textShadow {text-shadow: 3px 3px 1px #7478BA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7478BA, 5px 5px 20px red">Text here.</p>
This text has shadow with #7478BA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7478BA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7478BA, Direction=45, Strength=4)">Text</p>
This text has shadow with #7478BA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7478BA; -webkit-box-shadow: 1px 1px 3px 2px #7478BA; box-shadow: 1px 1px 3px 2px #7478BA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7478BA; -webkit-box-shadow: 1px 1px 3px 2px #7478BA; box-shadow:1px 1px 3px 2px #7478BA;">
Div content here</div>
This text has color #7478BA on black background.
This text has color #7478BA on white background.
This text has black color on #7478BA background.
This text has white color on #7478BA background.