HEX: #CA741C
RGB: (202,116,28)
#CA741C contains mainly red color. Web safe color of #CA741C is #CC6633 (or #C63).
#CA741C color RGB value is (202,116,28).
RGB: (202,116,28) (79%,45%,11%)
R 202 of 255 = 79%
G 116 of 255 = 45%
B 28 of 255 = 11%
R + G + B ~ 45%. #CA741C is middle color (not dark and not light).
R + G + B =
202 + 116 + 28 = 346 (100%)
R 202 of 346 ~ 58.38%
G 116 of 346 ~ 33.53%
B 28 of 346 ~ 8.09%
#CA741C color CMYK value is (0,43,86,21).
CMYK: (0,43,86,21) C0M43Y86K21 (0%,43%,86%,21%) (0.00/0.43/0.86/0.21)
CA | 74 | 1C | |
---|---|---|---|
RGB | 202 | 116 | 28 |
HSL | 30° | 75.65% | 45.10% |
HSB/HSV | 30° | 86.14% | 79.22% |
CMYK | 0.00% | 42.57% | 86.14% |
20.78% |
HEX | CA | 74 | 1C |
Decimal | 202 | 116 | 28 |
Binary | 11001010 | 1110100 | 11100 |
Octal | 312 | 164 | 34 |
Examples of css and html codes for elements with #CA741C color. Also use rgb(202,116,28) instead hex code.
.myTextColor { color: #CA741C; }
<p style="color:#CA741C">This sample text font color is #CA741C.</p>
This text font color is #CA741C.
.myBgColor { background-color: #CA741C; }
<div style="background-color:#CA741C">Inner text</div>
This div background color is #CA741C.
.myBorderColor { border: 1px solid #CA741C; }
<div style="border:3px solid #CA741C">Div</div>
This div border color is #CA741C.
.myOpacity80 { color: #CA741C; opacity: 0.8; }
<p style="color:#CA741C;opacity:0.8;">80%</p>
Text with #CA741C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CA741C;}
<p style="text-shadow: 3px 3px 1px #CA741C">Text here.</p>
This text has shadow with #CA741C color.
.textShadow {text-shadow: 3px 3px 1px #CA741C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CA741C, 5px 5px 20px red">Text here.</p>
This text has shadow with #CA741C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CA741C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CA741C, Direction=45, Strength=4)">Text</p>
This text has shadow with #CA741C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CA741C; -webkit-box-shadow: 1px 1px 3px 2px #CA741C; box-shadow: 1px 1px 3px 2px #CA741C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CA741C; -webkit-box-shadow: 1px 1px 3px 2px #CA741C; box-shadow:1px 1px 3px 2px #CA741C;">
Div content here</div>
This text has color #CA741C on black background.
This text has color #CA741C on white background.
This text has black color on #CA741C background.
This text has white color on #CA741C background.