HEX: #53ADD7
RGB: (83,173,215)
#53ADD7 contains mainly green and blue colors. #53ADD7 ‘ nin web güvenlik rengi #6699CC (ya da #69C) dir.
#53ADD7 color RGB value is (83,173,215).
RGB: (83,173,215) (33%,68%,84%)
R 83 of 255 = 33%
G 173 of 255 = 68%
B 215 of 255 = 84%
R + G + B ~ 62%. #53ADD7 is quite light color.
R + G + B =
83 + 173 + 215 = 471 (100%)
R 83 of 471 ~ 17.62%
G 173 of 471 ~ 36.73%
B 215 of 471 ~ 45.65%
#53ADD7 rengi CMYK tonu (61,20,0,16).
CMYK: (61,20,0,16) C61M20Y0K16 (61%,20%,0%,16%) (0.61/0.20/0.00/0.16)
53 | AD | D7 | |
---|---|---|---|
RGB | 83 | 173 | 215 |
HSL | 199° | 62.26% | 58.43% |
HSB/HSV | 199° | 61.40% | 84.31% |
CMYK | 61.40% | 19.53% | 0.00% |
15.69% |
HEX | 53 | AD | D7 |
Decimal | 83 | 173 | 215 |
Binary | 1010011 | 10101101 | 11010111 |
Octal | 123 | 255 | 327 |
Examples of css and html codes for elements with #53ADD7 color. Also use rgb(83,173,215) instead hex code.
.myTextColor { color: #53ADD7; }
<p style="color:#53ADD7">This sample text font color is #53ADD7.</p>
This text font color is #53ADD7.
.myBgColor { background-color: #53ADD7; }
<div style="background-color:#53ADD7">Inner text</div>
This div background color is #53ADD7.
.myBorderColor { border: 1px solid #53ADD7; }
<div style="border:3px solid #53ADD7">Div</div>
This div border color is #53ADD7.
.myOpacity80 { color: #53ADD7; opacity: 0.8; }
<p style="color:#53ADD7;opacity:0.8;">80%</p>
Text with #53ADD7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53ADD7;}
<p style="text-shadow: 3px 3px 1px #53ADD7">Text here.</p>
This text has shadow with #53ADD7 color.
.textShadow {text-shadow: 3px 3px 1px #53ADD7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53ADD7, 5px 5px 20px red">Text here.</p>
This text has shadow with #53ADD7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53ADD7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53ADD7, Direction=45, Strength=4)">Text</p>
This text has shadow with #53ADD7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53ADD7; -webkit-box-shadow: 1px 1px 3px 2px #53ADD7; box-shadow: 1px 1px 3px 2px #53ADD7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53ADD7; -webkit-box-shadow: 1px 1px 3px 2px #53ADD7; box-shadow:1px 1px 3px 2px #53ADD7;">
Div content here</div>
This text has color #53ADD7 on black background.
This text has color #53ADD7 on white background.
This text has black color on #53ADD7 background.
This text has white color on #53ADD7 background.