HEX: #754DCC
RGB: (117,77,204)
#754DCC contains mainly blue color. Web safe color of #754DCC is #6633CC (or #63C).
#754DCC color RGB value is (117,77,204).
RGB: (117,77,204) (46%,30%,80%)
R 117 of 255 = 46%
G 77 of 255 = 30%
B 204 of 255 = 80%
R + G + B ~ 52%. #754DCC is middle color (not dark and not light).
R + G + B =
117 + 77 + 204 = 398 (100%)
R 117 of 398 ~ 29.4%
G 77 of 398 ~ 19.35%
B 204 of 398 ~ 51.26%
#754DCC color CMYK value is (43,62,0,20).
CMYK: (43,62,0,20) C43M62Y0K20 (43%,62%,0%,20%) (0.43/0.62/0.00/0.20)
75 | 4D | CC | |
---|---|---|---|
RGB | 117 | 77 | 204 |
HSL | 259° | 55.46% | 55.10% |
HSB/HSV | 259° | 62.25% | 80.00% |
CMYK | 42.65% | 62.25% | 0.00% |
20.00% |
HEX | 75 | 4D | CC |
Decimal | 117 | 77 | 204 |
Binary | 1110101 | 1001101 | 11001100 |
Octal | 165 | 115 | 314 |
Examples of css and html codes for elements with #754DCC color. Also use rgb(117,77,204) instead hex code.
.myTextColor { color: #754DCC; }
<p style="color:#754DCC">This sample text font color is #754DCC.</p>
This text font color is #754DCC.
.myBgColor { background-color: #754DCC; }
<div style="background-color:#754DCC">Inner text</div>
This div background color is #754DCC.
.myBorderColor { border: 1px solid #754DCC; }
<div style="border:3px solid #754DCC">Div</div>
This div border color is #754DCC.
.myOpacity80 { color: #754DCC; opacity: 0.8; }
<p style="color:#754DCC;opacity:0.8;">80%</p>
Text with #754DCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #754DCC;}
<p style="text-shadow: 3px 3px 1px #754DCC">Text here.</p>
This text has shadow with #754DCC color.
.textShadow {text-shadow: 3px 3px 1px #754DCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #754DCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #754DCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#754DCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#754DCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #754DCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #754DCC; -webkit-box-shadow: 1px 1px 3px 2px #754DCC; box-shadow: 1px 1px 3px 2px #754DCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #754DCC; -webkit-box-shadow: 1px 1px 3px 2px #754DCC; box-shadow:1px 1px 3px 2px #754DCC;">
Div content here</div>
This text has color #754DCC on black background.
This text has color #754DCC on white background.
This text has black color on #754DCC background.
This text has white color on #754DCC background.