testnet-onboarding-app/tailwind.config.ts

16 lines
261 B
TypeScript
Raw Normal View History

2024-08-09 00:21:23 +00:00
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;