HEX: #C17D7B
RGB: (193,125,123)
#C17D7B contains mainly red color. Web safe color of #C17D7B is #CC6666 (or #C66).
#C17D7B color RGB value is (193,125,123).
RGB: (193,125,123) (76%,49%,48%)
R 193 of 255 = 76%
G 125 of 255 = 49%
B 123 of 255 = 48%
R + G + B ~ 58%. #C17D7B is middle color (not dark and not light).
R + G + B =
193 + 125 + 123 = 441 (100%)
R 193 of 441 ~ 43.76%
G 125 of 441 ~ 28.34%
B 123 of 441 ~ 27.89%
#C17D7B color CMYK value is (0,35,36,24).
CMYK: (0,35,36,24) C0M35Y36K24 (0%,35%,36%,24%) (0.00/0.35/0.36/0.24)
C1 | 7D | 7B | |
---|---|---|---|
RGB | 193 | 125 | 123 |
HSL | 2° | 36.08% | 61.96% |
HSB/HSV | 2° | 36.27% | 75.69% |
CMYK | 0.00% | 35.23% | 36.27% |
24.31% |
HEX | C1 | 7D | 7B |
Decimal | 193 | 125 | 123 |
Binary | 11000001 | 1111101 | 1111011 |
Octal | 301 | 175 | 173 |
Examples of css and html codes for elements with #C17D7B color. Also use rgb(193,125,123) instead hex code.
.myTextColor { color: #C17D7B; }
<p style="color:#C17D7B">This sample text font color is #C17D7B.</p>
This text font color is #C17D7B.
.myBgColor { background-color: #C17D7B; }
<div style="background-color:#C17D7B">Inner text</div>
This div background color is #C17D7B.
.myBorderColor { border: 1px solid #C17D7B; }
<div style="border:3px solid #C17D7B">Div</div>
This div border color is #C17D7B.
.myOpacity80 { color: #C17D7B; opacity: 0.8; }
<p style="color:#C17D7B;opacity:0.8;">80%</p>
Text with #C17D7B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C17D7B;}
<p style="text-shadow: 3px 3px 1px #C17D7B">Text here.</p>
This text has shadow with #C17D7B color.
.textShadow {text-shadow: 3px 3px 1px #C17D7B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C17D7B, 5px 5px 20px red">Text here.</p>
This text has shadow with #C17D7B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C17D7B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C17D7B, Direction=45, Strength=4)">Text</p>
This text has shadow with #C17D7B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C17D7B; -webkit-box-shadow: 1px 1px 3px 2px #C17D7B; box-shadow: 1px 1px 3px 2px #C17D7B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C17D7B; -webkit-box-shadow: 1px 1px 3px 2px #C17D7B; box-shadow:1px 1px 3px 2px #C17D7B;">
Div content here</div>
This text has color #C17D7B on black background.
This text has color #C17D7B on white background.
This text has black color on #C17D7B background.
This text has white color on #C17D7B background.