Create web/tailwind.config.ts
Browse files- web/tailwind.config.ts +57 -0
web/tailwind.config.ts
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import type { Config } from 'tailwindcss'
|
| 2 |
+
|
| 3 |
+
const config: Config = {
|
| 4 |
+
content: [
|
| 5 |
+
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
| 6 |
+
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
| 7 |
+
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
| 8 |
+
],
|
| 9 |
+
theme: {
|
| 10 |
+
extend: {
|
| 11 |
+
colors: {
|
| 12 |
+
gray: {
|
| 13 |
+
850: '#1a1b23',
|
| 14 |
+
},
|
| 15 |
+
},
|
| 16 |
+
backgroundImage: {
|
| 17 |
+
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
|
| 18 |
+
'gradient-conic':
|
| 19 |
+
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
|
| 20 |
+
},
|
| 21 |
+
animation: {
|
| 22 |
+
'bounce-slow': 'bounce 2s infinite',
|
| 23 |
+
'pulse-slow': 'pulse 3s infinite',
|
| 24 |
+
'spin-slow': 'spin 3s linear infinite',
|
| 25 |
+
'gradient': 'gradient 6s ease infinite',
|
| 26 |
+
'float': 'float 6s ease-in-out infinite',
|
| 27 |
+
'glow': 'glow 2s ease-in-out infinite',
|
| 28 |
+
},
|
| 29 |
+
keyframes: {
|
| 30 |
+
gradient: {
|
| 31 |
+
'0%, 100%': {
|
| 32 |
+
'background-size': '200% 200%',
|
| 33 |
+
'background-position': 'left center',
|
| 34 |
+
},
|
| 35 |
+
'50%': {
|
| 36 |
+
'background-size': '200% 200%',
|
| 37 |
+
'background-position': 'right center',
|
| 38 |
+
},
|
| 39 |
+
},
|
| 40 |
+
float: {
|
| 41 |
+
'0%, 100%': { transform: 'translateY(0)' },
|
| 42 |
+
'50%': { transform: 'translateY(-10px)' },
|
| 43 |
+
},
|
| 44 |
+
glow: {
|
| 45 |
+
'0%, 100%': { opacity: '1' },
|
| 46 |
+
'50%': { opacity: '0.7' },
|
| 47 |
+
},
|
| 48 |
+
},
|
| 49 |
+
},
|
| 50 |
+
},
|
| 51 |
+
plugins: [
|
| 52 |
+
require('@tailwindcss/forms'),
|
| 53 |
+
require('@tailwindcss/typography'),
|
| 54 |
+
],
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
export default config
|