import type { Config } from "tailwindcss"; const config: Config = { content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], theme: { extend: { colors: { snowball: "#0f86f5", }, }, }, plugins: [], }; export default config;