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