HEX: #C7998E
RGB: (199,153,142)
#C7998E contains red, green and blue colors in about the same proportion. Web safe color of #C7998E is #CC9999 (or #C99).
#C7998E color RGB value is (199,153,142).
RGB: (199,153,142) (78%,60%,56%)
R 199 of 255 = 78%
G 153 of 255 = 60%
B 142 of 255 = 56%
R + G + B ~ 65%. #C7998E is quite light color.
R + G + B =
199 + 153 + 142 = 494 (100%)
R 199 of 494 ~ 40.28%
G 153 of 494 ~ 30.97%
B 142 of 494 ~ 28.74%
#C7998E color CMYK value is (0,23,29,22).
CMYK: (0,23,29,22) C0M23Y29K22 (0%,23%,29%,22%) (0.00/0.23/0.29/0.22)
C7 | 99 | 8E | |
---|---|---|---|
RGB | 199 | 153 | 142 |
HSL | 12° | 33.73% | 66.86% |
HSB/HSV | 12° | 28.64% | 78.04% |
CMYK | 0.00% | 23.12% | 28.64% |
21.96% |
HEX | C7 | 99 | 8E |
Decimal | 199 | 153 | 142 |
Binary | 11000111 | 10011001 | 10001110 |
Octal | 307 | 231 | 216 |
Examples of css and html codes for elements with #C7998E color. Also use rgb(199,153,142) instead hex code.
.myTextColor { color: #C7998E; }
<p style="color:#C7998E">This sample text font color is #C7998E.</p>
This text font color is #C7998E.
.myBgColor { background-color: #C7998E; }
<div style="background-color:#C7998E">Inner text</div>
This div background color is #C7998E.
.myBorderColor { border: 1px solid #C7998E; }
<div style="border:3px solid #C7998E">Div</div>
This div border color is #C7998E.
.myOpacity80 { color: #C7998E; opacity: 0.8; }
<p style="color:#C7998E;opacity:0.8;">80%</p>
Text with #C7998E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7998E;}
<p style="text-shadow: 3px 3px 1px #C7998E">Text here.</p>
This text has shadow with #C7998E color.
.textShadow {text-shadow: 3px 3px 1px #C7998E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7998E, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7998E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7998E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7998E, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7998E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7998E; -webkit-box-shadow: 1px 1px 3px 2px #C7998E; box-shadow: 1px 1px 3px 2px #C7998E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7998E; -webkit-box-shadow: 1px 1px 3px 2px #C7998E; box-shadow:1px 1px 3px 2px #C7998E;">
Div content here</div>
This text has color #C7998E on black background.
This text has color #C7998E on white background.
This text has black color on #C7998E background.
This text has white color on #C7998E background.