HEX: #C7AB9D
RGB: (199,171,157)
#C7AB9D contains red, green and blue colors in about the same proportion. Web safe color of #C7AB9D is #CC9999 (or #C99).
#C7AB9D color RGB value is (199,171,157).
RGB: (199,171,157) (78%,67%,62%)
R 199 of 255 = 78%
G 171 of 255 = 67%
B 157 of 255 = 62%
R + G + B ~ 69%. #C7AB9D is quite light color.
R + G + B =
199 + 171 + 157 = 527 (100%)
R 199 of 527 ~ 37.76%
G 171 of 527 ~ 32.45%
B 157 of 527 ~ 29.79%
#C7AB9D color CMYK value is (0,14,21,22).
CMYK: (0,14,21,22) C0M14Y21K22 (0%,14%,21%,22%) (0.00/0.14/0.21/0.22)
C7 | AB | 9D | |
---|---|---|---|
RGB | 199 | 171 | 157 |
HSL | 20° | 27.27% | 69.80% |
HSB/HSV | 20° | 21.11% | 78.04% |
CMYK | 0.00% | 14.07% | 21.11% |
21.96% |
HEX | C7 | AB | 9D |
Decimal | 199 | 171 | 157 |
Binary | 11000111 | 10101011 | 10011101 |
Octal | 307 | 253 | 235 |
Examples of css and html codes for elements with #C7AB9D color. Also use rgb(199,171,157) instead hex code.
.myTextColor { color: #C7AB9D; }
<p style="color:#C7AB9D">This sample text font color is #C7AB9D.</p>
This text font color is #C7AB9D.
.myBgColor { background-color: #C7AB9D; }
<div style="background-color:#C7AB9D">Inner text</div>
This div background color is #C7AB9D.
.myBorderColor { border: 1px solid #C7AB9D; }
<div style="border:3px solid #C7AB9D">Div</div>
This div border color is #C7AB9D.
.myOpacity80 { color: #C7AB9D; opacity: 0.8; }
<p style="color:#C7AB9D;opacity:0.8;">80%</p>
Text with #C7AB9D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7AB9D;}
<p style="text-shadow: 3px 3px 1px #C7AB9D">Text here.</p>
This text has shadow with #C7AB9D color.
.textShadow {text-shadow: 3px 3px 1px #C7AB9D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7AB9D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7AB9D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7AB9D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7AB9D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7AB9D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7AB9D; -webkit-box-shadow: 1px 1px 3px 2px #C7AB9D; box-shadow: 1px 1px 3px 2px #C7AB9D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7AB9D; -webkit-box-shadow: 1px 1px 3px 2px #C7AB9D; box-shadow:1px 1px 3px 2px #C7AB9D;">
Div content here</div>
This text has color #C7AB9D on black background.
This text has color #C7AB9D on white background.
This text has black color on #C7AB9D background.
This text has white color on #C7AB9D background.