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