A Tailwind CSS distribution bundled with DaisyUI, optimized for fastHTML and standalone use.
Based on Tailwind CSS and includes DaisyUI
This is a specialized distribution of Tailwind CSS that:
- Includes DaisyUI plugin out of the box
- Provides standalone executables for easy integration
- Is optimized for use with python-fasthtml
- Can be used in any project requiring Tailwind CSS + DaisyUI
- Download the appropriate binary
curl -sLO https://github.com/banditburai/fastwindcss/releases/latest/download/tailwindcss-macos-arm64
curl -sLO https://github.com/banditburai/fastwindcss/releases/latest/download/tailwindcss-macos-x64
curl -sLO https://github.com/banditburai/fastwindcss/releases/latest/download/tailwindcss-linux-x64
curl -sLO https://github.com/banditburai/fastwindcss/releases/latest/download/tailwindcss-linux-arm64
curl -sLO https://github.com/banditburai/fastwindcss/releases/latest/download/tailwindcss-windows-x64.exe
- Rename and make executable
On Unix-like systems (macOS/Linux):
mv tailwindcss-* tailwindcss
chmod +x tailwindcss
On Windows:
mv tailwindcss-windows-x64.exe tailwindcss.exe
- Create your input CSS with DaisyUI plugin
Create a styles
directory with an input.css
file:
mkdir -p styles
echo '@import "tailwindcss";
@plugin "daisyui";' > styles/input.css
- Usage Options
Build CSS once:
./tailwindcss -i styles/input.css -o styles/output.css
Development mode with watch (automatically rebuilds when files change):
./tailwindcss -i styles/input.css -o styles/output.css --watch
This is a fork of Tailwind CSS. For the original project:
This project is licensed under the same terms as Tailwind CSS. See the LICENSE file for details.