HEX: #C6999D
RGB: (198,153,157)
#C6999D contains red, green and blue colors in about the same proportion. Web safe color of #C6999D is #CC9999 (or #C99).
#C6999D color RGB value is (198,153,157).
RGB: (198,153,157) (78%,60%,62%)
R 198 of 255 = 78%
G 153 of 255 = 60%
B 157 of 255 = 62%
R + G + B ~ 67%. #C6999D is quite light color.
R + G + B =
198 + 153 + 157 = 508 (100%)
R 198 of 508 ~ 38.98%
G 153 of 508 ~ 30.12%
B 157 of 508 ~ 30.91%
#C6999D color CMYK value is (0,23,21,22).
CMYK: (0,23,21,22) C0M23Y21K22 (0%,23%,21%,22%) (0.00/0.23/0.21/0.22)
C6 | 99 | 9D | |
---|---|---|---|
RGB | 198 | 153 | 157 |
HSL | 355° | 28.30% | 68.82% |
HSB/HSV | 355° | 22.73% | 77.65% |
CMYK | 0.00% | 22.73% | 20.71% |
22.35% |
HEX | C6 | 99 | 9D |
Decimal | 198 | 153 | 157 |
Binary | 11000110 | 10011001 | 10011101 |
Octal | 306 | 231 | 235 |
Examples of css and html codes for elements with #C6999D color. Also use rgb(198,153,157) instead hex code.
.myTextColor { color: #C6999D; }
<p style="color:#C6999D">This sample text font color is #C6999D.</p>
This text font color is #C6999D.
.myBgColor { background-color: #C6999D; }
<div style="background-color:#C6999D">Inner text</div>
This div background color is #C6999D.
.myBorderColor { border: 1px solid #C6999D; }
<div style="border:3px solid #C6999D">Div</div>
This div border color is #C6999D.
.myOpacity80 { color: #C6999D; opacity: 0.8; }
<p style="color:#C6999D;opacity:0.8;">80%</p>
Text with #C6999D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6999D;}
<p style="text-shadow: 3px 3px 1px #C6999D">Text here.</p>
This text has shadow with #C6999D color.
.textShadow {text-shadow: 3px 3px 1px #C6999D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6999D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6999D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6999D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6999D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6999D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6999D; -webkit-box-shadow: 1px 1px 3px 2px #C6999D; box-shadow: 1px 1px 3px 2px #C6999D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6999D; -webkit-box-shadow: 1px 1px 3px 2px #C6999D; box-shadow:1px 1px 3px 2px #C6999D;">
Div content here</div>
This text has color #C6999D on black background.
This text has color #C6999D on white background.
This text has black color on #C6999D background.
This text has white color on #C6999D background.