HEX: #746FB0
RGB: (116,111,176)
#746FB0 contains mainly blue color. Web safe color of #746FB0 is #666699 (or #669).
#746FB0 color RGB value is (116,111,176).
RGB: (116,111,176) (45%,44%,69%)
R 116 of 255 = 45%
G 111 of 255 = 44%
B 176 of 255 = 69%
R + G + B ~ 53%. #746FB0 is middle color (not dark and not light).
R + G + B =
116 + 111 + 176 = 403 (100%)
R 116 of 403 ~ 28.78%
G 111 of 403 ~ 27.54%
B 176 of 403 ~ 43.67%
#746FB0 color CMYK value is (34,37,0,31).
CMYK: (34,37,0,31) C34M37Y0K31 (34%,37%,0%,31%) (0.34/0.37/0.00/0.31)
74 | 6F | B0 | |
---|---|---|---|
RGB | 116 | 111 | 176 |
HSL | 245° | 29.15% | 56.27% |
HSB/HSV | 245° | 36.93% | 69.02% |
CMYK | 34.09% | 36.93% | 0.00% |
30.98% |
HEX | 74 | 6F | B0 |
Decimal | 116 | 111 | 176 |
Binary | 1110100 | 1101111 | 10110000 |
Octal | 164 | 157 | 260 |
Examples of css and html codes for elements with #746FB0 color. Also use rgb(116,111,176) instead hex code.
.myTextColor { color: #746FB0; }
<p style="color:#746FB0">This sample text font color is #746FB0.</p>
This text font color is #746FB0.
.myBgColor { background-color: #746FB0; }
<div style="background-color:#746FB0">Inner text</div>
This div background color is #746FB0.
.myBorderColor { border: 1px solid #746FB0; }
<div style="border:3px solid #746FB0">Div</div>
This div border color is #746FB0.
.myOpacity80 { color: #746FB0; opacity: 0.8; }
<p style="color:#746FB0;opacity:0.8;">80%</p>
Text with #746FB0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #746FB0;}
<p style="text-shadow: 3px 3px 1px #746FB0">Text here.</p>
This text has shadow with #746FB0 color.
.textShadow {text-shadow: 3px 3px 1px #746FB0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #746FB0, 5px 5px 20px red">Text here.</p>
This text has shadow with #746FB0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#746FB0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#746FB0, Direction=45, Strength=4)">Text</p>
This text has shadow with #746FB0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #746FB0; -webkit-box-shadow: 1px 1px 3px 2px #746FB0; box-shadow: 1px 1px 3px 2px #746FB0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #746FB0; -webkit-box-shadow: 1px 1px 3px 2px #746FB0; box-shadow:1px 1px 3px 2px #746FB0;">
Div content here</div>
This text has color #746FB0 on black background.
This text has color #746FB0 on white background.
This text has black color on #746FB0 background.
This text has white color on #746FB0 background.