HEX: #857DAD
RGB: (133,125,173)
#857DAD contains red, green and blue colors in about the same proportion. Web safe color of #857DAD is #996699 (or #969).
#857DAD color RGB value is (133,125,173).
RGB: (133,125,173) (52%,49%,68%)
R 133 of 255 = 52%
G 125 of 255 = 49%
B 173 of 255 = 68%
R + G + B ~ 56%. #857DAD is middle color (not dark and not light).
R + G + B =
133 + 125 + 173 = 431 (100%)
R 133 of 431 ~ 30.86%
G 125 of 431 ~ 29%
B 173 of 431 ~ 40.14%
#857DAD color CMYK value is (23,28,0,32).
CMYK: (23,28,0,32) C23M28Y0K32 (23%,28%,0%,32%) (0.23/0.28/0.00/0.32)
85 | 7D | AD | |
---|---|---|---|
RGB | 133 | 125 | 173 |
HSL | 250° | 22.64% | 58.43% |
HSB/HSV | 250° | 27.75% | 67.84% |
CMYK | 23.12% | 27.75% | 0.00% |
32.16% |
HEX | 85 | 7D | AD |
Decimal | 133 | 125 | 173 |
Binary | 10000101 | 1111101 | 10101101 |
Octal | 205 | 175 | 255 |
Examples of css and html codes for elements with #857DAD color. Also use rgb(133,125,173) instead hex code.
.myTextColor { color: #857DAD; }
<p style="color:#857DAD">This sample text font color is #857DAD.</p>
This text font color is #857DAD.
.myBgColor { background-color: #857DAD; }
<div style="background-color:#857DAD">Inner text</div>
This div background color is #857DAD.
.myBorderColor { border: 1px solid #857DAD; }
<div style="border:3px solid #857DAD">Div</div>
This div border color is #857DAD.
.myOpacity80 { color: #857DAD; opacity: 0.8; }
<p style="color:#857DAD;opacity:0.8;">80%</p>
Text with #857DAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #857DAD;}
<p style="text-shadow: 3px 3px 1px #857DAD">Text here.</p>
This text has shadow with #857DAD color.
.textShadow {text-shadow: 3px 3px 1px #857DAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #857DAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #857DAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#857DAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#857DAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #857DAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #857DAD; -webkit-box-shadow: 1px 1px 3px 2px #857DAD; box-shadow: 1px 1px 3px 2px #857DAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #857DAD; -webkit-box-shadow: 1px 1px 3px 2px #857DAD; box-shadow:1px 1px 3px 2px #857DAD;">
Div content here</div>
This text has color #857DAD on black background.
This text has color #857DAD on white background.
This text has black color on #857DAD background.
This text has white color on #857DAD background.