HEX: #827AD5
RGB: (130,122,213)
#827AD5 contains mainly blue color. Web safe color of #827AD5 is #9966CC (or #96C).
#827AD5 color RGB value is (130,122,213).
RGB: (130,122,213) (51%,48%,84%)
R 130 of 255 = 51%
G 122 of 255 = 48%
B 213 of 255 = 84%
R + G + B ~ 61%. #827AD5 is quite light color.
R + G + B =
130 + 122 + 213 = 465 (100%)
R 130 of 465 ~ 27.96%
G 122 of 465 ~ 26.24%
B 213 of 465 ~ 45.81%
#827AD5 color CMYK value is (39,43,0,16).
CMYK: (39,43,0,16) C39M43Y0K16 (39%,43%,0%,16%) (0.39/0.43/0.00/0.16)
82 | 7A | D5 | |
---|---|---|---|
RGB | 130 | 122 | 213 |
HSL | 245° | 52.00% | 65.69% |
HSB/HSV | 245° | 42.72% | 83.53% |
CMYK | 38.97% | 42.72% | 0.00% |
16.47% |
HEX | 82 | 7A | D5 |
Decimal | 130 | 122 | 213 |
Binary | 10000010 | 1111010 | 11010101 |
Octal | 202 | 172 | 325 |
Examples of css and html codes for elements with #827AD5 color. Also use rgb(130,122,213) instead hex code.
.myTextColor { color: #827AD5; }
<p style="color:#827AD5">This sample text font color is #827AD5.</p>
This text font color is #827AD5.
.myBgColor { background-color: #827AD5; }
<div style="background-color:#827AD5">Inner text</div>
This div background color is #827AD5.
.myBorderColor { border: 1px solid #827AD5; }
<div style="border:3px solid #827AD5">Div</div>
This div border color is #827AD5.
.myOpacity80 { color: #827AD5; opacity: 0.8; }
<p style="color:#827AD5;opacity:0.8;">80%</p>
Text with #827AD5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #827AD5;}
<p style="text-shadow: 3px 3px 1px #827AD5">Text here.</p>
This text has shadow with #827AD5 color.
.textShadow {text-shadow: 3px 3px 1px #827AD5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #827AD5, 5px 5px 20px red">Text here.</p>
This text has shadow with #827AD5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#827AD5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#827AD5, Direction=45, Strength=4)">Text</p>
This text has shadow with #827AD5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #827AD5; -webkit-box-shadow: 1px 1px 3px 2px #827AD5; box-shadow: 1px 1px 3px 2px #827AD5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #827AD5; -webkit-box-shadow: 1px 1px 3px 2px #827AD5; box-shadow:1px 1px 3px 2px #827AD5;">
Div content here</div>
This text has color #827AD5 on black background.
This text has color #827AD5 on white background.
This text has black color on #827AD5 background.
This text has white color on #827AD5 background.