HEX: #C6958B
RGB: (198,149,139)
#C6958B contains red, green and blue colors in about the same proportion. Web safe color of #C6958B is #CC9999 (or #C99).
#C6958B color RGB value is (198,149,139).
RGB: (198,149,139) (78%,58%,55%)
R 198 of 255 = 78%
G 149 of 255 = 58%
B 139 of 255 = 55%
R + G + B ~ 64%. #C6958B is quite light color.
R + G + B =
198 + 149 + 139 = 486 (100%)
R 198 of 486 ~ 40.74%
G 149 of 486 ~ 30.66%
B 139 of 486 ~ 28.6%
#C6958B color CMYK value is (0,25,30,22).
CMYK: (0,25,30,22) C0M25Y30K22 (0%,25%,30%,22%) (0.00/0.25/0.30/0.22)
C6 | 95 | 8B | |
---|---|---|---|
RGB | 198 | 149 | 139 |
HSL | 10° | 34.10% | 66.08% |
HSB/HSV | 10° | 29.80% | 77.65% |
CMYK | 0.00% | 24.75% | 29.80% |
22.35% |
HEX | C6 | 95 | 8B |
Decimal | 198 | 149 | 139 |
Binary | 11000110 | 10010101 | 10001011 |
Octal | 306 | 225 | 213 |
Examples of css and html codes for elements with #C6958B color. Also use rgb(198,149,139) instead hex code.
.myTextColor { color: #C6958B; }
<p style="color:#C6958B">This sample text font color is #C6958B.</p>
This text font color is #C6958B.
.myBgColor { background-color: #C6958B; }
<div style="background-color:#C6958B">Inner text</div>
This div background color is #C6958B.
.myBorderColor { border: 1px solid #C6958B; }
<div style="border:3px solid #C6958B">Div</div>
This div border color is #C6958B.
.myOpacity80 { color: #C6958B; opacity: 0.8; }
<p style="color:#C6958B;opacity:0.8;">80%</p>
Text with #C6958B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6958B;}
<p style="text-shadow: 3px 3px 1px #C6958B">Text here.</p>
This text has shadow with #C6958B color.
.textShadow {text-shadow: 3px 3px 1px #C6958B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6958B, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6958B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6958B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6958B, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6958B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6958B; -webkit-box-shadow: 1px 1px 3px 2px #C6958B; box-shadow: 1px 1px 3px 2px #C6958B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6958B; -webkit-box-shadow: 1px 1px 3px 2px #C6958B; box-shadow:1px 1px 3px 2px #C6958B;">
Div content here</div>
This text has color #C6958B on black background.
This text has color #C6958B on white background.
This text has black color on #C6958B background.
This text has white color on #C6958B background.