HEX: #C9736A
RGB: (201,115,106)
#C9736A contains mainly red color. Web safe color of #C9736A is #CC6666 (or #C66).
#C9736A color RGB value is (201,115,106).
RGB: (201,115,106) (79%,45%,42%)
R 201 of 255 = 79%
G 115 of 255 = 45%
B 106 of 255 = 42%
R + G + B ~ 55%. #C9736A is middle color (not dark and not light).
R + G + B =
201 + 115 + 106 = 422 (100%)
R 201 of 422 ~ 47.63%
G 115 of 422 ~ 27.25%
B 106 of 422 ~ 25.12%
#C9736A color CMYK value is (0,43,47,21).
CMYK: (0,43,47,21) C0M43Y47K21 (0%,43%,47%,21%) (0.00/0.43/0.47/0.21)
C9 | 73 | 6A | |
---|---|---|---|
RGB | 201 | 115 | 106 |
HSL | 6° | 46.80% | 60.20% |
HSB/HSV | 6° | 47.26% | 78.82% |
CMYK | 0.00% | 42.79% | 47.26% |
21.18% |
HEX | C9 | 73 | 6A |
Decimal | 201 | 115 | 106 |
Binary | 11001001 | 1110011 | 1101010 |
Octal | 311 | 163 | 152 |
Examples of css and html codes for elements with #C9736A color. Also use rgb(201,115,106) instead hex code.
.myTextColor { color: #C9736A; }
<p style="color:#C9736A">This sample text font color is #C9736A.</p>
This text font color is #C9736A.
.myBgColor { background-color: #C9736A; }
<div style="background-color:#C9736A">Inner text</div>
This div background color is #C9736A.
.myBorderColor { border: 1px solid #C9736A; }
<div style="border:3px solid #C9736A">Div</div>
This div border color is #C9736A.
.myOpacity80 { color: #C9736A; opacity: 0.8; }
<p style="color:#C9736A;opacity:0.8;">80%</p>
Text with #C9736A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9736A;}
<p style="text-shadow: 3px 3px 1px #C9736A">Text here.</p>
This text has shadow with #C9736A color.
.textShadow {text-shadow: 3px 3px 1px #C9736A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9736A, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9736A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9736A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9736A, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9736A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9736A; -webkit-box-shadow: 1px 1px 3px 2px #C9736A; box-shadow: 1px 1px 3px 2px #C9736A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9736A; -webkit-box-shadow: 1px 1px 3px 2px #C9736A; box-shadow:1px 1px 3px 2px #C9736A;">
Div content here</div>
This text has color #C9736A on black background.
This text has color #C9736A on white background.
This text has black color on #C9736A background.
This text has white color on #C9736A background.