HEX: #827CFB
RGB: (130,124,251)
#827CFB contains mainly blue color. Web safe color of #827CFB is #9966FF (or #96F).
#827CFB color RGB value is (130,124,251).
RGB: (130,124,251) (51%,49%,98%)
R 130 of 255 = 51%
G 124 of 255 = 49%
B 251 of 255 = 98%
R + G + B ~ 66%. #827CFB is quite light color.
R + G + B =
130 + 124 + 251 = 505 (100%)
R 130 of 505 ~ 25.74%
G 124 of 505 ~ 24.55%
B 251 of 505 ~ 49.7%
#827CFB color CMYK value is (48,51,0,2).
CMYK: (48,51,0,2) C48M51Y0K2 (48%,51%,0%,2%) (0.48/0.51/0.00/0.02)
82 | 7C | FB | |
---|---|---|---|
RGB | 130 | 124 | 251 |
HSL | 243° | 94.07% | 73.53% |
HSB/HSV | 243° | 50.60% | 98.43% |
CMYK | 48.21% | 50.60% | 0.00% |
1.57% |
HEX | 82 | 7C | FB |
Decimal | 130 | 124 | 251 |
Binary | 10000010 | 1111100 | 11111011 |
Octal | 202 | 174 | 373 |
Examples of css and html codes for elements with #827CFB color. Also use rgb(130,124,251) instead hex code.
.myTextColor { color: #827CFB; }
<p style="color:#827CFB">This sample text font color is #827CFB.</p>
This text font color is #827CFB.
.myBgColor { background-color: #827CFB; }
<div style="background-color:#827CFB">Inner text</div>
This div background color is #827CFB.
.myBorderColor { border: 1px solid #827CFB; }
<div style="border:3px solid #827CFB">Div</div>
This div border color is #827CFB.
.myOpacity80 { color: #827CFB; opacity: 0.8; }
<p style="color:#827CFB;opacity:0.8;">80%</p>
Text with #827CFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #827CFB;}
<p style="text-shadow: 3px 3px 1px #827CFB">Text here.</p>
This text has shadow with #827CFB color.
.textShadow {text-shadow: 3px 3px 1px #827CFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #827CFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #827CFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#827CFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#827CFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #827CFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #827CFB; -webkit-box-shadow: 1px 1px 3px 2px #827CFB; box-shadow: 1px 1px 3px 2px #827CFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #827CFB; -webkit-box-shadow: 1px 1px 3px 2px #827CFB; box-shadow:1px 1px 3px 2px #827CFB;">
Div content here</div>
This text has color #827CFB on black background.
This text has color #827CFB on white background.
This text has black color on #827CFB background.
This text has white color on #827CFB background.