Spaces:
Sleeping
Sleeping
| import type { Config } from 'tailwindcss' | |
| const config: Config = { | |
| content: [ | |
| './pages/**/*.{js,ts,jsx,tsx,mdx}', | |
| './components/**/*.{js,ts,jsx,tsx,mdx}', | |
| './app/**/*.{js,ts,jsx,tsx,mdx}', | |
| ], | |
| darkMode: 'selector', | |
| theme: { | |
| extend: { | |
| colors: { | |
| // Extend with additional colors while keeping defaults | |
| indigo: { | |
| 50: '#eef2ff', | |
| 100: '#e0e7ff', | |
| 200: '#c7d2fe', | |
| 300: '#a5b4fc', | |
| 400: '#818cf8', | |
| 500: '#6366f1', | |
| 600: '#4f46e5', | |
| 700: '#4338ca', | |
| 800: '#3730a3', | |
| 900: '#312e81', | |
| 950: '#1e1b4b', | |
| } | |
| }, | |
| backdropBlur: { | |
| xl: 'blur(24px)', | |
| }, | |
| boxShadow: { | |
| glow: '0 0 20px rgba(99, 102, 241, 0.3)', | |
| }, | |
| fontFamily: { | |
| sans: ['var(--font-geist-sans)', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif'], | |
| }, | |
| animation: { | |
| 'blob': 'blob 7s infinite', | |
| }, | |
| keyframes: { | |
| blob: { | |
| '0%': { transform: 'translate(0px, 0px) scale(1)' }, | |
| '33%': { transform: 'translate(30px, -50px) scale(1.1)' }, | |
| '66%': { transform: 'translate(-20px, 20px) scale(0.9)' }, | |
| '100%': { transform: 'translate(0px, 0px) scale(1)' }, | |
| } | |
| } | |
| }, | |
| }, | |
| plugins: [], | |
| } | |
| export default config |