HEX: #A683AD
RGB: (166,131,173)
#A683AD contains red, green and blue colors in about the same proportion. Web safe color of #A683AD is #999999 (or #999).
#A683AD color RGB value is (166,131,173).
RGB: (166,131,173) (65%,51%,68%)
R 166 of 255 = 65%
G 131 of 255 = 51%
B 173 of 255 = 68%
R + G + B ~ 61%. #A683AD is quite light color.
R + G + B =
166 + 131 + 173 = 470 (100%)
R 166 of 470 ~ 35.32%
G 131 of 470 ~ 27.87%
B 173 of 470 ~ 36.81%
#A683AD color CMYK value is (4,24,0,32).
CMYK: (4,24,0,32) C4M24Y0K32 (4%,24%,0%,32%) (0.04/0.24/0.00/0.32)
A6 | 83 | AD | |
---|---|---|---|
RGB | 166 | 131 | 173 |
HSL | 290° | 20.39% | 59.61% |
HSB/HSV | 290° | 24.28% | 67.84% |
CMYK | 4.05% | 24.28% | 0.00% |
32.16% |
HEX | A6 | 83 | AD |
Decimal | 166 | 131 | 173 |
Binary | 10100110 | 10000011 | 10101101 |
Octal | 246 | 203 | 255 |
Examples of css and html codes for elements with #A683AD color. Also use rgb(166,131,173) instead hex code.
.myTextColor { color: #A683AD; }
<p style="color:#A683AD">This sample text font color is #A683AD.</p>
This text font color is #A683AD.
.myBgColor { background-color: #A683AD; }
<div style="background-color:#A683AD">Inner text</div>
This div background color is #A683AD.
.myBorderColor { border: 1px solid #A683AD; }
<div style="border:3px solid #A683AD">Div</div>
This div border color is #A683AD.
.myOpacity80 { color: #A683AD; opacity: 0.8; }
<p style="color:#A683AD;opacity:0.8;">80%</p>
Text with #A683AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A683AD;}
<p style="text-shadow: 3px 3px 1px #A683AD">Text here.</p>
This text has shadow with #A683AD color.
.textShadow {text-shadow: 3px 3px 1px #A683AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A683AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A683AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A683AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A683AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A683AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A683AD; -webkit-box-shadow: 1px 1px 3px 2px #A683AD; box-shadow: 1px 1px 3px 2px #A683AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A683AD; -webkit-box-shadow: 1px 1px 3px 2px #A683AD; box-shadow:1px 1px 3px 2px #A683AD;">
Div content here</div>
This text has color #A683AD on black background.
This text has color #A683AD on white background.
This text has black color on #A683AD background.
This text has white color on #A683AD background.