-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
37 lines (35 loc) · 775 Bytes
/
tailwind.config.ts
File metadata and controls
37 lines (35 loc) · 775 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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: 'class',
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary: {
50: "#e8f5e6",
100: "#c5e6c0",
200: "#9fd698",
300: "#78c56f",
400: "#5ab84f",
500: "#3caa2f",
600: "#2d9422",
700: "#1f7d16",
800: "#136207",
900: "#0a4d03",
},
swamp: {
orange: "#f97316",
blue: "#0ea5e9",
teal: "#136207",
water: "#164e63",
},
},
},
},
plugins: [],
};
export default config;