HEX: #C9B3B6
RGB: (201,179,182)
#C9B3B6 contains red, green and blue colors in about the same proportion. Web safe color of #C9B3B6 is #CC99CC (or #C9C).
#C9B3B6 color RGB value is (201,179,182).
RGB: (201,179,182) (79%,70%,71%)
R 201 of 255 = 79%
G 179 of 255 = 70%
B 182 of 255 = 71%
R + G + B ~ 73%. #C9B3B6 is quite light color.
R + G + B =
201 + 179 + 182 = 562 (100%)
R 201 of 562 ~ 35.77%
G 179 of 562 ~ 31.85%
B 182 of 562 ~ 32.38%
#C9B3B6 color CMYK value is (0,11,9,21).
CMYK: (0,11,9,21) C0M11Y9K21 (0%,11%,9%,21%) (0.00/0.11/0.09/0.21)
C9 | B3 | B6 | |
---|---|---|---|
RGB | 201 | 179 | 182 |
HSL | 352° | 16.92% | 74.51% |
HSB/HSV | 352° | 10.95% | 78.82% |
CMYK | 0.00% | 10.95% | 9.45% |
21.18% |
HEX | C9 | B3 | B6 |
Decimal | 201 | 179 | 182 |
Binary | 11001001 | 10110011 | 10110110 |
Octal | 311 | 263 | 266 |
Examples of css and html codes for elements with #C9B3B6 color. Also use rgb(201,179,182) instead hex code.
.myTextColor { color: #C9B3B6; }
<p style="color:#C9B3B6">This sample text font color is #C9B3B6.</p>
This text font color is #C9B3B6.
.myBgColor { background-color: #C9B3B6; }
<div style="background-color:#C9B3B6">Inner text</div>
This div background color is #C9B3B6.
.myBorderColor { border: 1px solid #C9B3B6; }
<div style="border:3px solid #C9B3B6">Div</div>
This div border color is #C9B3B6.
.myOpacity80 { color: #C9B3B6; opacity: 0.8; }
<p style="color:#C9B3B6;opacity:0.8;">80%</p>
Text with #C9B3B6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9B3B6;}
<p style="text-shadow: 3px 3px 1px #C9B3B6">Text here.</p>
This text has shadow with #C9B3B6 color.
.textShadow {text-shadow: 3px 3px 1px #C9B3B6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9B3B6, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9B3B6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9B3B6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9B3B6, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9B3B6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9B3B6; -webkit-box-shadow: 1px 1px 3px 2px #C9B3B6; box-shadow: 1px 1px 3px 2px #C9B3B6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9B3B6; -webkit-box-shadow: 1px 1px 3px 2px #C9B3B6; box-shadow:1px 1px 3px 2px #C9B3B6;">
Div content here</div>
This text has color #C9B3B6 on black background.
This text has color #C9B3B6 on white background.
This text has black color on #C9B3B6 background.
This text has white color on #C9B3B6 background.