HEX: #A598DC
RGB: (165,152,220)
#A598DC contains mainly red and blue colors. Web safe color of #A598DC is #9999CC (or #99C).
#A598DC color RGB value is (165,152,220).
RGB: (165,152,220) (65%,60%,86%)
R 165 of 255 = 65%
G 152 of 255 = 60%
B 220 of 255 = 86%
R + G + B ~ 70%. #A598DC is quite light color.
R + G + B =
165 + 152 + 220 = 537 (100%)
R 165 of 537 ~ 30.73%
G 152 of 537 ~ 28.31%
B 220 of 537 ~ 40.97%
#A598DC color CMYK value is (25,31,0,14).
CMYK: (25,31,0,14) C25M31Y0K14 (25%,31%,0%,14%) (0.25/0.31/0.00/0.14)
A5 | 98 | DC | |
---|---|---|---|
RGB | 165 | 152 | 220 |
HSL | 251° | 49.28% | 72.94% |
HSB/HSV | 251° | 30.91% | 86.27% |
CMYK | 25.00% | 30.91% | 0.00% |
13.73% |
HEX | A5 | 98 | DC |
Decimal | 165 | 152 | 220 |
Binary | 10100101 | 10011000 | 11011100 |
Octal | 245 | 230 | 334 |
Examples of css and html codes for elements with #A598DC color. Also use rgb(165,152,220) instead hex code.
.myTextColor { color: #A598DC; }
<p style="color:#A598DC">This sample text font color is #A598DC.</p>
This text font color is #A598DC.
.myBgColor { background-color: #A598DC; }
<div style="background-color:#A598DC">Inner text</div>
This div background color is #A598DC.
.myBorderColor { border: 1px solid #A598DC; }
<div style="border:3px solid #A598DC">Div</div>
This div border color is #A598DC.
.myOpacity80 { color: #A598DC; opacity: 0.8; }
<p style="color:#A598DC;opacity:0.8;">80%</p>
Text with #A598DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A598DC;}
<p style="text-shadow: 3px 3px 1px #A598DC">Text here.</p>
This text has shadow with #A598DC color.
.textShadow {text-shadow: 3px 3px 1px #A598DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A598DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A598DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A598DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A598DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A598DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A598DC; -webkit-box-shadow: 1px 1px 3px 2px #A598DC; box-shadow: 1px 1px 3px 2px #A598DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A598DC; -webkit-box-shadow: 1px 1px 3px 2px #A598DC; box-shadow:1px 1px 3px 2px #A598DC;">
Div content here</div>
This text has color #A598DC on black background.
This text has color #A598DC on white background.
This text has black color on #A598DC background.
This text has white color on #A598DC background.