HEX: #A3617D
RGB: (163,97,125)
#A3617D contains mainly red and blue colors. Web safe color of #A3617D is #996666 (or #966).
#A3617D color RGB value is (163,97,125).
RGB: (163,97,125) (64%,38%,49%)
R 163 of 255 = 64%
G 97 of 255 = 38%
B 125 of 255 = 49%
R + G + B ~ 50%. #A3617D is middle color (not dark and not light).
R + G + B =
163 + 97 + 125 = 385 (100%)
R 163 of 385 ~ 42.34%
G 97 of 385 ~ 25.19%
B 125 of 385 ~ 32.47%
#A3617D color CMYK value is (0,40,23,36).
CMYK: (0,40,23,36) C0M40Y23K36 (0%,40%,23%,36%) (0.00/0.40/0.23/0.36)
A3 | 61 | 7D | |
---|---|---|---|
RGB | 163 | 97 | 125 |
HSL | 335° | 26.40% | 50.98% |
HSB/HSV | 335° | 40.49% | 63.92% |
CMYK | 0.00% | 40.49% | 23.31% |
36.08% |
HEX | A3 | 61 | 7D |
Decimal | 163 | 97 | 125 |
Binary | 10100011 | 1100001 | 1111101 |
Octal | 243 | 141 | 175 |
Examples of css and html codes for elements with #A3617D color. Also use rgb(163,97,125) instead hex code.
.myTextColor { color: #A3617D; }
<p style="color:#A3617D">This sample text font color is #A3617D.</p>
This text font color is #A3617D.
.myBgColor { background-color: #A3617D; }
<div style="background-color:#A3617D">Inner text</div>
This div background color is #A3617D.
.myBorderColor { border: 1px solid #A3617D; }
<div style="border:3px solid #A3617D">Div</div>
This div border color is #A3617D.
.myOpacity80 { color: #A3617D; opacity: 0.8; }
<p style="color:#A3617D;opacity:0.8;">80%</p>
Text with #A3617D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A3617D;}
<p style="text-shadow: 3px 3px 1px #A3617D">Text here.</p>
This text has shadow with #A3617D color.
.textShadow {text-shadow: 3px 3px 1px #A3617D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A3617D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A3617D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A3617D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A3617D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A3617D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A3617D; -webkit-box-shadow: 1px 1px 3px 2px #A3617D; box-shadow: 1px 1px 3px 2px #A3617D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A3617D; -webkit-box-shadow: 1px 1px 3px 2px #A3617D; box-shadow:1px 1px 3px 2px #A3617D;">
Div content here</div>
This text has color #A3617D on black background.
This text has color #A3617D on white background.
This text has black color on #A3617D background.
This text has white color on #A3617D background.