HEX: #C5ADFA
RGB: (197,173,250)
#C5ADFA contains mainly red and blue colors. #C5ADFA ‘ nin web güvenlik rengi #CC99FF (ya da #C9F) dir.
#C5ADFA color RGB value is (197,173,250).
RGB: (197,173,250) (77%,68%,98%)
R 197 of 255 = 77%
G 173 of 255 = 68%
B 250 of 255 = 98%
R + G + B ~ 81%. #C5ADFA is quite light color.
R + G + B =
197 + 173 + 250 = 620 (100%)
R 197 of 620 ~ 31.77%
G 173 of 620 ~ 27.9%
B 250 of 620 ~ 40.32%
#C5ADFA rengi CMYK tonu (21,31,0,2).
CMYK: (21,31,0,2) C21M31Y0K2 (21%,31%,0%,2%) (0.21/0.31/0.00/0.02)
C5 | AD | FA | |
---|---|---|---|
RGB | 197 | 173 | 250 |
HSL | 259° | 88.51% | 82.94% |
HSB/HSV | 259° | 30.80% | 98.04% |
CMYK | 21.20% | 30.80% | 0.00% |
1.96% |
HEX | C5 | AD | FA |
Decimal | 197 | 173 | 250 |
Binary | 11000101 | 10101101 | 11111010 |
Octal | 305 | 255 | 372 |
Examples of css and html codes for elements with #C5ADFA color. Also use rgb(197,173,250) instead hex code.
.myTextColor { color: #C5ADFA; }
<p style="color:#C5ADFA">This sample text font color is #C5ADFA.</p>
This text font color is #C5ADFA.
.myBgColor { background-color: #C5ADFA; }
<div style="background-color:#C5ADFA">Inner text</div>
This div background color is #C5ADFA.
.myBorderColor { border: 1px solid #C5ADFA; }
<div style="border:3px solid #C5ADFA">Div</div>
This div border color is #C5ADFA.
.myOpacity80 { color: #C5ADFA; opacity: 0.8; }
<p style="color:#C5ADFA;opacity:0.8;">80%</p>
Text with #C5ADFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5ADFA;}
<p style="text-shadow: 3px 3px 1px #C5ADFA">Text here.</p>
This text has shadow with #C5ADFA color.
.textShadow {text-shadow: 3px 3px 1px #C5ADFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5ADFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5ADFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5ADFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5ADFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5ADFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5ADFA; -webkit-box-shadow: 1px 1px 3px 2px #C5ADFA; box-shadow: 1px 1px 3px 2px #C5ADFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5ADFA; -webkit-box-shadow: 1px 1px 3px 2px #C5ADFA; box-shadow:1px 1px 3px 2px #C5ADFA;">
Div content here</div>
This text has color #C5ADFA on black background.
This text has color #C5ADFA on white background.
This text has black color on #C5ADFA background.
This text has white color on #C5ADFA background.