/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { screens: { "mobile": '360px', "tablet": '640px', "desktop": '1024px', }, colors: { "text-gradient": '-webkit-linear-gradient(#798FFF, #D375FF)' } }, }, plugins: [], }