HEX: #66475D
RGB: (102,71,93)
#66475D contains red, green and blue colors in about the same proportion. Web safe color of #66475D is #663366 (or #636).
#66475D color RGB value is (102,71,93).
RGB: (102,71,93) (40%,28%,36%)
R 102 of 255 = 40%
G 71 of 255 = 28%
B 93 of 255 = 36%
R + G + B ~ 35%. #66475D is quite dark color.
R + G + B =
102 + 71 + 93 = 266 (100%)
R 102 of 266 ~ 38.35%
G 71 of 266 ~ 26.69%
B 93 of 266 ~ 34.96%
#66475D color CMYK value is (0,30,9,60).
CMYK: (0,30,9,60) C0M30Y9K60 (0%,30%,9%,60%) (0.00/0.30/0.09/0.60)
66 | 47 | 5D | |
---|---|---|---|
RGB | 102 | 71 | 93 |
HSL | 317° | 17.92% | 33.92% |
HSB/HSV | 317° | 30.39% | 40.00% |
CMYK | 0.00% | 30.39% | 8.82% |
60.00% |
HEX | 66 | 47 | 5D |
Decimal | 102 | 71 | 93 |
Binary | 1100110 | 1000111 | 1011101 |
Octal | 146 | 107 | 135 |
Examples of css and html codes for elements with #66475D color. Also use rgb(102,71,93) instead hex code.
.myTextColor { color: #66475D; }
<p style="color:#66475D">This sample text font color is #66475D.</p>
This text font color is #66475D.
.myBgColor { background-color: #66475D; }
<div style="background-color:#66475D">Inner text</div>
This div background color is #66475D.
.myBorderColor { border: 1px solid #66475D; }
<div style="border:3px solid #66475D">Div</div>
This div border color is #66475D.
.myOpacity80 { color: #66475D; opacity: 0.8; }
<p style="color:#66475D;opacity:0.8;">80%</p>
Text with #66475D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #66475D;}
<p style="text-shadow: 3px 3px 1px #66475D">Text here.</p>
This text has shadow with #66475D color.
.textShadow {text-shadow: 3px 3px 1px #66475D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #66475D, 5px 5px 20px red">Text here.</p>
This text has shadow with #66475D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#66475D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#66475D, Direction=45, Strength=4)">Text</p>
This text has shadow with #66475D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #66475D; -webkit-box-shadow: 1px 1px 3px 2px #66475D; box-shadow: 1px 1px 3px 2px #66475D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #66475D; -webkit-box-shadow: 1px 1px 3px 2px #66475D; box-shadow:1px 1px 3px 2px #66475D;">
Div content here</div>
This text has color #66475D on black background.
This text has color #66475D on white background.
This text has black color on #66475D background.
This text has white color on #66475D background.