/** @type {import('tailwindcss').Config} */ module.exports = { content: ["./src/**/*.{html,js}"], theme: { extend: { colors:{ 'myBlack': '#2E2E2E', 'myText': '#535353', 'myAccent': '#4CB926', 'myPrimary': '#9D9D9D', 'mySecondary': '#B3B3B3', 'myButton': '#F8F8F8', } }, }, plugins: [], }