HEX: #743CB7
RGB: (116,60,183)
#743CB7 contains mainly blue color. Web safe color of #743CB7 is #6633CC (or #63C).
#743CB7 color RGB value is (116,60,183).
RGB: (116,60,183) (45%,24%,72%)
R 116 of 255 = 45%
G 60 of 255 = 24%
B 183 of 255 = 72%
R + G + B ~ 47%. #743CB7 is middle color (not dark and not light).
R + G + B =
116 + 60 + 183 = 359 (100%)
R 116 of 359 ~ 32.31%
G 60 of 359 ~ 16.71%
B 183 of 359 ~ 50.97%
#743CB7 color CMYK value is (37,67,0,28).
CMYK: (37,67,0,28) C37M67Y0K28 (37%,67%,0%,28%) (0.37/0.67/0.00/0.28)
74 | 3C | B7 | |
---|---|---|---|
RGB | 116 | 60 | 183 |
HSL | 267° | 50.62% | 47.65% |
HSB/HSV | 267° | 67.21% | 71.76% |
CMYK | 36.61% | 67.21% | 0.00% |
28.24% |
HEX | 74 | 3C | B7 |
Decimal | 116 | 60 | 183 |
Binary | 1110100 | 111100 | 10110111 |
Octal | 164 | 74 | 267 |
Examples of css and html codes for elements with #743CB7 color. Also use rgb(116,60,183) instead hex code.
.myTextColor { color: #743CB7; }
<p style="color:#743CB7">This sample text font color is #743CB7.</p>
This text font color is #743CB7.
.myBgColor { background-color: #743CB7; }
<div style="background-color:#743CB7">Inner text</div>
This div background color is #743CB7.
.myBorderColor { border: 1px solid #743CB7; }
<div style="border:3px solid #743CB7">Div</div>
This div border color is #743CB7.
.myOpacity80 { color: #743CB7; opacity: 0.8; }
<p style="color:#743CB7;opacity:0.8;">80%</p>
Text with #743CB7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #743CB7;}
<p style="text-shadow: 3px 3px 1px #743CB7">Text here.</p>
This text has shadow with #743CB7 color.
.textShadow {text-shadow: 3px 3px 1px #743CB7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #743CB7, 5px 5px 20px red">Text here.</p>
This text has shadow with #743CB7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#743CB7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#743CB7, Direction=45, Strength=4)">Text</p>
This text has shadow with #743CB7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #743CB7; -webkit-box-shadow: 1px 1px 3px 2px #743CB7; box-shadow: 1px 1px 3px 2px #743CB7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #743CB7; -webkit-box-shadow: 1px 1px 3px 2px #743CB7; box-shadow:1px 1px 3px 2px #743CB7;">
Div content here</div>
This text has color #743CB7 on black background.
This text has color #743CB7 on white background.
This text has black color on #743CB7 background.
This text has white color on #743CB7 background.