HEX: #820ABE
RGB: (130,10,190)
#820ABE contains mainly blue color. Web safe color of #820ABE is #9900CC (or #90C).
#820ABE color RGB value is (130,10,190).
RGB: (130,10,190) (51%,4%,75%)
R 130 of 255 = 51%
G 10 of 255 = 4%
B 190 of 255 = 75%
R + G + B ~ 43%. #820ABE is middle color (not dark and not light).
R + G + B =
130 + 10 + 190 = 330 (100%)
R 130 of 330 ~ 39.39%
G 10 of 330 ~ 3.03%
B 190 of 330 ~ 57.58%
#820ABE color CMYK value is (32,95,0,25).
CMYK: (32,95,0,25) C32M95Y0K25 (32%,95%,0%,25%) (0.32/0.95/0.00/0.25)
82 | 0A | BE | |
---|---|---|---|
RGB | 130 | 10 | 190 |
HSL | 280° | 90.00% | 39.22% |
HSB/HSV | 280° | 94.74% | 74.51% |
CMYK | 31.58% | 94.74% | 0.00% |
25.49% |
HEX | 82 | 0A | BE |
Decimal | 130 | 10 | 190 |
Binary | 10000010 | 1010 | 10111110 |
Octal | 202 | 12 | 276 |
Examples of css and html codes for elements with #820ABE color. Also use rgb(130,10,190) instead hex code.
.myTextColor { color: #820ABE; }
<p style="color:#820ABE">This sample text font color is #820ABE.</p>
This text font color is #820ABE.
.myBgColor { background-color: #820ABE; }
<div style="background-color:#820ABE">Inner text</div>
This div background color is #820ABE.
.myBorderColor { border: 1px solid #820ABE; }
<div style="border:3px solid #820ABE">Div</div>
This div border color is #820ABE.
.myOpacity80 { color: #820ABE; opacity: 0.8; }
<p style="color:#820ABE;opacity:0.8;">80%</p>
Text with #820ABE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #820ABE;}
<p style="text-shadow: 3px 3px 1px #820ABE">Text here.</p>
This text has shadow with #820ABE color.
.textShadow {text-shadow: 3px 3px 1px #820ABE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #820ABE, 5px 5px 20px red">Text here.</p>
This text has shadow with #820ABE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#820ABE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#820ABE, Direction=45, Strength=4)">Text</p>
This text has shadow with #820ABE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #820ABE; -webkit-box-shadow: 1px 1px 3px 2px #820ABE; box-shadow: 1px 1px 3px 2px #820ABE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #820ABE; -webkit-box-shadow: 1px 1px 3px 2px #820ABE; box-shadow:1px 1px 3px 2px #820ABE;">
Div content here</div>
This text has color #820ABE on black background.
This text has color #820ABE on white background.
This text has black color on #820ABE background.
This text has white color on #820ABE background.