HEX: #C5EEFA
RGB: (197,238,250)
#C5EEFA contains red, green and blue colors in about the same proportion. #C5EEFA ‘ nin web güvenlik rengi #CCFFFF (ya da #CFF) dir.
#C5EEFA color RGB value is (197,238,250).
RGB: (197,238,250) (77%,93%,98%)
R 197 of 255 = 77%
G 238 of 255 = 93%
B 250 of 255 = 98%
R + G + B ~ 89%. #C5EEFA is light color.
R + G + B =
197 + 238 + 250 = 685 (100%)
R 197 of 685 ~ 28.76%
G 238 of 685 ~ 34.74%
B 250 of 685 ~ 36.5%
#C5EEFA rengi CMYK tonu (21,5,0,2).
CMYK: (21,5,0,2) C21M5Y0K2 (21%,5%,0%,2%) (0.21/0.05/0.00/0.02)
C5 | EE | FA | |
---|---|---|---|
RGB | 197 | 238 | 250 |
HSL | 194° | 84.13% | 87.65% |
HSB/HSV | 194° | 21.20% | 98.04% |
CMYK | 21.20% | 4.80% | 0.00% |
1.96% |
HEX | C5 | EE | FA |
Decimal | 197 | 238 | 250 |
Binary | 11000101 | 11101110 | 11111010 |
Octal | 305 | 356 | 372 |
Examples of css and html codes for elements with #C5EEFA color. Also use rgb(197,238,250) instead hex code.
.myTextColor { color: #C5EEFA; }
<p style="color:#C5EEFA">This sample text font color is #C5EEFA.</p>
This text font color is #C5EEFA.
.myBgColor { background-color: #C5EEFA; }
<div style="background-color:#C5EEFA">Inner text</div>
This div background color is #C5EEFA.
.myBorderColor { border: 1px solid #C5EEFA; }
<div style="border:3px solid #C5EEFA">Div</div>
This div border color is #C5EEFA.
.myOpacity80 { color: #C5EEFA; opacity: 0.8; }
<p style="color:#C5EEFA;opacity:0.8;">80%</p>
Text with #C5EEFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5EEFA;}
<p style="text-shadow: 3px 3px 1px #C5EEFA">Text here.</p>
This text has shadow with #C5EEFA color.
.textShadow {text-shadow: 3px 3px 1px #C5EEFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5EEFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5EEFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5EEFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5EEFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5EEFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5EEFA; -webkit-box-shadow: 1px 1px 3px 2px #C5EEFA; box-shadow: 1px 1px 3px 2px #C5EEFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5EEFA; -webkit-box-shadow: 1px 1px 3px 2px #C5EEFA; box-shadow:1px 1px 3px 2px #C5EEFA;">
Div content here</div>
This text has color #C5EEFA on black background.
This text has color #C5EEFA on white background.
This text has black color on #C5EEFA background.
This text has white color on #C5EEFA background.