HEX: #A8091D
RGB: (168,9,29)
#A8091D contains mainly red color. Web safe color of #A8091D is #990033 (or #903).
#A8091D color RGB value is (168,9,29).
RGB: (168,9,29) (66%,4%,11%)
R 168 of 255 = 66%
G 9 of 255 = 4%
B 29 of 255 = 11%
R + G + B ~ 27%. #A8091D is quite dark color.
R + G + B =
168 + 9 + 29 = 206 (100%)
R 168 of 206 ~ 81.55%
G 9 of 206 ~ 4.37%
B 29 of 206 ~ 14.08%
#A8091D color CMYK value is (0,95,83,34).
CMYK: (0,95,83,34) C0M95Y83K34 (0%,95%,83%,34%) (0.00/0.95/0.83/0.34)
A8 | 09 | 1D | |
---|---|---|---|
RGB | 168 | 9 | 29 |
HSL | 352° | 89.83% | 34.71% |
HSB/HSV | 352° | 94.64% | 65.88% |
CMYK | 0.00% | 94.64% | 82.74% |
34.12% |
HEX | A8 | 09 | 1D |
Decimal | 168 | 9 | 29 |
Binary | 10101000 | 1001 | 11101 |
Octal | 250 | 11 | 35 |
Examples of css and html codes for elements with #A8091D color. Also use rgb(168,9,29) instead hex code.
.myTextColor { color: #A8091D; }
<p style="color:#A8091D">This sample text font color is #A8091D.</p>
This text font color is #A8091D.
.myBgColor { background-color: #A8091D; }
<div style="background-color:#A8091D">Inner text</div>
This div background color is #A8091D.
.myBorderColor { border: 1px solid #A8091D; }
<div style="border:3px solid #A8091D">Div</div>
This div border color is #A8091D.
.myOpacity80 { color: #A8091D; opacity: 0.8; }
<p style="color:#A8091D;opacity:0.8;">80%</p>
Text with #A8091D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A8091D;}
<p style="text-shadow: 3px 3px 1px #A8091D">Text here.</p>
This text has shadow with #A8091D color.
.textShadow {text-shadow: 3px 3px 1px #A8091D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A8091D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A8091D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A8091D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A8091D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A8091D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A8091D; -webkit-box-shadow: 1px 1px 3px 2px #A8091D; box-shadow: 1px 1px 3px 2px #A8091D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A8091D; -webkit-box-shadow: 1px 1px 3px 2px #A8091D; box-shadow:1px 1px 3px 2px #A8091D;">
Div content here</div>
This text has color #A8091D on black background.
This text has color #A8091D on white background.
This text has black color on #A8091D background.
This text has white color on #A8091D background.