HEX: #A9241C
RGB: (169,36,28)
#A9241C contains mainly red color. Web safe color of #A9241C is #993333 (or #933).
#A9241C color RGB value is (169,36,28).
RGB: (169,36,28) (66%,14%,11%)
R 169 of 255 = 66%
G 36 of 255 = 14%
B 28 of 255 = 11%
R + G + B ~ 30%. #A9241C is quite dark color.
R + G + B =
169 + 36 + 28 = 233 (100%)
R 169 of 233 ~ 72.53%
G 36 of 233 ~ 15.45%
B 28 of 233 ~ 12.02%
#A9241C color CMYK value is (0,79,83,34).
CMYK: (0,79,83,34) C0M79Y83K34 (0%,79%,83%,34%) (0.00/0.79/0.83/0.34)
A9 | 24 | 1C | |
---|---|---|---|
RGB | 169 | 36 | 28 |
HSL | 3° | 71.57% | 38.63% |
HSB/HSV | 3° | 83.43% | 66.27% |
CMYK | 0.00% | 78.70% | 83.43% |
33.73% |
HEX | A9 | 24 | 1C |
Decimal | 169 | 36 | 28 |
Binary | 10101001 | 100100 | 11100 |
Octal | 251 | 44 | 34 |
Examples of css and html codes for elements with #A9241C color. Also use rgb(169,36,28) instead hex code.
.myTextColor { color: #A9241C; }
<p style="color:#A9241C">This sample text font color is #A9241C.</p>
This text font color is #A9241C.
.myBgColor { background-color: #A9241C; }
<div style="background-color:#A9241C">Inner text</div>
This div background color is #A9241C.
.myBorderColor { border: 1px solid #A9241C; }
<div style="border:3px solid #A9241C">Div</div>
This div border color is #A9241C.
.myOpacity80 { color: #A9241C; opacity: 0.8; }
<p style="color:#A9241C;opacity:0.8;">80%</p>
Text with #A9241C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9241C;}
<p style="text-shadow: 3px 3px 1px #A9241C">Text here.</p>
This text has shadow with #A9241C color.
.textShadow {text-shadow: 3px 3px 1px #A9241C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9241C, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9241C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9241C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9241C, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9241C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9241C; -webkit-box-shadow: 1px 1px 3px 2px #A9241C; box-shadow: 1px 1px 3px 2px #A9241C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9241C; -webkit-box-shadow: 1px 1px 3px 2px #A9241C; box-shadow:1px 1px 3px 2px #A9241C;">
Div content here</div>
This text has color #A9241C on black background.
This text has color #A9241C on white background.
This text has black color on #A9241C background.
This text has white color on #A9241C background.