-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
75 lines (73 loc) · 1.54 KB
/
tailwind.config.ts
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import type { Config } from "tailwindcss";
const config = {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
],
prefix: "",
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
fontFamily: {
space: ['"Space Grotesk"', "sans-serif"],
},
colors: {
bg: "#dcf7e7",
main: "#6e61ff",
mainAccent: "#ff5710", // not needed for shadcn
mint: {
10: "#f1f6f1",
50: "#dff9f0",
100: "#cef6e9",
800: "#b0f0da",
},
mustard: {
50: "#fdffd0",
100: "#f4f8ac",
800: "#f1f78e",
},
peach: {
50: "#ffeadd",
100: "#ffd6bc",
800: "#ffbc90",
},
purple: {
50: "#efe9fe",
100: "#d5c8fb",
700: "#b9a4ff",
800: "#a88dff",
},
},
borderRadius: {
base: "10px",
},
boxShadow: {
base: "4px 4px 0px 0px rgba(0,0,0,1)",
},
translate: {
boxShadowX: "4px",
boxShadowY: "4px",
},
fontWeight: {
base: "500",
heading: "700",
},
},
},
plugins: [
require("tailwindcss-animate"),
require("@tailwindcss/typography"),
require("tailwindcss-bg-patterns"),
// require("@tailwindcss/aspect-ratio"),
],
} satisfies Config;
export default config;