HEX: #7C6FCC
RGB: (124,111,204)
#7C6FCC contains mainly blue color. Web safe color of #7C6FCC is #6666CC (or #66C).
#7C6FCC color RGB value is (124,111,204).
RGB: (124,111,204) (49%,44%,80%)
R 124 of 255 = 49%
G 111 of 255 = 44%
B 204 of 255 = 80%
R + G + B ~ 58%. #7C6FCC is middle color (not dark and not light).
R + G + B =
124 + 111 + 204 = 439 (100%)
R 124 of 439 ~ 28.25%
G 111 of 439 ~ 25.28%
B 204 of 439 ~ 46.47%
#7C6FCC color CMYK value is (39,46,0,20).
CMYK: (39,46,0,20) C39M46Y0K20 (39%,46%,0%,20%) (0.39/0.46/0.00/0.20)
7C | 6F | CC | |
---|---|---|---|
RGB | 124 | 111 | 204 |
HSL | 248° | 47.69% | 61.76% |
HSB/HSV | 248° | 45.59% | 80.00% |
CMYK | 39.22% | 45.59% | 0.00% |
20.00% |
HEX | 7C | 6F | CC |
Decimal | 124 | 111 | 204 |
Binary | 1111100 | 1101111 | 11001100 |
Octal | 174 | 157 | 314 |
Examples of css and html codes for elements with #7C6FCC color. Also use rgb(124,111,204) instead hex code.
.myTextColor { color: #7C6FCC; }
<p style="color:#7C6FCC">This sample text font color is #7C6FCC.</p>
This text font color is #7C6FCC.
.myBgColor { background-color: #7C6FCC; }
<div style="background-color:#7C6FCC">Inner text</div>
This div background color is #7C6FCC.
.myBorderColor { border: 1px solid #7C6FCC; }
<div style="border:3px solid #7C6FCC">Div</div>
This div border color is #7C6FCC.
.myOpacity80 { color: #7C6FCC; opacity: 0.8; }
<p style="color:#7C6FCC;opacity:0.8;">80%</p>
Text with #7C6FCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7C6FCC;}
<p style="text-shadow: 3px 3px 1px #7C6FCC">Text here.</p>
This text has shadow with #7C6FCC color.
.textShadow {text-shadow: 3px 3px 1px #7C6FCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7C6FCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #7C6FCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7C6FCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7C6FCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #7C6FCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7C6FCC; -webkit-box-shadow: 1px 1px 3px 2px #7C6FCC; box-shadow: 1px 1px 3px 2px #7C6FCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7C6FCC; -webkit-box-shadow: 1px 1px 3px 2px #7C6FCC; box-shadow:1px 1px 3px 2px #7C6FCC;">
Div content here</div>
This text has color #7C6FCC on black background.
This text has color #7C6FCC on white background.
This text has black color on #7C6FCC background.
This text has white color on #7C6FCC background.