HEX: #A380DC
RGB: (163,128,220)
#A380DC contains mainly red and blue colors. Web safe color of #A380DC is #9966CC (or #96C).
#A380DC color RGB value is (163,128,220).
RGB: (163,128,220) (64%,50%,86%)
R 163 of 255 = 64%
G 128 of 255 = 50%
B 220 of 255 = 86%
R + G + B ~ 67%. #A380DC is quite light color.
R + G + B =
163 + 128 + 220 = 511 (100%)
R 163 of 511 ~ 31.9%
G 128 of 511 ~ 25.05%
B 220 of 511 ~ 43.05%
#A380DC color CMYK value is (26,42,0,14).
CMYK: (26,42,0,14) C26M42Y0K14 (26%,42%,0%,14%) (0.26/0.42/0.00/0.14)
A3 | 80 | DC | |
---|---|---|---|
RGB | 163 | 128 | 220 |
HSL | 263° | 56.79% | 68.24% |
HSB/HSV | 263° | 41.82% | 86.27% |
CMYK | 25.91% | 41.82% | 0.00% |
13.73% |
HEX | A3 | 80 | DC |
Decimal | 163 | 128 | 220 |
Binary | 10100011 | 10000000 | 11011100 |
Octal | 243 | 200 | 334 |
Examples of css and html codes for elements with #A380DC color. Also use rgb(163,128,220) instead hex code.
.myTextColor { color: #A380DC; }
<p style="color:#A380DC">This sample text font color is #A380DC.</p>
This text font color is #A380DC.
.myBgColor { background-color: #A380DC; }
<div style="background-color:#A380DC">Inner text</div>
This div background color is #A380DC.
.myBorderColor { border: 1px solid #A380DC; }
<div style="border:3px solid #A380DC">Div</div>
This div border color is #A380DC.
.myOpacity80 { color: #A380DC; opacity: 0.8; }
<p style="color:#A380DC;opacity:0.8;">80%</p>
Text with #A380DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A380DC;}
<p style="text-shadow: 3px 3px 1px #A380DC">Text here.</p>
This text has shadow with #A380DC color.
.textShadow {text-shadow: 3px 3px 1px #A380DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A380DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A380DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A380DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A380DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A380DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A380DC; -webkit-box-shadow: 1px 1px 3px 2px #A380DC; box-shadow: 1px 1px 3px 2px #A380DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A380DC; -webkit-box-shadow: 1px 1px 3px 2px #A380DC; box-shadow:1px 1px 3px 2px #A380DC;">
Div content here</div>
This text has color #A380DC on black background.
This text has color #A380DC on white background.
This text has black color on #A380DC background.
This text has white color on #A380DC background.