HEX: #7470D6
RGB: (116,112,214)
#7470D6 contains mainly blue color. Web safe color of #7470D6 is #6666CC (or #66C).
#7470D6 color RGB value is (116,112,214).
RGB: (116,112,214) (45%,44%,84%)
R 116 of 255 = 45%
G 112 of 255 = 44%
B 214 of 255 = 84%
R + G + B ~ 58%. #7470D6 is middle color (not dark and not light).
R + G + B =
116 + 112 + 214 = 442 (100%)
R 116 of 442 ~ 26.24%
G 112 of 442 ~ 25.34%
B 214 of 442 ~ 48.42%
#7470D6 color CMYK value is (46,48,0,16).
CMYK: (46,48,0,16) C46M48Y0K16 (46%,48%,0%,16%) (0.46/0.48/0.00/0.16)
74 | 70 | D6 | |
---|---|---|---|
RGB | 116 | 112 | 214 |
HSL | 242° | 55.43% | 63.92% |
HSB/HSV | 242° | 47.66% | 83.92% |
CMYK | 45.79% | 47.66% | 0.00% |
16.08% |
HEX | 74 | 70 | D6 |
Decimal | 116 | 112 | 214 |
Binary | 1110100 | 1110000 | 11010110 |
Octal | 164 | 160 | 326 |
Examples of css and html codes for elements with #7470D6 color. Also use rgb(116,112,214) instead hex code.
.myTextColor { color: #7470D6; }
<p style="color:#7470D6">This sample text font color is #7470D6.</p>
This text font color is #7470D6.
.myBgColor { background-color: #7470D6; }
<div style="background-color:#7470D6">Inner text</div>
This div background color is #7470D6.
.myBorderColor { border: 1px solid #7470D6; }
<div style="border:3px solid #7470D6">Div</div>
This div border color is #7470D6.
.myOpacity80 { color: #7470D6; opacity: 0.8; }
<p style="color:#7470D6;opacity:0.8;">80%</p>
Text with #7470D6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7470D6;}
<p style="text-shadow: 3px 3px 1px #7470D6">Text here.</p>
This text has shadow with #7470D6 color.
.textShadow {text-shadow: 3px 3px 1px #7470D6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7470D6, 5px 5px 20px red">Text here.</p>
This text has shadow with #7470D6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7470D6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7470D6, Direction=45, Strength=4)">Text</p>
This text has shadow with #7470D6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7470D6; -webkit-box-shadow: 1px 1px 3px 2px #7470D6; box-shadow: 1px 1px 3px 2px #7470D6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7470D6; -webkit-box-shadow: 1px 1px 3px 2px #7470D6; box-shadow:1px 1px 3px 2px #7470D6;">
Div content here</div>
This text has color #7470D6 on black background.
This text has color #7470D6 on white background.
This text has black color on #7470D6 background.
This text has white color on #7470D6 background.