HEX: #C6747D
RGB: (198,116,125)
#C6747D contains mainly red color. Web safe color of #C6747D is #CC6666 (or #C66).
#C6747D color RGB value is (198,116,125).
RGB: (198,116,125) (78%,45%,49%)
R 198 of 255 = 78%
G 116 of 255 = 45%
B 125 of 255 = 49%
R + G + B ~ 57%. #C6747D is middle color (not dark and not light).
R + G + B =
198 + 116 + 125 = 439 (100%)
R 198 of 439 ~ 45.1%
G 116 of 439 ~ 26.42%
B 125 of 439 ~ 28.47%
#C6747D color CMYK value is (0,41,37,22).
CMYK: (0,41,37,22) C0M41Y37K22 (0%,41%,37%,22%) (0.00/0.41/0.37/0.22)
C6 | 74 | 7D | |
---|---|---|---|
RGB | 198 | 116 | 125 |
HSL | 353° | 41.84% | 61.57% |
HSB/HSV | 353° | 41.41% | 77.65% |
CMYK | 0.00% | 41.41% | 36.87% |
22.35% |
HEX | C6 | 74 | 7D |
Decimal | 198 | 116 | 125 |
Binary | 11000110 | 1110100 | 1111101 |
Octal | 306 | 164 | 175 |
Examples of css and html codes for elements with #C6747D color. Also use rgb(198,116,125) instead hex code.
.myTextColor { color: #C6747D; }
<p style="color:#C6747D">This sample text font color is #C6747D.</p>
This text font color is #C6747D.
.myBgColor { background-color: #C6747D; }
<div style="background-color:#C6747D">Inner text</div>
This div background color is #C6747D.
.myBorderColor { border: 1px solid #C6747D; }
<div style="border:3px solid #C6747D">Div</div>
This div border color is #C6747D.
.myOpacity80 { color: #C6747D; opacity: 0.8; }
<p style="color:#C6747D;opacity:0.8;">80%</p>
Text with #C6747D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6747D;}
<p style="text-shadow: 3px 3px 1px #C6747D">Text here.</p>
This text has shadow with #C6747D color.
.textShadow {text-shadow: 3px 3px 1px #C6747D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6747D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6747D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6747D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6747D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6747D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6747D; -webkit-box-shadow: 1px 1px 3px 2px #C6747D; box-shadow: 1px 1px 3px 2px #C6747D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6747D; -webkit-box-shadow: 1px 1px 3px 2px #C6747D; box-shadow:1px 1px 3px 2px #C6747D;">
Div content here</div>
This text has color #C6747D on black background.
This text has color #C6747D on white background.
This text has black color on #C6747D background.
This text has white color on #C6747D background.