HEX: #747BBC
RGB: (116,123,188)
#747BBC contains mainly blue color. Web safe color of #747BBC is #6666CC (or #66C).
#747BBC color RGB value is (116,123,188).
RGB: (116,123,188) (45%,48%,74%)
R 116 of 255 = 45%
G 123 of 255 = 48%
B 188 of 255 = 74%
R + G + B ~ 56%. #747BBC is middle color (not dark and not light).
R + G + B =
116 + 123 + 188 = 427 (100%)
R 116 of 427 ~ 27.17%
G 123 of 427 ~ 28.81%
B 188 of 427 ~ 44.03%
#747BBC color CMYK value is (38,35,0,26).
CMYK: (38,35,0,26) C38M35Y0K26 (38%,35%,0%,26%) (0.38/0.35/0.00/0.26)
74 | 7B | BC | |
---|---|---|---|
RGB | 116 | 123 | 188 |
HSL | 234° | 34.95% | 59.61% |
HSB/HSV | 234° | 38.30% | 73.73% |
CMYK | 38.30% | 34.57% | 0.00% |
26.27% |
HEX | 74 | 7B | BC |
Decimal | 116 | 123 | 188 |
Binary | 1110100 | 1111011 | 10111100 |
Octal | 164 | 173 | 274 |
Examples of css and html codes for elements with #747BBC color. Also use rgb(116,123,188) instead hex code.
.myTextColor { color: #747BBC; }
<p style="color:#747BBC">This sample text font color is #747BBC.</p>
This text font color is #747BBC.
.myBgColor { background-color: #747BBC; }
<div style="background-color:#747BBC">Inner text</div>
This div background color is #747BBC.
.myBorderColor { border: 1px solid #747BBC; }
<div style="border:3px solid #747BBC">Div</div>
This div border color is #747BBC.
.myOpacity80 { color: #747BBC; opacity: 0.8; }
<p style="color:#747BBC;opacity:0.8;">80%</p>
Text with #747BBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #747BBC;}
<p style="text-shadow: 3px 3px 1px #747BBC">Text here.</p>
This text has shadow with #747BBC color.
.textShadow {text-shadow: 3px 3px 1px #747BBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #747BBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #747BBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#747BBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#747BBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #747BBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #747BBC; -webkit-box-shadow: 1px 1px 3px 2px #747BBC; box-shadow: 1px 1px 3px 2px #747BBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #747BBC; -webkit-box-shadow: 1px 1px 3px 2px #747BBC; box-shadow:1px 1px 3px 2px #747BBC;">
Div content here</div>
This text has color #747BBC on black background.
This text has color #747BBC on white background.
This text has black color on #747BBC background.
This text has white color on #747BBC background.