-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
50 lines (49 loc) · 1.52 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class",
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
animation: {
"infinite-scroll": "infinite-scroll 5s linear infinite",
},
keyframes: {
"infinite-scroll": {
from: { transform: "translateX(0)" },
to: { transform: "translateX(-100%)" },
},
},
},
colors: {
bone: "#EAF7DF",
purple: "#381E70",
slate: "#1e293b",
slate100: "#f1f5f9",
slate200: "#e2e8f0",
slate300: "#cbd5e1",
slate400: "#94a3b8",
slate600: "#475569",
slate700: "#334155",
slate800: "#1e293b",
slate900: "#393939",
sand: "#DFD8BC",
sand100: "#f8f3e6",
sand200: "#eae6d9",
white: "#ffffff",
black: "#000000",
black100: "#1e1e1e",
tosca100: "#4096bf",
},
},
plugins: [require("@tailwindcss/typography")],
};
export default config;