HEX: #A598DA
RGB: (165,152,218)
#A598DA contains mainly red and blue colors. Web safe color of #A598DA is #9999CC (or #99C).
#A598DA color RGB value is (165,152,218).
RGB: (165,152,218) (65%,60%,85%)
R 165 of 255 = 65%
G 152 of 255 = 60%
B 218 of 255 = 85%
R + G + B ~ 70%. #A598DA is quite light color.
R + G + B =
165 + 152 + 218 = 535 (100%)
R 165 of 535 ~ 30.84%
G 152 of 535 ~ 28.41%
B 218 of 535 ~ 40.75%
#A598DA color CMYK value is (24,30,0,15).
CMYK: (24,30,0,15) C24M30Y0K15 (24%,30%,0%,15%) (0.24/0.30/0.00/0.15)
A5 | 98 | DA | |
---|---|---|---|
RGB | 165 | 152 | 218 |
HSL | 252° | 47.14% | 72.55% |
HSB/HSV | 252° | 30.28% | 85.49% |
CMYK | 24.31% | 30.28% | 0.00% |
14.51% |
HEX | A5 | 98 | DA |
Decimal | 165 | 152 | 218 |
Binary | 10100101 | 10011000 | 11011010 |
Octal | 245 | 230 | 332 |
Examples of css and html codes for elements with #A598DA color. Also use rgb(165,152,218) instead hex code.
.myTextColor { color: #A598DA; }
<p style="color:#A598DA">This sample text font color is #A598DA.</p>
This text font color is #A598DA.
.myBgColor { background-color: #A598DA; }
<div style="background-color:#A598DA">Inner text</div>
This div background color is #A598DA.
.myBorderColor { border: 1px solid #A598DA; }
<div style="border:3px solid #A598DA">Div</div>
This div border color is #A598DA.
.myOpacity80 { color: #A598DA; opacity: 0.8; }
<p style="color:#A598DA;opacity:0.8;">80%</p>
Text with #A598DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A598DA;}
<p style="text-shadow: 3px 3px 1px #A598DA">Text here.</p>
This text has shadow with #A598DA color.
.textShadow {text-shadow: 3px 3px 1px #A598DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A598DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A598DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A598DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A598DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A598DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A598DA; -webkit-box-shadow: 1px 1px 3px 2px #A598DA; box-shadow: 1px 1px 3px 2px #A598DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A598DA; -webkit-box-shadow: 1px 1px 3px 2px #A598DA; box-shadow:1px 1px 3px 2px #A598DA;">
Div content here</div>
This text has color #A598DA on black background.
This text has color #A598DA on white background.
This text has black color on #A598DA background.
This text has white color on #A598DA background.