feat(create-turbo): create with-tailwind

This commit is contained in:
Turbobot
2023-11-13 11:24:58 +01:00
committed by Simon C
commit 9eee5ad8a0
63 changed files with 5565 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{
"name": "tailwind-config",
"version": "0.0.0",
"private": true,
"main": "index.ts",
"types": "index.ts",
"devDependencies": {
"tailwindcss": "^3.2.4"
}
}

View File

@ -0,0 +1,15 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
backgroundImage: {
"glow-conic":
"conic-gradient(from 180deg at 50% 50%, #2a8af6 0deg, #a853ba 180deg, #e92a67 360deg)",
},
},
},
plugins: [],
};
export default config;