Files
var-monorepo/apps/hub/tailwind.config.ts
2025-06-27 18:05:19 -07:00

17 lines
284 B
TypeScript

import type { Config } from "tailwindcss";
export default {
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
rescuetrack: "#46b7a3",
},
transitionProperty: {
width: "width",
},
},
},
} satisfies Config;