Spaces:
Sleeping
Sleeping
| import type { Config } from "tailwindcss"; | |
| const config: Config = { | |
| content: [ | |
| "./app/**/*.{js,ts,jsx,tsx,mdx}", | |
| "./components/**/*.{js,ts,jsx,tsx,mdx}", | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| ink: "#10121a", | |
| sand: "#f8f3ea", | |
| clay: "#d7a26c", | |
| pine: "#21493f", | |
| wine: "#7f3b3b", | |
| mist: "#dde5db", | |
| }, | |
| boxShadow: { | |
| card: "0 18px 45px rgba(16, 18, 26, 0.08)", | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| }; | |
| export default config; | |