forked from magic-peach/reframe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
38 lines (36 loc) · 1021 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
38 lines (36 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class", // Enable class-based dark mode
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
// Added files to catch utility strings hidden in hooks, providers, or custom UI state contexts
"./src/hooks/**/*.{js,ts,jsx,tsx,mdx}",
"./src/context/**/*.{js,ts,jsx,tsx,mdx}",
"./src/lib/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
film: {
50: "#fdf3f4",
100: "#fbe5e7",
200: "#f6c7cb",
300: "#f09ea5",
400: "var(--film-400)",
500: "#eb4f5b",
600: "var(--film-600)",
700: "#c22733",
800: "#a1232d",
900: "#862228",
950: "#480f13",
},
},
},
},
plugins: [],
};
export default config;