HEX: #7D72CC
RGB: (125,114,204)
#7D72CC contains mainly blue color. Web safe color of #7D72CC is #6666CC (or #66C).
#7D72CC color RGB value is (125,114,204).
RGB: (125,114,204) (49%,45%,80%)
R 125 of 255 = 49%
G 114 of 255 = 45%
B 204 of 255 = 80%
R + G + B ~ 58%. #7D72CC is middle color (not dark and not light).
R + G + B =
125 + 114 + 204 = 443 (100%)
R 125 of 443 ~ 28.22%
G 114 of 443 ~ 25.73%
B 204 of 443 ~ 46.05%
#7D72CC color CMYK value is (39,44,0,20).
CMYK: (39,44,0,20) C39M44Y0K20 (39%,44%,0%,20%) (0.39/0.44/0.00/0.20)
7D | 72 | CC | |
---|---|---|---|
RGB | 125 | 114 | 204 |
HSL | 247° | 46.88% | 62.35% |
HSB/HSV | 247° | 44.12% | 80.00% |
CMYK | 38.73% | 44.12% | 0.00% |
20.00% |
HEX | 7D | 72 | CC |
Decimal | 125 | 114 | 204 |
Binary | 1111101 | 1110010 | 11001100 |
Octal | 175 | 162 | 314 |
Examples of css and html codes for elements with #7D72CC color. Also use rgb(125,114,204) instead hex code.
.myTextColor { color: #7D72CC; }
<p style="color:#7D72CC">This sample text font color is #7D72CC.</p>
This text font color is #7D72CC.
.myBgColor { background-color: #7D72CC; }
<div style="background-color:#7D72CC">Inner text</div>
This div background color is #7D72CC.
.myBorderColor { border: 1px solid #7D72CC; }
<div style="border:3px solid #7D72CC">Div</div>
This div border color is #7D72CC.
.myOpacity80 { color: #7D72CC; opacity: 0.8; }
<p style="color:#7D72CC;opacity:0.8;">80%</p>
Text with #7D72CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D72CC;}
<p style="text-shadow: 3px 3px 1px #7D72CC">Text here.</p>
This text has shadow with #7D72CC color.
.textShadow {text-shadow: 3px 3px 1px #7D72CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D72CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D72CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D72CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D72CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D72CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D72CC; -webkit-box-shadow: 1px 1px 3px 2px #7D72CC; box-shadow: 1px 1px 3px 2px #7D72CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D72CC; -webkit-box-shadow: 1px 1px 3px 2px #7D72CC; box-shadow:1px 1px 3px 2px #7D72CC;">
Div content here</div>
This text has color #7D72CC on black background.
This text has color #7D72CC on white background.
This text has black color on #7D72CC background.
This text has white color on #7D72CC background.