HEX: #476AED
RGB: (71,106,237)
#476AED contains mainly blue color. Web safe color of #476AED is #3366FF (or #36F).
#476AED color RGB value is (71,106,237).
RGB: (71,106,237) (28%,42%,93%)
R 71 of 255 = 28%
G 106 of 255 = 42%
B 237 of 255 = 93%
R + G + B ~ 54%. #476AED is middle color (not dark and not light).
R + G + B =
71 + 106 + 237 = 414 (100%)
R 71 of 414 ~ 17.15%
G 106 of 414 ~ 25.6%
B 237 of 414 ~ 57.25%
#476AED color CMYK value is (70,55,0,7).
CMYK: (70,55,0,7) C70M55Y0K7 (70%,55%,0%,7%) (0.70/0.55/0.00/0.07)
47 | 6A | ED | |
---|---|---|---|
RGB | 71 | 106 | 237 |
HSL | 227° | 82.18% | 60.39% |
HSB/HSV | 227° | 70.04% | 92.94% |
CMYK | 70.04% | 55.27% | 0.00% |
7.06% |
HEX | 47 | 6A | ED |
Decimal | 71 | 106 | 237 |
Binary | 1000111 | 1101010 | 11101101 |
Octal | 107 | 152 | 355 |
Examples of css and html codes for elements with #476AED color. Also use rgb(71,106,237) instead hex code.
.myTextColor { color: #476AED; }
<p style="color:#476AED">This sample text font color is #476AED.</p>
This text font color is #476AED.
.myBgColor { background-color: #476AED; }
<div style="background-color:#476AED">Inner text</div>
This div background color is #476AED.
.myBorderColor { border: 1px solid #476AED; }
<div style="border:3px solid #476AED">Div</div>
This div border color is #476AED.
.myOpacity80 { color: #476AED; opacity: 0.8; }
<p style="color:#476AED;opacity:0.8;">80%</p>
Text with #476AED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #476AED;}
<p style="text-shadow: 3px 3px 1px #476AED">Text here.</p>
This text has shadow with #476AED color.
.textShadow {text-shadow: 3px 3px 1px #476AED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #476AED, 5px 5px 20px red">Text here.</p>
This text has shadow with #476AED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#476AED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#476AED, Direction=45, Strength=4)">Text</p>
This text has shadow with #476AED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #476AED; -webkit-box-shadow: 1px 1px 3px 2px #476AED; box-shadow: 1px 1px 3px 2px #476AED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #476AED; -webkit-box-shadow: 1px 1px 3px 2px #476AED; box-shadow:1px 1px 3px 2px #476AED;">
Div content here</div>
This text has color #476AED on black background.
This text has color #476AED on white background.
This text has black color on #476AED background.
This text has white color on #476AED background.