HEX: #C5795F
RGB: (197,121,95)
#C5795F contains mainly red color. Web safe color of #C5795F is #CC6666 (or #C66).
#C5795F color RGB value is (197,121,95).
RGB: (197,121,95) (77%,47%,37%)
R 197 of 255 = 77%
G 121 of 255 = 47%
B 95 of 255 = 37%
R + G + B ~ 54%. #C5795F is middle color (not dark and not light).
R + G + B =
197 + 121 + 95 = 413 (100%)
R 197 of 413 ~ 47.7%
G 121 of 413 ~ 29.3%
B 95 of 413 ~ 23%
#C5795F color CMYK value is (0,39,52,23).
CMYK: (0,39,52,23) C0M39Y52K23 (0%,39%,52%,23%) (0.00/0.39/0.52/0.23)
C5 | 79 | 5F | |
---|---|---|---|
RGB | 197 | 121 | 95 |
HSL | 15° | 46.79% | 57.25% |
HSB/HSV | 15° | 51.78% | 77.25% |
CMYK | 0.00% | 38.58% | 51.78% |
22.75% |
HEX | C5 | 79 | 5F |
Decimal | 197 | 121 | 95 |
Binary | 11000101 | 1111001 | 1011111 |
Octal | 305 | 171 | 137 |
Examples of css and html codes for elements with #C5795F color. Also use rgb(197,121,95) instead hex code.
.myTextColor { color: #C5795F; }
<p style="color:#C5795F">This sample text font color is #C5795F.</p>
This text font color is #C5795F.
.myBgColor { background-color: #C5795F; }
<div style="background-color:#C5795F">Inner text</div>
This div background color is #C5795F.
.myBorderColor { border: 1px solid #C5795F; }
<div style="border:3px solid #C5795F">Div</div>
This div border color is #C5795F.
.myOpacity80 { color: #C5795F; opacity: 0.8; }
<p style="color:#C5795F;opacity:0.8;">80%</p>
Text with #C5795F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5795F;}
<p style="text-shadow: 3px 3px 1px #C5795F">Text here.</p>
This text has shadow with #C5795F color.
.textShadow {text-shadow: 3px 3px 1px #C5795F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5795F, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5795F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5795F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5795F, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5795F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5795F; -webkit-box-shadow: 1px 1px 3px 2px #C5795F; box-shadow: 1px 1px 3px 2px #C5795F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5795F; -webkit-box-shadow: 1px 1px 3px 2px #C5795F; box-shadow:1px 1px 3px 2px #C5795F;">
Div content here</div>
This text has color #C5795F on black background.
This text has color #C5795F on white background.
This text has black color on #C5795F background.
This text has white color on #C5795F background.