HEX: #C9968C
RGB: (201,150,140)
#C9968C contains mainly red and green colors. Web safe color of #C9968C is #CC9999 (or #C99).
#C9968C color RGB value is (201,150,140).
RGB: (201,150,140) (79%,59%,55%)
R 201 of 255 = 79%
G 150 of 255 = 59%
B 140 of 255 = 55%
R + G + B ~ 64%. #C9968C is quite light color.
R + G + B =
201 + 150 + 140 = 491 (100%)
R 201 of 491 ~ 40.94%
G 150 of 491 ~ 30.55%
B 140 of 491 ~ 28.51%
#C9968C color CMYK value is (0,25,30,21).
CMYK: (0,25,30,21) C0M25Y30K21 (0%,25%,30%,21%) (0.00/0.25/0.30/0.21)
C9 | 96 | 8C | |
---|---|---|---|
RGB | 201 | 150 | 140 |
HSL | 10° | 36.09% | 66.86% |
HSB/HSV | 10° | 30.35% | 78.82% |
CMYK | 0.00% | 25.37% | 30.35% |
21.18% |
HEX | C9 | 96 | 8C |
Decimal | 201 | 150 | 140 |
Binary | 11001001 | 10010110 | 10001100 |
Octal | 311 | 226 | 214 |
Examples of css and html codes for elements with #C9968C color. Also use rgb(201,150,140) instead hex code.
.myTextColor { color: #C9968C; }
<p style="color:#C9968C">This sample text font color is #C9968C.</p>
This text font color is #C9968C.
.myBgColor { background-color: #C9968C; }
<div style="background-color:#C9968C">Inner text</div>
This div background color is #C9968C.
.myBorderColor { border: 1px solid #C9968C; }
<div style="border:3px solid #C9968C">Div</div>
This div border color is #C9968C.
.myOpacity80 { color: #C9968C; opacity: 0.8; }
<p style="color:#C9968C;opacity:0.8;">80%</p>
Text with #C9968C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9968C;}
<p style="text-shadow: 3px 3px 1px #C9968C">Text here.</p>
This text has shadow with #C9968C color.
.textShadow {text-shadow: 3px 3px 1px #C9968C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9968C, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9968C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9968C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9968C, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9968C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9968C; -webkit-box-shadow: 1px 1px 3px 2px #C9968C; box-shadow: 1px 1px 3px 2px #C9968C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9968C; -webkit-box-shadow: 1px 1px 3px 2px #C9968C; box-shadow:1px 1px 3px 2px #C9968C;">
Div content here</div>
This text has color #C9968C on black background.
This text has color #C9968C on white background.
This text has black color on #C9968C background.
This text has white color on #C9968C background.