#fac1ee					
					
					 
					
				
| این رنگ روشن است | متن روی بلوک دارای پس زمینه با این رنگ | 
| Hex | #fac1ee | 
| RGB | (  250 ,193 ,238 ) | 
					
| HSL | ( 312.63 , 0.85 , 0.87 ) | 
برای رنگ پس زمینه از کلاس bgcolor و برای رنگ متن از کلاس forecolor و برای رنگ قاب دور المان ها از کلاس bordercolor استفاده کنید
<style> 
.bgcolor { background-color:#fac1ee; } 
.forecolor { color:#fac1ee; } 
.bordercolor { border:3px solid #fac1ee; }
</style>	
برای نوشتن یک متن با این رنگ می توانید از کد زیر استفاده کنید
<p style='color:#fac1ee'>متن دلخواه شما</p>
کد یک متن سایه دار با این رنگ
<p style='text-shadow: 4px 4px 2px rgba(250,193,238, 0.8);'>متن دلخواه سایه دار</p>
ایجاد یک محیط (div) با رنگ پس زمینه
<div style='background-color:#fac1ee'>محتوای محیط</div>
ایجاد یک (gradients) برای css3 با پشتیبانی انواع مرورگرها
background-color: #fac1ee;filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fac1ee', endColorstr='#f692e1');background-image: -webkit-linear-gradient(top, #fac1ee, #f692e1);background-image: linear-gradient(to bottom, #fac1ee, #f692e1);