HEX: #C7B97A
RGB: (199,185,122)
#C7B97A contains mainly red and green colors. Web safe color of #C7B97A is #CCCC66 (or #CC6).
#C7B97A color RGB value is (199,185,122).
RGB: (199,185,122) (78%,73%,48%)
R 199 of 255 = 78%
G 185 of 255 = 73%
B 122 of 255 = 48%
R + G + B ~ 66%. #C7B97A is quite light color.
R + G + B =
199 + 185 + 122 = 506 (100%)
R 199 of 506 ~ 39.33%
G 185 of 506 ~ 36.56%
B 122 of 506 ~ 24.11%
#C7B97A color CMYK value is (0,7,39,22).
CMYK: (0,7,39,22) C0M7Y39K22 (0%,7%,39%,22%) (0.00/0.07/0.39/0.22)
C7 | B9 | 7A | |
---|---|---|---|
RGB | 199 | 185 | 122 |
HSL | 49° | 40.74% | 62.94% |
HSB/HSV | 49° | 38.69% | 78.04% |
CMYK | 0.00% | 7.04% | 38.69% |
21.96% |
HEX | C7 | B9 | 7A |
Decimal | 199 | 185 | 122 |
Binary | 11000111 | 10111001 | 1111010 |
Octal | 307 | 271 | 172 |
Examples of css and html codes for elements with #C7B97A color. Also use rgb(199,185,122) instead hex code.
.myTextColor { color: #C7B97A; }
<p style="color:#C7B97A">This sample text font color is #C7B97A.</p>
This text font color is #C7B97A.
.myBgColor { background-color: #C7B97A; }
<div style="background-color:#C7B97A">Inner text</div>
This div background color is #C7B97A.
.myBorderColor { border: 1px solid #C7B97A; }
<div style="border:3px solid #C7B97A">Div</div>
This div border color is #C7B97A.
.myOpacity80 { color: #C7B97A; opacity: 0.8; }
<p style="color:#C7B97A;opacity:0.8;">80%</p>
Text with #C7B97A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7B97A;}
<p style="text-shadow: 3px 3px 1px #C7B97A">Text here.</p>
This text has shadow with #C7B97A color.
.textShadow {text-shadow: 3px 3px 1px #C7B97A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7B97A, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7B97A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7B97A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7B97A, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7B97A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7B97A; -webkit-box-shadow: 1px 1px 3px 2px #C7B97A; box-shadow: 1px 1px 3px 2px #C7B97A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7B97A; -webkit-box-shadow: 1px 1px 3px 2px #C7B97A; box-shadow:1px 1px 3px 2px #C7B97A;">
Div content here</div>
This text has color #C7B97A on black background.
This text has color #C7B97A on white background.
This text has black color on #C7B97A background.
This text has white color on #C7B97A background.