HEX: #A48E9D
RGB: (164,142,157)
#A48E9D contains red, green and blue colors in about the same proportion. Web safe color of #A48E9D is #999999 (or #999).
#A48E9D color RGB value is (164,142,157).
RGB: (164,142,157) (64%,56%,62%)
R 164 of 255 = 64%
G 142 of 255 = 56%
B 157 of 255 = 62%
R + G + B ~ 61%. #A48E9D is quite light color.
R + G + B =
164 + 142 + 157 = 463 (100%)
R 164 of 463 ~ 35.42%
G 142 of 463 ~ 30.67%
B 157 of 463 ~ 33.91%
#A48E9D color CMYK value is (0,13,4,36).
CMYK: (0,13,4,36) C0M13Y4K36 (0%,13%,4%,36%) (0.00/0.13/0.04/0.36)
A4 | 8E | 9D | |
---|---|---|---|
RGB | 164 | 142 | 157 |
HSL | 319° | 10.78% | 60.00% |
HSB/HSV | 319° | 13.41% | 64.31% |
CMYK | 0.00% | 13.41% | 4.27% |
35.69% |
HEX | A4 | 8E | 9D |
Decimal | 164 | 142 | 157 |
Binary | 10100100 | 10001110 | 10011101 |
Octal | 244 | 216 | 235 |
Examples of css and html codes for elements with #A48E9D color. Also use rgb(164,142,157) instead hex code.
.myTextColor { color: #A48E9D; }
<p style="color:#A48E9D">This sample text font color is #A48E9D.</p>
This text font color is #A48E9D.
.myBgColor { background-color: #A48E9D; }
<div style="background-color:#A48E9D">Inner text</div>
This div background color is #A48E9D.
.myBorderColor { border: 1px solid #A48E9D; }
<div style="border:3px solid #A48E9D">Div</div>
This div border color is #A48E9D.
.myOpacity80 { color: #A48E9D; opacity: 0.8; }
<p style="color:#A48E9D;opacity:0.8;">80%</p>
Text with #A48E9D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A48E9D;}
<p style="text-shadow: 3px 3px 1px #A48E9D">Text here.</p>
This text has shadow with #A48E9D color.
.textShadow {text-shadow: 3px 3px 1px #A48E9D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A48E9D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A48E9D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A48E9D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A48E9D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A48E9D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A48E9D; -webkit-box-shadow: 1px 1px 3px 2px #A48E9D; box-shadow: 1px 1px 3px 2px #A48E9D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A48E9D; -webkit-box-shadow: 1px 1px 3px 2px #A48E9D; box-shadow:1px 1px 3px 2px #A48E9D;">
Div content here</div>
This text has color #A48E9D on black background.
This text has color #A48E9D on white background.
This text has black color on #A48E9D background.
This text has white color on #A48E9D background.