HEX: #C4995D
RGB: (196,153,93)
#C4995D contains mainly red and green colors. Web safe color of #C4995D is #CC9966 (or #C96).
#C4995D color RGB value is (196,153,93).
RGB: (196,153,93) (77%,60%,36%)
R 196 of 255 = 77%
G 153 of 255 = 60%
B 93 of 255 = 36%
R + G + B ~ 58%. #C4995D is middle color (not dark and not light).
R + G + B =
196 + 153 + 93 = 442 (100%)
R 196 of 442 ~ 44.34%
G 153 of 442 ~ 34.62%
B 93 of 442 ~ 21.04%
#C4995D color CMYK value is (0,22,53,23).
CMYK: (0,22,53,23) C0M22Y53K23 (0%,22%,53%,23%) (0.00/0.22/0.53/0.23)
C4 | 99 | 5D | |
---|---|---|---|
RGB | 196 | 153 | 93 |
HSL | 35° | 46.61% | 56.67% |
HSB/HSV | 35° | 52.55% | 76.86% |
CMYK | 0.00% | 21.94% | 52.55% |
23.14% |
HEX | C4 | 99 | 5D |
Decimal | 196 | 153 | 93 |
Binary | 11000100 | 10011001 | 1011101 |
Octal | 304 | 231 | 135 |
Examples of css and html codes for elements with #C4995D color. Also use rgb(196,153,93) instead hex code.
.myTextColor { color: #C4995D; }
<p style="color:#C4995D">This sample text font color is #C4995D.</p>
This text font color is #C4995D.
.myBgColor { background-color: #C4995D; }
<div style="background-color:#C4995D">Inner text</div>
This div background color is #C4995D.
.myBorderColor { border: 1px solid #C4995D; }
<div style="border:3px solid #C4995D">Div</div>
This div border color is #C4995D.
.myOpacity80 { color: #C4995D; opacity: 0.8; }
<p style="color:#C4995D;opacity:0.8;">80%</p>
Text with #C4995D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4995D;}
<p style="text-shadow: 3px 3px 1px #C4995D">Text here.</p>
This text has shadow with #C4995D color.
.textShadow {text-shadow: 3px 3px 1px #C4995D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4995D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4995D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4995D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4995D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4995D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4995D; -webkit-box-shadow: 1px 1px 3px 2px #C4995D; box-shadow: 1px 1px 3px 2px #C4995D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4995D; -webkit-box-shadow: 1px 1px 3px 2px #C4995D; box-shadow:1px 1px 3px 2px #C4995D;">
Div content here</div>
This text has color #C4995D on black background.
This text has color #C4995D on white background.
This text has black color on #C4995D background.
This text has white color on #C4995D background.