HEX: #72727D
RGB: (114,114,125)
#72727D contains red, green and blue colors in about the same proportion. Web safe color of #72727D is #666666 (or #666).
#72727D color RGB value is (114,114,125).
RGB: (114,114,125) (45%,45%,49%)
R 114 of 255 = 45%
G 114 of 255 = 45%
B 125 of 255 = 49%
R + G + B ~ 46%. #72727D is middle color (not dark and not light).
R + G + B =
114 + 114 + 125 = 353 (100%)
R 114 of 353 ~ 32.29%
G 114 of 353 ~ 32.29%
B 125 of 353 ~ 35.41%
#72727D color CMYK value is (9,9,0,51).
CMYK: (9,9,0,51) C9M9Y0K51 (9%,9%,0%,51%) (0.09/0.09/0.00/0.51)
72 | 72 | 7D | |
---|---|---|---|
RGB | 114 | 114 | 125 |
HSL | 240° | 4.60% | 46.86% |
HSB/HSV | 240° | 8.80% | 49.02% |
CMYK | 8.80% | 8.80% | 0.00% |
50.98% |
HEX | 72 | 72 | 7D |
Decimal | 114 | 114 | 125 |
Binary | 1110010 | 1110010 | 1111101 |
Octal | 162 | 162 | 175 |
Examples of css and html codes for elements with #72727D color. Also use rgb(114,114,125) instead hex code.
.myTextColor { color: #72727D; }
<p style="color:#72727D">This sample text font color is #72727D.</p>
This text font color is #72727D.
.myBgColor { background-color: #72727D; }
<div style="background-color:#72727D">Inner text</div>
This div background color is #72727D.
.myBorderColor { border: 1px solid #72727D; }
<div style="border:3px solid #72727D">Div</div>
This div border color is #72727D.
.myOpacity80 { color: #72727D; opacity: 0.8; }
<p style="color:#72727D;opacity:0.8;">80%</p>
Text with #72727D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72727D;}
<p style="text-shadow: 3px 3px 1px #72727D">Text here.</p>
This text has shadow with #72727D color.
.textShadow {text-shadow: 3px 3px 1px #72727D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72727D, 5px 5px 20px red">Text here.</p>
This text has shadow with #72727D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72727D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72727D, Direction=45, Strength=4)">Text</p>
This text has shadow with #72727D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72727D; -webkit-box-shadow: 1px 1px 3px 2px #72727D; box-shadow: 1px 1px 3px 2px #72727D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72727D; -webkit-box-shadow: 1px 1px 3px 2px #72727D; box-shadow:1px 1px 3px 2px #72727D;">
Div content here</div>
This text has color #72727D on black background.
This text has color #72727D on white background.
This text has black color on #72727D background.
This text has white color on #72727D background.