HEX: #C48021
RGB: (196,128,33)
#C48021 contains mainly red color. Web safe color of #C48021 is #CC6633 (or #C63).
#C48021 color RGB value is (196,128,33).
RGB: (196,128,33) (77%,50%,13%)
R 196 of 255 = 77%
G 128 of 255 = 50%
B 33 of 255 = 13%
R + G + B ~ 47%. #C48021 is middle color (not dark and not light).
R + G + B =
196 + 128 + 33 = 357 (100%)
R 196 of 357 ~ 54.9%
G 128 of 357 ~ 35.85%
B 33 of 357 ~ 9.24%
#C48021 color CMYK value is (0,35,83,23).
CMYK: (0,35,83,23) C0M35Y83K23 (0%,35%,83%,23%) (0.00/0.35/0.83/0.23)
C4 | 80 | 21 | |
---|---|---|---|
RGB | 196 | 128 | 33 |
HSL | 35° | 71.18% | 44.90% |
HSB/HSV | 35° | 83.16% | 76.86% |
CMYK | 0.00% | 34.69% | 83.16% |
23.14% |
HEX | C4 | 80 | 21 |
Decimal | 196 | 128 | 33 |
Binary | 11000100 | 10000000 | 100001 |
Octal | 304 | 200 | 41 |
Examples of css and html codes for elements with #C48021 color. Also use rgb(196,128,33) instead hex code.
.myTextColor { color: #C48021; }
<p style="color:#C48021">This sample text font color is #C48021.</p>
This text font color is #C48021.
.myBgColor { background-color: #C48021; }
<div style="background-color:#C48021">Inner text</div>
This div background color is #C48021.
.myBorderColor { border: 1px solid #C48021; }
<div style="border:3px solid #C48021">Div</div>
This div border color is #C48021.
.myOpacity80 { color: #C48021; opacity: 0.8; }
<p style="color:#C48021;opacity:0.8;">80%</p>
Text with #C48021 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C48021;}
<p style="text-shadow: 3px 3px 1px #C48021">Text here.</p>
This text has shadow with #C48021 color.
.textShadow {text-shadow: 3px 3px 1px #C48021, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C48021, 5px 5px 20px red">Text here.</p>
This text has shadow with #C48021 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C48021, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C48021, Direction=45, Strength=4)">Text</p>
This text has shadow with #C48021 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C48021; -webkit-box-shadow: 1px 1px 3px 2px #C48021; box-shadow: 1px 1px 3px 2px #C48021; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C48021; -webkit-box-shadow: 1px 1px 3px 2px #C48021; box-shadow:1px 1px 3px 2px #C48021;">
Div content here</div>
This text has color #C48021 on black background.
This text has color #C48021 on white background.
This text has black color on #C48021 background.
This text has white color on #C48021 background.