HEX: #743F7B
RGB: (116,63,123)
#743F7B contains mainly red and blue colors. Web safe color of #743F7B is #663366 (or #636).
#743F7B color RGB value is (116,63,123).
RGB: (116,63,123) (45%,25%,48%)
R 116 of 255 = 45%
G 63 of 255 = 25%
B 123 of 255 = 48%
R + G + B ~ 39%. #743F7B is quite dark color.
R + G + B =
116 + 63 + 123 = 302 (100%)
R 116 of 302 ~ 38.41%
G 63 of 302 ~ 20.86%
B 123 of 302 ~ 40.73%
#743F7B color CMYK value is (6,49,0,52).
CMYK: (6,49,0,52) C6M49Y0K52 (6%,49%,0%,52%) (0.06/0.49/0.00/0.52)
74 | 3F | 7B | |
---|---|---|---|
RGB | 116 | 63 | 123 |
HSL | 293° | 32.26% | 36.47% |
HSB/HSV | 293° | 48.78% | 48.24% |
CMYK | 5.69% | 48.78% | 0.00% |
51.76% |
HEX | 74 | 3F | 7B |
Decimal | 116 | 63 | 123 |
Binary | 1110100 | 111111 | 1111011 |
Octal | 164 | 77 | 173 |
Examples of css and html codes for elements with #743F7B color. Also use rgb(116,63,123) instead hex code.
.myTextColor { color: #743F7B; }
<p style="color:#743F7B">This sample text font color is #743F7B.</p>
This text font color is #743F7B.
.myBgColor { background-color: #743F7B; }
<div style="background-color:#743F7B">Inner text</div>
This div background color is #743F7B.
.myBorderColor { border: 1px solid #743F7B; }
<div style="border:3px solid #743F7B">Div</div>
This div border color is #743F7B.
.myOpacity80 { color: #743F7B; opacity: 0.8; }
<p style="color:#743F7B;opacity:0.8;">80%</p>
Text with #743F7B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #743F7B;}
<p style="text-shadow: 3px 3px 1px #743F7B">Text here.</p>
This text has shadow with #743F7B color.
.textShadow {text-shadow: 3px 3px 1px #743F7B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #743F7B, 5px 5px 20px red">Text here.</p>
This text has shadow with #743F7B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#743F7B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#743F7B, Direction=45, Strength=4)">Text</p>
This text has shadow with #743F7B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #743F7B; -webkit-box-shadow: 1px 1px 3px 2px #743F7B; box-shadow: 1px 1px 3px 2px #743F7B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #743F7B; -webkit-box-shadow: 1px 1px 3px 2px #743F7B; box-shadow:1px 1px 3px 2px #743F7B;">
Div content here</div>
This text has color #743F7B on black background.
This text has color #743F7B on white background.
This text has black color on #743F7B background.
This text has white color on #743F7B background.