HEX: #746DAD
RGB: (116,109,173)
#746DAD contains mainly red and blue colors. Web safe color of #746DAD is #666699 (or #669).
#746DAD color RGB value is (116,109,173).
RGB: (116,109,173) (45%,43%,68%)
R 116 of 255 = 45%
G 109 of 255 = 43%
B 173 of 255 = 68%
R + G + B ~ 52%. #746DAD is middle color (not dark and not light).
R + G + B =
116 + 109 + 173 = 398 (100%)
R 116 of 398 ~ 29.15%
G 109 of 398 ~ 27.39%
B 173 of 398 ~ 43.47%
#746DAD color CMYK value is (33,37,0,32).
CMYK: (33,37,0,32) C33M37Y0K32 (33%,37%,0%,32%) (0.33/0.37/0.00/0.32)
74 | 6D | AD | |
---|---|---|---|
RGB | 116 | 109 | 173 |
HSL | 247° | 28.07% | 55.29% |
HSB/HSV | 247° | 36.99% | 67.84% |
CMYK | 32.95% | 36.99% | 0.00% |
32.16% |
HEX | 74 | 6D | AD |
Decimal | 116 | 109 | 173 |
Binary | 1110100 | 1101101 | 10101101 |
Octal | 164 | 155 | 255 |
Examples of css and html codes for elements with #746DAD color. Also use rgb(116,109,173) instead hex code.
.myTextColor { color: #746DAD; }
<p style="color:#746DAD">This sample text font color is #746DAD.</p>
This text font color is #746DAD.
.myBgColor { background-color: #746DAD; }
<div style="background-color:#746DAD">Inner text</div>
This div background color is #746DAD.
.myBorderColor { border: 1px solid #746DAD; }
<div style="border:3px solid #746DAD">Div</div>
This div border color is #746DAD.
.myOpacity80 { color: #746DAD; opacity: 0.8; }
<p style="color:#746DAD;opacity:0.8;">80%</p>
Text with #746DAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #746DAD;}
<p style="text-shadow: 3px 3px 1px #746DAD">Text here.</p>
This text has shadow with #746DAD color.
.textShadow {text-shadow: 3px 3px 1px #746DAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #746DAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #746DAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#746DAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#746DAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #746DAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #746DAD; -webkit-box-shadow: 1px 1px 3px 2px #746DAD; box-shadow: 1px 1px 3px 2px #746DAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #746DAD; -webkit-box-shadow: 1px 1px 3px 2px #746DAD; box-shadow:1px 1px 3px 2px #746DAD;">
Div content here</div>
This text has color #746DAD on black background.
This text has color #746DAD on white background.
This text has black color on #746DAD background.
This text has white color on #746DAD background.