HEX: #C97712
RGB: (201,119,18)
#C97712 contains mainly red color. Web safe color of #C97712 is #CC6600 (or #C60).
#C97712 color RGB value is (201,119,18).
RGB: (201,119,18) (79%,47%,7%)
R 201 of 255 = 79%
G 119 of 255 = 47%
B 18 of 255 = 7%
R + G + B ~ 44%. #C97712 is middle color (not dark and not light).
R + G + B =
201 + 119 + 18 = 338 (100%)
R 201 of 338 ~ 59.47%
G 119 of 338 ~ 35.21%
B 18 of 338 ~ 5.33%
#C97712 color CMYK value is (0,41,91,21).
CMYK: (0,41,91,21) C0M41Y91K21 (0%,41%,91%,21%) (0.00/0.41/0.91/0.21)
C9 | 77 | 12 | |
---|---|---|---|
RGB | 201 | 119 | 18 |
HSL | 33° | 83.56% | 42.94% |
HSB/HSV | 33° | 91.04% | 78.82% |
CMYK | 0.00% | 40.80% | 91.04% |
21.18% |
HEX | C9 | 77 | 12 |
Decimal | 201 | 119 | 18 |
Binary | 11001001 | 1110111 | 10010 |
Octal | 311 | 167 | 22 |
Examples of css and html codes for elements with #C97712 color. Also use rgb(201,119,18) instead hex code.
.myTextColor { color: #C97712; }
<p style="color:#C97712">This sample text font color is #C97712.</p>
This text font color is #C97712.
.myBgColor { background-color: #C97712; }
<div style="background-color:#C97712">Inner text</div>
This div background color is #C97712.
.myBorderColor { border: 1px solid #C97712; }
<div style="border:3px solid #C97712">Div</div>
This div border color is #C97712.
.myOpacity80 { color: #C97712; opacity: 0.8; }
<p style="color:#C97712;opacity:0.8;">80%</p>
Text with #C97712 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C97712;}
<p style="text-shadow: 3px 3px 1px #C97712">Text here.</p>
This text has shadow with #C97712 color.
.textShadow {text-shadow: 3px 3px 1px #C97712, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C97712, 5px 5px 20px red">Text here.</p>
This text has shadow with #C97712 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C97712, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C97712, Direction=45, Strength=4)">Text</p>
This text has shadow with #C97712 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C97712; -webkit-box-shadow: 1px 1px 3px 2px #C97712; box-shadow: 1px 1px 3px 2px #C97712; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C97712; -webkit-box-shadow: 1px 1px 3px 2px #C97712; box-shadow:1px 1px 3px 2px #C97712;">
Div content here</div>
This text has color #C97712 on black background.
This text has color #C97712 on white background.
This text has black color on #C97712 background.
This text has white color on #C97712 background.