Spaces:
Sleeping
Sleeping
| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./assets/**/*.{js,jsx,ts,tsx}", | |
| "./templates/**/*.html", | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| // Notion/ChatGPT-like dark mode colors | |
| gray: { | |
| 850: '#1f2023', | |
| 900: '#191919', | |
| 950: '#101010', | |
| } | |
| }, | |
| animation: { | |
| 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite', | |
| } | |
| }, | |
| }, | |
| plugins: [], | |
| } | |