HEX: #C7AE88
RGB: (199,174,136)
#C7AE88 contains mainly red and green colors. Web safe color of #C7AE88 is #CC9999 (or #C99).
#C7AE88 color RGB value is (199,174,136).
RGB: (199,174,136) (78%,68%,53%)
R 199 of 255 = 78%
G 174 of 255 = 68%
B 136 of 255 = 53%
R + G + B ~ 66%. #C7AE88 is quite light color.
R + G + B =
199 + 174 + 136 = 509 (100%)
R 199 of 509 ~ 39.1%
G 174 of 509 ~ 34.18%
B 136 of 509 ~ 26.72%
#C7AE88 color CMYK value is (0,13,32,22).
CMYK: (0,13,32,22) C0M13Y32K22 (0%,13%,32%,22%) (0.00/0.13/0.32/0.22)
C7 | AE | 88 | |
---|---|---|---|
RGB | 199 | 174 | 136 |
HSL | 36° | 36.00% | 65.69% |
HSB/HSV | 36° | 31.66% | 78.04% |
CMYK | 0.00% | 12.56% | 31.66% |
21.96% |
HEX | C7 | AE | 88 |
Decimal | 199 | 174 | 136 |
Binary | 11000111 | 10101110 | 10001000 |
Octal | 307 | 256 | 210 |
Examples of css and html codes for elements with #C7AE88 color. Also use rgb(199,174,136) instead hex code.
.myTextColor { color: #C7AE88; }
<p style="color:#C7AE88">This sample text font color is #C7AE88.</p>
This text font color is #C7AE88.
.myBgColor { background-color: #C7AE88; }
<div style="background-color:#C7AE88">Inner text</div>
This div background color is #C7AE88.
.myBorderColor { border: 1px solid #C7AE88; }
<div style="border:3px solid #C7AE88">Div</div>
This div border color is #C7AE88.
.myOpacity80 { color: #C7AE88; opacity: 0.8; }
<p style="color:#C7AE88;opacity:0.8;">80%</p>
Text with #C7AE88 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7AE88;}
<p style="text-shadow: 3px 3px 1px #C7AE88">Text here.</p>
This text has shadow with #C7AE88 color.
.textShadow {text-shadow: 3px 3px 1px #C7AE88, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7AE88, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7AE88 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7AE88, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7AE88, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7AE88 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7AE88; -webkit-box-shadow: 1px 1px 3px 2px #C7AE88; box-shadow: 1px 1px 3px 2px #C7AE88; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7AE88; -webkit-box-shadow: 1px 1px 3px 2px #C7AE88; box-shadow:1px 1px 3px 2px #C7AE88;">
Div content here</div>
This text has color #C7AE88 on black background.
This text has color #C7AE88 on white background.
This text has black color on #C7AE88 background.
This text has white color on #C7AE88 background.