cardpricingintermediate
Pricing Card
A pricing plan card with highlighted price, feature list, and a CTA button.
Preview
Pro Plan
$29
/month
- Unlimited projects
- Priority support
- Custom domains
<div class="bg-white rounded-2xl shadow-xl border border-gray-100 p-8 max-w-xs text-center">
<h3 class="text-sm font-semibold text-indigo-600 uppercase tracking-wide mb-2">Pro Plan</h3>
<div class="mb-6">
<span class="text-5xl font-extrabold text-gray-900">$29</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8 text-sm text-gray-600">
<li class="flex items-center gap-2"><svg class="w-5 h-5 text-green-500" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path></svg> Unlimited projects</li>
<li class="flex items-center gap-2"><svg class="w-5 h-5 text-green-500" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path></svg> Priority support</li>
<li class="flex items-center gap-2"><svg class="w-5 h-5 text-green-500" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path></svg> Custom domains</li>
</ul>
<button class="w-full py-3 bg-indigo-600 text-white font-semibold rounded-xl hover:bg-indigo-700 transition-colors">Get Started</button>
</div>Color Breakdown
Card Background
bg-white
#ffffff
Plan Label
text-indigo-600
#4f46e5
Price Text
text-gray-900
#111827
Check Icons
text-green-500
#22c55e
Button Background
bg-indigo-600
#4f46e5
Button Text
text-white
#ffffff
Dark Mode Variant
Add these Tailwind classes for a dark mode adaptation of this recipe.
dark:bg-gray-800 dark:border-gray-700 dark:text-whiteUse Cases
SaaS pricing pagesSubscription plansService tiers
Browser Support
All modern browsers.
Related Recipes
Build Your Own Color Recipe
Use our Tailwind CSS tools to experiment with colors, gradients, and component styles.
Explore ToolsFrequently Asked Questions
How do I highlight one pricing card as recommended?▼
Add a ring-2 ring-indigo-600 class and a 'Most Popular' badge with absolute positioning.
How do I add a yearly/monthly toggle?▼
Use the toggle-button recipe above the pricing cards to switch between price values.