diff options
| author | 2023-04-17 18:53:55 +0000 | |
|---|---|---|
| committer | 2023-04-17 18:53:55 +0000 | |
| commit | b135aac8531c1e1488147ad8c6f98eddbdbe0c99 (patch) | |
| tree | 189e9fea7109564d63207e231d5b0e5624243072 /tailwind.config.js | |
| download | HydroRoll-b135aac8531c1e1488147ad8c6f98eddbdbe0c99.tar.gz HydroRoll-b135aac8531c1e1488147ad8c6f98eddbdbe0c99.zip | |
Initial commit
Created from https://vercel.com/new
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..5ddfa06 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,18 @@ +const defaultTheme = require("tailwindcss/defaultTheme"); + +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./app/**/*.{js,ts,jsx,tsx}", "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"], + theme: { + fontFamily: { + sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans], + }, + extend: { + dropShadow: { + cta: ["0 10px 15px rgba(219, 227, 248, 0.2)"], + blue: ["0 10px 15px rgba(59, 130, 246, 0.2)"], + }, + }, + }, + plugins: [require("@tailwindcss/forms")], +}; |
