Hex #c1e4ec Color

#c1e4ec
equivalent to

RGB

(193, 228, 236)

Details of #c1e4ec

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
193
64.8760
0.53
0.18
88.3906
72.8804
191°
85.3700
228
72.8804
0.53
0.03
-9.7239
0.2848
18°
-13.7479
236
90.0049
0.84
0.00   0.07
-7.7166
0.3200
93°
-2.7283

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11000001
301
193
C1
Green
11100100
344
228
E4
Blue
11101100
354
236
EC

RGB in % of #c1e4ec

%29.38
%34.70
%35.92

CMYK in % of #c1e4ec

%18
%3
%0
%7

Triads of color #c1e4ec

#c1e4ec #e4ecc1 #ecc1ec

Similar Colors to #c1e4ec

#c1e4ec #c1ecdf #c1cfec

Preview Color #c1e4ec on black ground

#c1e4ec is very interesting for text.

Preview Color #c1e4ec on white ground

#c1e4ec is very interesting for text.

CSS Codes #c1e4ec color

.mybgcolor {background-color:#c1e4ec; }
.myforecolor {color:#c1e4ec; }
.mybordercolor {border:3px solid #c1e4ec; }

Text Font Color #c1e4ec

<p style="color:#c1e4ec">Text here</p>

This sample text font color is #c1e4ec
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.


Background Color #c1e4ec

<div style="background-color:#c1e4ec">
Div content here</div>

This div background color is #c1e4ec


Border Color #c1e4ec

<div style="border:3px solid #c1e4ec">
Div here</div>

The color of this border is #c1e4ec


Examples Css3

.textShadowRgb {text-shadow: 4px 4px 2px rgba(0,0,0, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #c1e4ec; }
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #c1e4ec;
-webkit-box-shadow: 1px 1px 3px 2px #c1e4ec;
box-shadow:         1px 1px 3px 2px #c1e4ec; }
				

Text Shadow using RGB

<p style="text-shadow: 4px 4px 2px rgba(0,0,0, 0.8);">Text here</p>
				

The shadow of this text using RGB.


Text Shadow using Hex

<p style="text-shadow: 4px 4px 2px #c1e4ec">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

<div style="-moz-box-shadow: 1px 1px 3px 2px #c1e4ec;
  -webkit-box-shadow: 1px 1px 3px 2px #c1e4ec;
  box-shadow:         1px 1px 3px 2px #c1e4ec;">
Div content here</div>

The shadow of div box using color #c1e4ec