HEX: #C7C18D
RGB: (199,193,141)
#C7C18D contains red, green and blue colors in about the same proportion. Web safe color of #C7C18D is #CCCC99 (or #CC9).
#C7C18D color RGB value is (199,193,141).
RGB: (199,193,141) (78%,76%,55%)
R 199 of 255 = 78%
G 193 of 255 = 76%
B 141 of 255 = 55%
R + G + B ~ 70%. #C7C18D is quite light color.
R + G + B =
199 + 193 + 141 = 533 (100%)
R 199 of 533 ~ 37.34%
G 193 of 533 ~ 36.21%
B 141 of 533 ~ 26.45%
#C7C18D color CMYK value is (0,3,29,22).
CMYK: (0,3,29,22) C0M3Y29K22 (0%,3%,29%,22%) (0.00/0.03/0.29/0.22)
C7 | C1 | 8D | |
---|---|---|---|
RGB | 199 | 193 | 141 |
HSL | 54° | 34.12% | 66.67% |
HSB/HSV | 54° | 29.15% | 78.04% |
CMYK | 0.00% | 3.02% | 29.15% |
21.96% |
HEX | C7 | C1 | 8D |
Decimal | 199 | 193 | 141 |
Binary | 11000111 | 11000001 | 10001101 |
Octal | 307 | 301 | 215 |
Examples of css and html codes for elements with #C7C18D color. Also use rgb(199,193,141) instead hex code.
.myTextColor { color: #C7C18D; }
<p style="color:#C7C18D">This sample text font color is #C7C18D.</p>
This text font color is #C7C18D.
.myBgColor { background-color: #C7C18D; }
<div style="background-color:#C7C18D">Inner text</div>
This div background color is #C7C18D.
.myBorderColor { border: 1px solid #C7C18D; }
<div style="border:3px solid #C7C18D">Div</div>
This div border color is #C7C18D.
.myOpacity80 { color: #C7C18D; opacity: 0.8; }
<p style="color:#C7C18D;opacity:0.8;">80%</p>
Text with #C7C18D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7C18D;}
<p style="text-shadow: 3px 3px 1px #C7C18D">Text here.</p>
This text has shadow with #C7C18D color.
.textShadow {text-shadow: 3px 3px 1px #C7C18D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7C18D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7C18D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7C18D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7C18D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7C18D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7C18D; -webkit-box-shadow: 1px 1px 3px 2px #C7C18D; box-shadow: 1px 1px 3px 2px #C7C18D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7C18D; -webkit-box-shadow: 1px 1px 3px 2px #C7C18D; box-shadow:1px 1px 3px 2px #C7C18D;">
Div content here</div>
This text has color #C7C18D on black background.
This text has color #C7C18D on white background.
This text has black color on #C7C18D background.
This text has white color on #C7C18D background.