import type { Config } from "tailwindcss" const config: Config = { content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], theme: { extend: { colors: { primary: { DEFAULT: "#38dacac3", dark: "#35d1c1", }, }, }, }, } export default config