HEX: #74667D
RGB: (116,102,125)
#74667D contains red, green and blue colors in about the same proportion. Web safe color of #74667D is #666666 (or #666).
#74667D color RGB value is (116,102,125).
RGB: (116,102,125) (45%,40%,49%)
R 116 of 255 = 45%
G 102 of 255 = 40%
B 125 of 255 = 49%
R + G + B ~ 45%. #74667D is middle color (not dark and not light).
R + G + B =
116 + 102 + 125 = 343 (100%)
R 116 of 343 ~ 33.82%
G 102 of 343 ~ 29.74%
B 125 of 343 ~ 36.44%
#74667D color CMYK value is (7,18,0,51).
CMYK: (7,18,0,51) C7M18Y0K51 (7%,18%,0%,51%) (0.07/0.18/0.00/0.51)
74 | 66 | 7D | |
---|---|---|---|
RGB | 116 | 102 | 125 |
HSL | 277° | 10.13% | 44.51% |
HSB/HSV | 277° | 18.40% | 49.02% |
CMYK | 7.20% | 18.40% | 0.00% |
50.98% |
HEX | 74 | 66 | 7D |
Decimal | 116 | 102 | 125 |
Binary | 1110100 | 1100110 | 1111101 |
Octal | 164 | 146 | 175 |
Examples of css and html codes for elements with #74667D color. Also use rgb(116,102,125) instead hex code.
.myTextColor { color: #74667D; }
<p style="color:#74667D">This sample text font color is #74667D.</p>
This text font color is #74667D.
.myBgColor { background-color: #74667D; }
<div style="background-color:#74667D">Inner text</div>
This div background color is #74667D.
.myBorderColor { border: 1px solid #74667D; }
<div style="border:3px solid #74667D">Div</div>
This div border color is #74667D.
.myOpacity80 { color: #74667D; opacity: 0.8; }
<p style="color:#74667D;opacity:0.8;">80%</p>
Text with #74667D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74667D;}
<p style="text-shadow: 3px 3px 1px #74667D">Text here.</p>
This text has shadow with #74667D color.
.textShadow {text-shadow: 3px 3px 1px #74667D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74667D, 5px 5px 20px red">Text here.</p>
This text has shadow with #74667D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74667D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74667D, Direction=45, Strength=4)">Text</p>
This text has shadow with #74667D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74667D; -webkit-box-shadow: 1px 1px 3px 2px #74667D; box-shadow: 1px 1px 3px 2px #74667D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74667D; -webkit-box-shadow: 1px 1px 3px 2px #74667D; box-shadow:1px 1px 3px 2px #74667D;">
Div content here</div>
This text has color #74667D on black background.
This text has color #74667D on white background.
This text has black color on #74667D background.
This text has white color on #74667D background.