-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
45 lines (45 loc) · 997 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
experimental: {
optimizeUniversalDefaults: true,
},
content: [
"./src/**/*.{ts,tsx}",
"./node_modules/tailwind-datepicker-react/dist/**/*.js", // <--- Add this line
],
theme: {
extend: {
colors: {
black: "#000",
white: "#fff",
PED: {
yellow: {
DEFAULT: "#F2DC5D",
secondary: "#F5C076",
},
orange: {
DEFAULT: "#FF521B",
secondary: "#FC60A8",
tertiary: "#FFD5FF",
},
purple: {
DEFAULT: "#5438DC",
secondary: "#6665DD",
tertiary: "#92DCEF",
},
green: {
DEFAULT: "#59CD90",
secondary: "#2D936C",
},
},
},
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
},
plugins: [require("@tailwindcss/typography")],
}