HEX: #C8998C
RGB: (200,153,140)
#C8998C contains mainly red and green colors. Web safe color of #C8998C is #CC9999 (or #C99).
#C8998C color RGB value is (200,153,140).
RGB: (200,153,140) (78%,60%,55%)
R 200 of 255 = 78%
G 153 of 255 = 60%
B 140 of 255 = 55%
R + G + B ~ 64%. #C8998C is quite light color.
R + G + B =
200 + 153 + 140 = 493 (100%)
R 200 of 493 ~ 40.57%
G 153 of 493 ~ 31.03%
B 140 of 493 ~ 28.4%
#C8998C color CMYK value is (0,24,30,22).
CMYK: (0,24,30,22) C0M24Y30K22 (0%,24%,30%,22%) (0.00/0.24/0.30/0.22)
C8 | 99 | 8C | |
---|---|---|---|
RGB | 200 | 153 | 140 |
HSL | 13° | 35.29% | 66.67% |
HSB/HSV | 13° | 30.00% | 78.43% |
CMYK | 0.00% | 23.50% | 30.00% |
21.57% |
HEX | C8 | 99 | 8C |
Decimal | 200 | 153 | 140 |
Binary | 11001000 | 10011001 | 10001100 |
Octal | 310 | 231 | 214 |
Examples of css and html codes for elements with #C8998C color. Also use rgb(200,153,140) instead hex code.
.myTextColor { color: #C8998C; }
<p style="color:#C8998C">This sample text font color is #C8998C.</p>
This text font color is #C8998C.
.myBgColor { background-color: #C8998C; }
<div style="background-color:#C8998C">Inner text</div>
This div background color is #C8998C.
.myBorderColor { border: 1px solid #C8998C; }
<div style="border:3px solid #C8998C">Div</div>
This div border color is #C8998C.
.myOpacity80 { color: #C8998C; opacity: 0.8; }
<p style="color:#C8998C;opacity:0.8;">80%</p>
Text with #C8998C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C8998C;}
<p style="text-shadow: 3px 3px 1px #C8998C">Text here.</p>
This text has shadow with #C8998C color.
.textShadow {text-shadow: 3px 3px 1px #C8998C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C8998C, 5px 5px 20px red">Text here.</p>
This text has shadow with #C8998C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C8998C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C8998C, Direction=45, Strength=4)">Text</p>
This text has shadow with #C8998C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C8998C; -webkit-box-shadow: 1px 1px 3px 2px #C8998C; box-shadow: 1px 1px 3px 2px #C8998C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C8998C; -webkit-box-shadow: 1px 1px 3px 2px #C8998C; box-shadow:1px 1px 3px 2px #C8998C;">
Div content here</div>
This text has color #C8998C on black background.
This text has color #C8998C on white background.
This text has black color on #C8998C background.
This text has white color on #C8998C background.