/** @type {import('tailwindcss').Config} */ module.exports = { mode: 'jit', content: ["./src/**/*.{html,js}"], darkMode: false, theme: { extend: { colors: { primary: "#111111", secondary: "#f9b6c1", sidebar: "#161616", texthover: "#eae8f0", }, }, }, plugins: [ require('tailwindcss-image-rendering'), ], }