Top Related Projects
A utility-first CSS framework for rapid UI development.
The instant on-demand atomic CSS engine.
Next generation utility-first CSS framework.
The smallest, fastest, most feature complete Tailwind-in-JS solution in existence.
⚡️ Simple, Modular & Accessible UI Components for your React Applications
Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅
Quick Overview
Awesome Tailwind CSS is a curated list of awesome resources, tools, and projects related to Tailwind CSS, a utility-first CSS framework. This repository serves as a comprehensive collection of links to various Tailwind CSS resources, including official tools, third-party extensions, components, templates, and learning materials.
Pros
- Extensive collection of Tailwind CSS resources in one place
- Regularly updated with new and relevant content
- Well-organized and categorized for easy navigation
- Community-driven, allowing contributions from Tailwind CSS enthusiasts
Cons
- May become overwhelming due to the large number of resources
- Some listed resources might become outdated or unmaintained over time
- Quality of third-party resources may vary
- Requires manual exploration to find the most suitable resources for specific needs
Competitor Comparisons
A utility-first CSS framework for rapid UI development.
Pros of tailwindcss
- Official repository of the Tailwind CSS framework
- Contains the core source code and documentation
- Regularly updated with new features and improvements
Cons of tailwindcss
- Focused solely on the framework itself, not external resources
- May be overwhelming for beginners looking for curated content
- Lacks community-contributed resources and tools
Code Comparison
tailwindcss:
@tailwind base;
@tailwind components;
@tailwind utilities;
.btn-blue {
@apply bg-blue-500 text-white font-bold py-2 px-4 rounded;
}
awesome-tailwindcss:
## Plugins
- [Typography](https://github.com/tailwindlabs/tailwindcss-typography) - Adds a `prose` class for beautiful typographic defaults.
- [Forms](https://github.com/tailwindlabs/tailwindcss-forms) - Adds better default styles to form elements.
The tailwindcss repository contains the actual framework code, while awesome-tailwindcss is a curated list of Tailwind CSS resources, plugins, and tools. tailwindcss is essential for developers using the framework, providing the core functionality and documentation. awesome-tailwindcss serves as a valuable resource for discovering additional tools and learning materials related to Tailwind CSS, making it particularly useful for beginners and those looking to expand their knowledge of the ecosystem.
The instant on-demand atomic CSS engine.
Pros of UnoCSS
- Faster performance due to its atomic CSS engine
- More flexible and customizable with its preset system
- Supports on-demand atomic CSS generation
Cons of UnoCSS
- Smaller community and ecosystem compared to Tailwind CSS
- Less comprehensive documentation and learning resources
- May require more setup and configuration for complex projects
Code Comparison
UnoCSS:
.text-red-500 {
color: rgb(239 68 68);
}
Awesome Tailwind CSS:
.text-red-500 {
--tw-text-opacity: 1;
color: rgb(239 68 68 / var(--tw-text-opacity));
}
UnoCSS generates simpler CSS output, while Tailwind CSS includes additional utility classes and variables for more flexibility in certain scenarios.
Summary
UnoCSS offers better performance and flexibility, but has a smaller ecosystem. Awesome Tailwind CSS provides a more established community and extensive resources. The choice between them depends on project requirements, team expertise, and desired customization level.
Next generation utility-first CSS framework.
Pros of Windicss
- Faster compilation times due to on-demand CSS generation
- Supports additional features like variant groups and shortcuts
- Compatible with existing Tailwind CSS configurations
Cons of Windicss
- Smaller community and ecosystem compared to Tailwind CSS
- May have compatibility issues with some Tailwind CSS plugins
- Less frequent updates and maintenance
Code Comparison
Windicss:
.btn {
@apply px-4 py-2 bg-blue-500 text-white rounded;
&:hover {
@apply bg-blue-600;
}
}
Tailwind CSS:
.btn {
@apply px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600;
}
While awesome-tailwindcss is a curated list of Tailwind CSS resources, Windicss is an alternative compiler for Tailwind CSS. Windicss aims to improve performance and offer additional features while maintaining compatibility with Tailwind CSS. However, it has a smaller community and may lack some ecosystem support compared to the original Tailwind CSS. The code comparison shows that Windicss allows for nesting within utility classes, which can lead to more concise and organized code in some cases.
The smallest, fastest, most feature complete Tailwind-in-JS solution in existence.
Pros of Twind
- Runtime CSS-in-JS approach, allowing for dynamic styling without build steps
- Smaller bundle size due to on-demand generation of styles
- Seamless integration with JavaScript/TypeScript for enhanced type safety
Cons of Twind
- Potential performance overhead due to runtime style generation
- Less extensive ecosystem and community support compared to Tailwind CSS
- May require additional setup and configuration for optimal use
Code Comparison
Twind:
import { tw } from 'twind'
const button = tw`bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded`
Awesome Tailwind CSS:
<button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
Button
</button>
Twind offers a more programmatic approach to styling, allowing for dynamic class generation and better integration with JavaScript. Awesome Tailwind CSS, being a curated list of Tailwind CSS resources, provides a more traditional utility-first CSS approach with a vast collection of tools, plugins, and resources. The choice between the two depends on project requirements, development preferences, and performance considerations.
⚡️ Simple, Modular & Accessible UI Components for your React Applications
Pros of Chakra UI
- Provides a complete component library with pre-built, accessible UI components
- Offers a more structured and opinionated approach to building user interfaces
- Includes built-in theming and customization options out of the box
Cons of Chakra UI
- Less flexibility compared to utility-first approach of Tailwind CSS
- Steeper learning curve for developers new to component-based UI libraries
- Potentially larger bundle size due to inclusion of full component library
Code Comparison
Chakra UI:
import { Box, Heading, Text } from "@chakra-ui/react"
<Box bg="blue.500" p={4}>
<Heading color="white">Hello</Heading>
<Text color="white">Welcome to Chakra UI</Text>
</Box>
Tailwind CSS:
<div class="bg-blue-500 p-4">
<h1 class="text-white text-2xl">Hello</h1>
<p class="text-white">Welcome to Tailwind CSS</p>
</div>
Note: awesome-tailwindcss is a curated list of Tailwind CSS resources, not a UI library itself. The code comparison above demonstrates the difference between Chakra UI and Tailwind CSS usage.
Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅
Pros of styled-components
- Component-based styling with CSS-in-JS approach
- Dynamic styling based on props
- Automatic critical CSS extraction
Cons of styled-components
- Steeper learning curve for developers new to CSS-in-JS
- Potential performance overhead for large applications
- Less flexibility in sharing styles across components
Code Comparison
styled-components:
const Button = styled.button`
background-color: ${props => props.primary ? 'blue' : 'white'};
color: ${props => props.primary ? 'white' : 'blue'};
padding: 10px 20px;
border: 2px solid blue;
`;
Tailwind CSS (awesome-tailwindcss):
<button className="bg-blue-500 text-white px-4 py-2 border-2 border-blue-500">
Click me
</button>
styled-components offers a more programmatic approach to styling, allowing for dynamic styles based on props. awesome-tailwindcss, on the other hand, provides a utility-first approach with pre-defined classes, making it easier to quickly style components without writing custom CSS. The choice between the two depends on project requirements, team preferences, and scalability needs.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Awesome Tailwind CSS
Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces.
Contents
- Useful Links
- IDE Extensions
- Plugins
- Tools
- UI Libraries, Components & Templates
- Starters & Themes
- Learning
Useful Links
Legend: ð Official resource
- ð Website - Official Tailwind CSS website.
- ð Repository - Official Tailwind CSS repository.
- ð Tailwind UI - Component library made with Tailwind CSS.
- ð Headless UI - Completely unstyled, fully accessible UI components.
- ð Heroicons - Beautiful, hand-crafted SVG icons.
- ð Play - Advanced online playground for Tailwind CSS.
- ð Discord - Official Discord server to connect with other community members about Tailwind CSS.
- Tailwind Weekly - Weekly newsletter about all things Tailwind CSS.
IDE Extensions
Legend: ð Official resource
- ð IntelliSense for Code - Provides IntelliSense in Visual Studio Code.
- LSP support for Emacs - LSP support for Emacs.
- Tailwind CSS Highlight - Highlights utility classes in Visual Studio Code.
- CSS to TailwindCSS converter for Code - Converts CSS to Tailwind CSS in Visual Studio Code.
- Editor support for VS2022 - IntelliSense, linting, sorting, and more in Visual Studio 2022.
Plugins
Legend: ð Official plugin · ð¨ Theming · ð¼ Utilities · 𧬠Variants · 𧩠Components · ð Deprecated
- ð𧩠Typography - Adds a
prose
class for beautiful typographic defaults. - ðð¼ Container queries - Provides utilities for container queries.
- ð Forms - Adds better default styles to form elements.
- ð¨ð§¬ Theme Variants - Adds theme variants based on media queries and/or CSS selectors.
- ð¨ð§¬ Theme Swapper - Theming using CSS variables, with media queries support.
- ð¨ð§¬ Themer - Adds theming support for Tailwind CSS with CSS variables and variants.
- ð¨ð§© Tailwind Elements - Extends Tailwind CSS with 500+ interactive components (datepickers, modals, forms, tables, darkmode).
- ð¨ð§© CSS Variables - Exports custom CSS variables.
- ð¨ð¼ Accent - Adds
accent
colors for more dynamic and flexible color utilization. - ð¼ð§¬ Radix - Adds utilities and variants for styling Radix UI state.
- ð¼ Image Rendering - Adds
image-rendering
utilities. - ð¼ Elevation - Adds Material UI
elevation
utilities. - ð¼ RFS - Adds
RFS
utilities. - ð¼ Bidirectional - Adds utilities for creating multilingual bidirectional layouts.
- ð¼ Background SVG - Inject SVGs as background images with color variants.
- ð¼ Background Unsplash - Apply unsplash.com images as background.
- ð¼ Brand Colors - Adds various brand colors for background, border and text.
- ð¼ Bootstrap Grid - Generates Bootstrap's style flexbox grid system.
- ð¼ Leading Trim - Adds utilities to trim text whitespace, using Capsize.
- ð¼ Scrollbar Hide - Adds
scrollbar-hide
class for visual hide scrollbar. - ð¼ Fluid Type - Adds fluid type (
font-size
) utilities. - ð¼ Grid Areas - Adds
grid-areas
andgrid-area
utilities. - ð¼ Full bleed background and borders - Provides utilities for extended backgrounds and borders.
- ð¼ CSS Filter Order - Adds
filter-order
utilities for changing the order of filters in the generated CSS. - ð¼ Tailwind CSS 3D - Adds 3D
transform
utilities and animations. - ð¼ Claymorphism - Adds
clay
utilities for creating claymorphism style. - ð¼ð§¬ð§© Fluid - Adds fluid
clamp()
versions of every built-in utility. - 𧬠FormKit - Adds variants for input and form states for FormKit.
- 𧬠Htmx - Adds variants for styling on htmx events.
- 𧩠Debug screens - Adds a component that shows the currently active screen (responsive breakpoint).
- ð¼ Dot & Grid Backgrounds - Adds
bg-grid
andbg-dot
classes to add easy-to-customize grid and dot pattern backgrounds with just CSS.
ð *Below are official plugins which functionalities are either deprecated or (partially) implemented in core.*
- ðð¼ð Line Clamp - Provides utilities for visually truncating text after a fixed number of lines.
- ðð§©ð Custom Forms - Adds better default styles to form elements.
- ððð¼ Aspect Ratio - Adds composable aspect ratio utilities.
Tools
Legend: ð Accessible online · ð¼ Conversion or upgrade tool · ð§ Generator · ð ° Typing/enforcement · ð¼ Plugins/Tools/Extensions for external services · ð¨ Color-related · ð Framework · ð° Paid plans
- ðð¼ Prettier plugin - Official Tailwind CSS plugin for Prettier.
- ð¨ðð§ Ui Colors - Color palette generator for Tailwind CSS.
- ð¨ðð§ Tailwind Color Shades - Color shades generator for Tailwind CSS.
- ð¨ðð§ Palette generator - Color palette generator that outputs Tailwind CSS configuration files.
- ð¨ðð§ Tailwind Colors - Color configuration generator for Tailwind CSS.
- ð¨ðð§ Tailwind Color Explorer - Color explorer for Tailwind CSS.
- ð¨ðð§ TailwindInk - AI palette generator, trained with the Tailwind CSS palette.
- ð¨ðð§ Gradient Designer - Generate gradients for Tailwind 2.0+.
- ð¨ðð§ Grayscale Design - A Luminance-based color palette generator.
- ð¨ðð§ Hypercolor - Collection of pre-configured Tailwind CSS gradients with directional options.
- ð¨ðð§ Palettolithic - Generates harmonius color palettes based on one color.
- ð¨ðð§ Tailwind Gradient Generator - Create perfect Tailwind CSS gradients with zero lines of code.
- ð¨ðð§ Tints - Color palette penerator and API for Tailwind CSS.
- ð¨ðð§ Tailwind CSS Colors - Cheat sheet for Tailwind CSS colors.
- ð¨ðð§ Tailwind Gradients - Collection of gradients using Tailwind CSS classes.
- ð¨ðð§ Fullwind CSS - Extend Tailwind CSS color palettes with additional shades.
- ðð§ð¼ Twind - Compiler functions that turn Tailwind's classes into CSS at run, serve and build time.
- ðð§ tail-animista - Configurable custom animation utilities generator for Tailwind CSS.
- ðð§ brands-tail-color - Configuration generator using various brands' colors.
- ð Typography playground - Tool for trying different Google Fonts combinations with the Tailwind CSS typography plugin.
- ð Flowrift - Beautifully designed Tailwind CSS UI blocks.
- ð¼ðð§ Tailwindhelper - Visualize Tailwind CSS classes and unit converter.
- ð¼ð Prefixer - Tailwind classes' prefixer tool.
- ð¼ð CSS to Tailwind CSS Converter - Converts CSS to Tailwind CSS by suggesting classes that best match.
- ð¼ð ska-tailwind-editor - Edit Tailwind HTML as WordPress blocks with intuitive UI for Tailwind classes and get HTML or JSX back.
- ð¼ Tailwindo - Bootstrap to Tailwind CSS converter.
- ð¼ RustyWind - CLI tool for sorting Tailwind CSS classes.
- ð Maizzle - Framework for rapid email prototyping with Tailwind CSS.
- ð ° react-native-tailwindcss - React Native typing system.
- ð¼ Alfred Workflow - Fast Tailwind CSS documentation search application.
- ð¼ vue-cli-plugin-tailwind - Vue CLI plugin that adds Tailwind CSS to a project.
- ð¼ @nuxtjs/tailwindcss - Tailwind CSS module for NuxtJS with PurgeCSS and modern CSS (preset env 1).
- ð¼ preact-cli-tailwind - Tailwind CSS integration for Preact.
- ð¼ tailwindcss-rails - Gem for using Tailwind CSS with Rails' asset pipeline.
- ð¼ð§ twin.macro - Use Tailwind classes within any CSS-in-JS library.
- ð¼ð§ tailwindcss-webpack-plugin - Out-of-the-box Tailwind CSS, supports "Design in DevTools" mode and visualizes Tailwind CSS configuration.
- ð¼ð§ tailwindcss-vite-plugin - Vite plugin for Tailwind CSS, supports "Design in DevTools" mode and visualizes Tailwind CSS configuration.
- ð¼ð§ Tailwind Config Viewer - Local UI tool for visualizing your Tailwind CSS configuration file.
- ð¼ clb - clb (class list builder) is a utility function that builds a class list based on a Stitches like API.
- ð¼ react-with-class - Utility function for creating primitive React components with a set of classes, props or variants.
- ð¼ twined-components - Extended component of a styled-components that prioritizes class names for use in Tailwind CSS.
- ð¼ Tails DevTools - All-in-one browser extension for Tailwind CSS.
- ð¼ Impulse.dev â UI editor for Tailwind CSS and React that edits your code.
- ð¼ Tailiscope.nvim - Tailwind CSS cheat sheet integrated in Neovim.
- ð¼ Raycast Extension - Search classes, documentation and colors in Raycast Launcher.
- ð¼ DivMagic - Copy any web element and style as Tailwind CSS component.
- ð¼ Gimli Tailwind - Smart tools for Tailwind CSS as a browser extension.
- ð Tailwind Cheat Sheet - Tailwind CSS class names in a searchable page.
- ðð§ Tailwind Grid Generator - Drag and drop Tailwind CSS grid generator.
- ðð§ Tailwind Box Shadows Generator - Box Shadows generator.
- ð°ðð§ Windframe - Tailwind CSS drag and drop builder to rapidly build and prototype websites.
- ð Static Tailwind - The most used Tailwind classes, precompiled, with no build step.
- ð¨ð§ Design GUI - AI-powered Chrome extension for managing colors in daisyUI and shadcn/ui.
UI Libraries, Components & Templates
Legend: ð Official resource · ð Library · 𧩠Components · ð Templates
- ð𧩠Tailwind UI - Component library made with Tailwind CSS.
- ðð Headless UI - Completely unstyled, fully accessible UI components.
- ðð Catalyst - Beautiful, accessible application UI kit for React.
- ð VueTailwind - Vue.js UI library using Tailwind CSS.
- ð Flowbite - Open-source component library built with Tailwind CSS.
- ð a17t - Atomic design toolkit built to extend Tailwind CSS.
- ð tails-ui - React UI library using Tailwind CSS.
- ð tails - Hand-crafted templates and components using Tailwind CSS.
- ð Svelte Headless UI - Unofficial Svelte port of Headless UI.
- ð Xtend UI - Tailwind CSS components with advanced interactions and animations.
- ð Headless UI Float - Floating UI integration for Headless UI.
- ð Vanilla Components - Set of fully customizable Vue components.
- ð Sailboat UI - Modern UI framework for Tailwind CSS.
- ð Built At Lightspeed - Massive directory of 500+ Tailwind templates, starters and UI kits.
- ð Statichunt - Open source directory of hand-picked free and premium Tailwind templates & Starters.
- ð Tailkits - Curated Tailwind CSS components, templates, UI kits, resources, tools & more.
- ð STDF - Mobile web component library based on Svelte and Tailwind CSS.
- ð TWC - Lightweight library to create reusable React + Tailwind CSS components in one line.
- ð Tremor - React library to build charts and dashboards with Tailwind CSS.
- ð Preline UI - Open-source Tailwind CSS components library for any needs.
- 𧩠TailBlocks - 60+ different ready to use Tailwind CSS blocks.
- 𧩠Tailwind Components - Community-driven Tailwind CSS component repository.
- 𧩠Tailwind Toolbox - Templates, components and resources.
- 𧩠Meraki UI Components - Beautiful Tailwind CSS components that support RTL languages.
- 𧩠Tailwind Cards - Growing collection of text/image cards.
- ð§©ð Tailwind Templates - Collection of templates and components.
- ð§©ð Treact - React UI templates and components built using Tailwind CSS.
- ð§©ð Jakarta LTE - Admin template using Tailwind CSS.
- ð§©ð themes.dev - Handcrafted, free and premium Tailwind CSS themes and components.
- 𧩠Sail UI - Collection of basic UI components built on Tailwind CSS.
- 𧩠jQuery Toggler - Switches using jQuery and Tailwind CSS.
- 𧩠Tailwind Kit - Framework-agnostic, Vue.js, React and Angular components.
- 𧩠WickedBlocks - Collection of more than 120 layout blocks and components built with Tailwind CSS.
- 𧩠Daisy UI - UI Components for Tailwind CSS.
- 𧩠Kometa UI Kit - Free multi-purpose UI kit, built with Tailwind CSS.
- 𧩠Mamba UI - Free Tailwind CSS components, sections and templates.
- 𧩠Litepie Date picker - A date range picker component for Vue.js and Tailwind CSS.
- 𧩠Tailwind Datepicker - Adds a datepicker component built with Tailwind CSS and vanilla JavaScript.
- 𧩠Tailwind Typeahead - Typeahead/Autocomplete component built with Vue.js and Tailwind CSS.
- 𧩠Material Tailwind - Easy to use components library for Tailwind CSS and Material Design.
- 𧩠Layouts for Tailwind - Layouts and UI Patterns for Tailwind CSS.
- 𧩠HyperUI - Open source marketing and ecommerce Tailwind CSS components.
- 𧩠Snippets - Open source collection of animation snippets made for Tailwind CSS.
- 𧩠Fancy Tailwind - Large collection of Tailwind CSS UI components (700+).
- 𧩠Myna UI - Open source UI Components and Marketing Elements made with Tailwind CSS.
- 𧩠RippleUI - Clean, modern and beautiful Tailwind CSS components.
- 𧩠Wind UI - Expertly made, responsive, accessible components in React and HTML ready to be used on your website or app.
- 𧩠Pines UI - Alpine and Tailwind CSS UI library.
- 𧩠NativeWind - NativeWind uses Tailwind CSS as scripting language to create a universal style system for React Native.
- 𧩠Windstatic - Set of 161 elements & layouts made with Tailwind CSS and Alpine.js.
- 𧩠TailwindFlex - Free library of Tailwind CSS examples.
- 𧩠Shadcn UI - Re-usable components built using Radix UI and Tailwind CSS.
- 𧩠Indie UI - Rich styled UI components.
- 𧩠Penguin UI - Plug-n-play UI component library for Tailwind CSS & Alpine JS.
- 𧩠Motion Primitives - React motion components built with Tailwind CSS and Framer Motion.
- ð Vue Notus - Open-source Tailwind CSS and Vue.js UI kit.
- ð EasyTailwind - Freemium, easily customizable templates made with Tailwind CSS.
- ð Windmill Dashboard - Multi theme, completely accessible dashboard template.
- ð Tailwind Admin - Administration panel template with Tailwind CSS.
- ð Landing Gradients - Landing page template using gradients (1.7+).
- ð Resume - Simple resume with Tailwind CSS.
- ð Simple Light - Free landing page template built with React & Tailwind CSS.
- ð V-Dashboard - Dashboard starter template built with Vue 3 and Tailwind CSS.
- ð Petra - Free landing page template built with Nuxt.js & Tailwind CSS.
- ð Tailmin - Admin dashboard built with Vue.js and Tailwind CSS.
- ð OhMySMTP Templates - Set of Transactional HTML Email Templates, built with Maizzle
- ð Material Tailwind Kit React - Free Tailwind CSS and React UI kit.
- ð Material Tailwind Dashboard React - Free Tailwind CSS and React admin template.
- ð Admin One Vue 3 - Free Vue.js 3 Tailwind CSS admin template with Vite & Vue CLI support.
- ð Cruip - Beautifully designed HTML, React, and Vue.js templates.
- ð Admin One React - Free React.js Tailwind CSS admin template with Next.js & TypeScript.
- ð Flowbite Admin Dashboard - Open-source admin dashboard template built with Tailwind CSS and Flowbite.
- ð Astro Template Resume - Eye-catching resume template built with Astro, Tailwind CSS.
- ð Astro Template Cactus - Tailwind CSS Astro starter template.
- ð Astro Template Ovidius - Tailwind CSS & Astro blog template.
- ð Astro Template Dante - Tailwind CSS & Astro blog/portfolio template.
Starters & Themes
Legend: ð¼ Package · ð Command line tool/generator · ð Cloneable
- ð Create React App with PurgeCSS - CRA script that adds Tailwind CSS and PurgeCSS.
- ð Laravel Preset - Adds Tailwind CSS to the Laravel framework.
- ðð¼ Laravel Front-end Preset - Front-end preset using Tailwind CSS for Laravel.
- ðð¼ Laravel Dark Front-end Preset - Dark-themed front-end preset using Tailwind CSS for Laravel.
- ð Create React App with EmotionJS - CRA boilerplate using Tailwind CSS and Emotion JS.
- ð Create React App with TypeScript - CRA template with support for Tailwind CSS and TypeScript.
- ð Next.js PWA â CLI that generate boilerplate code of Next.js PWA along with Tailwind CSS integration.
- ð new-tailwind-app - Creates React.js, Next.js, Gatsby.js, Vue3, Laravel, and basic Tailwind CSS apps.
- ð Tailwind CSS Boilerplate - Tailwind CSS boilerplate using Parcel.
- ð Jekyll Starter - Jekyll starter using Tailwind CSS.
- ð Jekyll Starter - Jekyll starter using Tailwind CSS.
- ð Jekyll Starter - Jekyll starter using Tailwind CSS
- ð Gulp Starter - Gulp starter using Tailwind CSS.
- ð Gatsby Starter - Gatsby starter using Tailwind CSS.
- ð Gatsby Starter Simplicity - Gatsby starter using Tailwind CSS.
- ð Gatsby Starter + TypeScript - Gatsby starter using Tailwind CSS and TypeScript.
- ð Gatsby Starter + Emotion JS - Gatsby starter using Tailwind CSS and Emotion JS.
- ð Gatsby Starter Opinionated - Gatsby starter using Tailwind CSS and opinionated goodies.
- ð Create React App Boilerplate - CRA boilerplate using Tailwind CSS.
- ð Create React App with PurgeCSS + Autoprefixer + CSSNano - CRA boilerplate using CSS Nano.
- ð Dogpatch - WordPress starter using webpack, Vue, Babel and Tailwind CSS.
- ð Next.js Starter - Next.js boilerplate using Tailwind CSS.
- ð Sapper & Svelte Starter - Svelte boilerplate using Sapper, Tailwind CSS, Purge CSS, Prettier and ESLint.
- ð Netlify Lambda Starter - Netlify Lambda boilerplate using Tailwind CSS.
- ð Hugo Theme Starter with Tailwind CSS - Hugo theme starter using Tailwind CSS.
- ð Eleventy Web Starter - Starter kit using Eleventy, Tailwind CSS, webpack and PostCSS.
- ð Nanoc Starter - Nanoc starter using Tailwind CSS.
- ð PostCSS and Browsersync Boilerplate - Boilerplate using CSS Nano.
- ð ParcelJS + TypeScript Boilerplate - Boilerplate using Tailwind CSS, ParcelJS bundler and TypeScript.
- ð VuePress Tailwind CSS Starter - A VuePress starter using Tailwind CSS.
- ð Gatsby Serif - Gatsby's serif theme using Tailwind CSS.
- ð Eleventy Starter - Production-ready, SEO-friendly blog starter using Tailwind CSS.
- ð Vite + React + Tailwind Starter - Boilerplate using Vite, React and Tailwind CSS.
- ð Vite + React + TypeScript + Tailwind 3.x starter - GitHub Template for Vite, React + Tailwind 3.x + TypeScript.
- ð Vite + Vue 3.x + Tailwind 2.x Starter - Starter template using Vite, Vue, Vue Router and Tailwind CSS.
- ð Vite + Lit + Tailwind Starter - Boilerplate using Vite, Lit and Tailwind CSS.
- ð Shopify Theme Lab - Shopify theme development starter using Vue and Tailwind CSS.
- ð Starter Dashboard Layout - Dashboard layout using Tailwind CSS and Alpine JS.
- ð Jekyll Landing Website Starter - Production ready, SEO-friendly, performant landing website boilerplate using Jekyll and Tailwind CSS.
- ð Next JS Boilerplate - Boilerplate for Next.js and Tailwind CSS.
- ð Vitailse - Opinionated Vite starter template with Vue 3, TypeScript and Tailwind CSS.
- ð Vite-Boot - Vite + Vue3 + TypeScript + Vue-Router4 + Pinia + Tailwind CSS + VueUse Template.
- ð AstroWind - Production ready and SEO-friendly template to start a website using Astro and Tailwind CSS.
- ð Angular-Tailwind - Dashboard starter kit using Angular and Tailwind CSS.
- ð Vue-Resume - Developer resume template with Tailwind CSS and Vue.
Learning
Legend: ð Official resource · 𧪠Sample · ð§ Setup Tutorial · ð¬ Video Tutorial · ð Component or Page Tutorial · ð¥ Cast
- ð𧪠Plugin Examples - Official plugin examples.
- 𧪠Tailwind Dark Mode Theme Switcher - Switching themes with CSS Custom Properties and Tailwind CSS.
- 𧪠Acquia - Acquia's hosting dashboard rebuilt with Vue.js and Tailwind CSS.
- 𧪠Navbar - Navbar made with Vue.js and Tailwind CSS.
- 𧪠âOpenâ landing page - âOpenâ landing page template by Cruip built with Tailwind CSS Boilerplate.
- ð§ Testing Tailwind CSS plugins with Jest - How to test Tailwind CSS plugins with Jest.
- ð§ Tailwind CSS with CSS-in-JS - How to use Tailwind CSS with CSS-in-JS.
- ð§ Tailwind CSS in a Laravel Project - How to setup Tailwind CSS in a Laravel project.
- ð§ Tailwind CSS with Ember - How to add Tailwind CSS to an Ember application.
- ð§ Sage WordPress theme and Tailwind CSS - How to setup Tailwind CSS in Sage.
- ð§ Tailwind CSS with GatsbyJS - How to use Tailwind CSS with Gatsby.
- ð§ Tailwind CSS with Phoenix 1.4 - How to setup Tailwind CSS in Phoenix 1.4.
- ð§ Extend Tailwind CSS - How to Extend Tailwind CSS.
- ð¬ Rebuilding Laravel.io - Rebuilding Laravel.io with Tailwind CSS.
- ð¬ Rebuilding Coinbase - Rebuilding Coinbase with Tailwind CSS (see the CodePen).
- ð¬ Rebuilding Twitter - Rebuilding Twitter with Tailwind CSS (see the CodePen).
- ð¬ Rebuilding YouTube - Rebuilding YouTube with Tailwind CSS.
- ð¬ Rebuilding Netlify - Rebuilding Netlify with Tailwind CSS.
- ð¬ Rebuilding Resolute - Rebuilding Resolute with Tailwind CSS.
- ð¬ Let's Build: Movie Production Landing Page - Building a movie production landing page with Tailwind CSS.
- ð¬ Lets Build: Responsive Navbar - Building a responsive navbar with Tailwind CSS.
- ð¬ Let's Build: Dribbble Shot - Dribbble shot with Tailwind CSS.
- ðð¬ Tailwind CSS: From Zero to Production - Complete walkthrough of Tailwind CSS, from installation to optimization for deployment.
- ð¬ Let's Build: Tweet component - Building a Tweet component with Tailwind CSS.
- ð¬ 10 Tailwind CSS Tips and Tricks - 10 Tailwind CSS tricks you should know.
- ð¬ Responsive Framer Motion with Tailwind CSS - Learn how CSS variables can bridge the gap between Framer Motion and Tailwind CSS.
- ð Modal Dialog - Creating a modal dialog with Tailwind CSS.
- ð Building real-world UIs using Tailwind CSS - Building UIs of Shopify, Spotify, Netlify and Atlassian.
- ð Login Page (PingPing) - Creating a login page with Tailwind CSS.
- ð Navigation - Building a navigation with Tailwind CSS.
- ð Forms with Tailwind CSS - How to style a form with Tailwind CSS.
- ð Photo gallery with CSS grids - Building a photo gallery with CSS grids and Tailwind CSS.
- ð Rebuilding Bartik - Rebuilding Bartik (Drupal's default theme) with Vue.js and Tailwind CSS.
- ð Rebuilding Airbnb's Home Page - Rebuilding Airbnb's Home Page with Tailwind CSS.
- ð Typographic defaults in Tailwind CSS
- ð Create a responsive navigation menu in Tailwind CSS
- ð¥ Laracasts Weekly Stream: Tailwind
- ð¥ More experimentation with Tailwind CSS
- ð¥ Rebuilding Spotify
- ð¥ Rebuilding Discord
- ð¥ Rebuilding Meetup
·
Contributions welcome! Read the contribution guidelines first.
Top Related Projects
A utility-first CSS framework for rapid UI development.
The instant on-demand atomic CSS engine.
Next generation utility-first CSS framework.
The smallest, fastest, most feature complete Tailwind-in-JS solution in existence.
⚡️ Simple, Modular & Accessible UI Components for your React Applications
Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot