-
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) · 808 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
38 lines (36 loc) · 808 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: "media",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-outfit)", "system-ui", "sans-serif"],
},
colors: {
brand: {
50: "#f0f9f6",
100: "#daf0e8",
200: "#b8e1d2",
300: "#89cab4",
400: "#58ab92",
500: "#378f79",
600: "#297263",
700: "#245b51",
800: "#214a43",
900: "#1e3e39",
},
stone: {
850: "#1c1917",
950: "#0c0a09",
},
},
},
},
plugins: [],
};
export default config;