/** @type {import('tailwindcss').Config} */ module.exports = { corePlugins: { preflight: false, }, content: ["./src/**/*.{html,js}", "./src/app/app.util.ts"], theme: { extend: { colors: { primary: "#1E5EFF", '3': "#333333", '6': "#666666", '9': "#999999", }, }, }, plugins: [], };