HEX: #A479AF
RGB: (164,121,175)
#A479AF contains red, green and blue colors in about the same proportion. Web safe color of #A479AF is #996699 (or #969).
#A479AF color RGB value is (164,121,175).
RGB: (164,121,175) (64%,47%,69%)
R 164 of 255 = 64%
G 121 of 255 = 47%
B 175 of 255 = 69%
R + G + B ~ 60%. #A479AF is middle color (not dark and not light).
R + G + B =
164 + 121 + 175 = 460 (100%)
R 164 of 460 ~ 35.65%
G 121 of 460 ~ 26.3%
B 175 of 460 ~ 38.04%
#A479AF color CMYK value is (6,31,0,31).
CMYK: (6,31,0,31) C6M31Y0K31 (6%,31%,0%,31%) (0.06/0.31/0.00/0.31)
A4 | 79 | AF | |
---|---|---|---|
RGB | 164 | 121 | 175 |
HSL | 288° | 25.23% | 58.04% |
HSB/HSV | 288° | 30.86% | 68.63% |
CMYK | 6.29% | 30.86% | 0.00% |
31.37% |
HEX | A4 | 79 | AF |
Decimal | 164 | 121 | 175 |
Binary | 10100100 | 1111001 | 10101111 |
Octal | 244 | 171 | 257 |
Examples of css and html codes for elements with #A479AF color. Also use rgb(164,121,175) instead hex code.
.myTextColor { color: #A479AF; }
<p style="color:#A479AF">This sample text font color is #A479AF.</p>
This text font color is #A479AF.
.myBgColor { background-color: #A479AF; }
<div style="background-color:#A479AF">Inner text</div>
This div background color is #A479AF.
.myBorderColor { border: 1px solid #A479AF; }
<div style="border:3px solid #A479AF">Div</div>
This div border color is #A479AF.
.myOpacity80 { color: #A479AF; opacity: 0.8; }
<p style="color:#A479AF;opacity:0.8;">80%</p>
Text with #A479AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A479AF;}
<p style="text-shadow: 3px 3px 1px #A479AF">Text here.</p>
This text has shadow with #A479AF color.
.textShadow {text-shadow: 3px 3px 1px #A479AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A479AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #A479AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A479AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A479AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #A479AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A479AF; -webkit-box-shadow: 1px 1px 3px 2px #A479AF; box-shadow: 1px 1px 3px 2px #A479AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A479AF; -webkit-box-shadow: 1px 1px 3px 2px #A479AF; box-shadow:1px 1px 3px 2px #A479AF;">
Div content here</div>
This text has color #A479AF on black background.
This text has color #A479AF on white background.
This text has black color on #A479AF background.
This text has white color on #A479AF background.