/** @type {import('tailwindcss').Config} */ export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { extend: {}, colors: { transparent: 'transparent', current: 'currentColor', 'white': '#ffffff', 'purple': '#3f3cbb', 'midnight': '#121063', 'metal': '#565584', 'tahiti': '#058effff', 'tahitilight': '#f2fafb', 'silver': '#ecebff', 'bubble-gum': '#ff77e9', 'bermuda': '#78dcca', }, screens: { 'mobile': '1px', // => @media (min-width: 350px) { ... } 'tablet': '640px', // => @media (min-width: 640px) { ... } 'desktop': '1024px', // => @media (min-width: 1024px) { ... } } }, plugins: [], }