HEX: #A71C25
RGB: (167,28,37)
#A71C25 contains mainly red color. Web safe color of #A71C25 is #993333 (or #933).
#A71C25 color RGB value is (167,28,37).
RGB: (167,28,37) (65%,11%,15%)
R 167 of 255 = 65%
G 28 of 255 = 11%
B 37 of 255 = 15%
R + G + B ~ 30%. #A71C25 is quite dark color.
R + G + B =
167 + 28 + 37 = 232 (100%)
R 167 of 232 ~ 71.98%
G 28 of 232 ~ 12.07%
B 37 of 232 ~ 15.95%
#A71C25 color CMYK value is (0,83,78,35).
CMYK: (0,83,78,35) C0M83Y78K35 (0%,83%,78%,35%) (0.00/0.83/0.78/0.35)
A7 | 1C | 25 | |
---|---|---|---|
RGB | 167 | 28 | 37 |
HSL | 356° | 71.28% | 38.24% |
HSB/HSV | 356° | 83.23% | 65.49% |
CMYK | 0.00% | 83.23% | 77.84% |
34.51% |
HEX | A7 | 1C | 25 |
Decimal | 167 | 28 | 37 |
Binary | 10100111 | 11100 | 100101 |
Octal | 247 | 34 | 45 |
Examples of css and html codes for elements with #A71C25 color. Also use rgb(167,28,37) instead hex code.
.myTextColor { color: #A71C25; }
<p style="color:#A71C25">This sample text font color is #A71C25.</p>
This text font color is #A71C25.
.myBgColor { background-color: #A71C25; }
<div style="background-color:#A71C25">Inner text</div>
This div background color is #A71C25.
.myBorderColor { border: 1px solid #A71C25; }
<div style="border:3px solid #A71C25">Div</div>
This div border color is #A71C25.
.myOpacity80 { color: #A71C25; opacity: 0.8; }
<p style="color:#A71C25;opacity:0.8;">80%</p>
Text with #A71C25 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A71C25;}
<p style="text-shadow: 3px 3px 1px #A71C25">Text here.</p>
This text has shadow with #A71C25 color.
.textShadow {text-shadow: 3px 3px 1px #A71C25, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A71C25, 5px 5px 20px red">Text here.</p>
This text has shadow with #A71C25 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A71C25, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A71C25, Direction=45, Strength=4)">Text</p>
This text has shadow with #A71C25 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A71C25; -webkit-box-shadow: 1px 1px 3px 2px #A71C25; box-shadow: 1px 1px 3px 2px #A71C25; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A71C25; -webkit-box-shadow: 1px 1px 3px 2px #A71C25; box-shadow:1px 1px 3px 2px #A71C25;">
Div content here</div>
This text has color #A71C25 on black background.
This text has color #A71C25 on white background.
This text has black color on #A71C25 background.
This text has white color on #A71C25 background.