export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], darkMode: 'class', theme: { extend: { colors: { gray: { 750: '#2d3748', } }, animation: { 'spin-slow': 'spin 2s linear infinite', 'fadeIn': 'fadeIn 0.2s ease-in', }, keyframes: { fadeIn: { '0%': { opacity: '0' }, '100%': { opacity: '1' }, } } }, }, plugins: [], }