-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.34 KB
/
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
46
47
48
49
50
51
52
53
54
55
/** @type {import('tailwindcss').Config} */
import withMT from "@material-tailwind/react/utils/withMT";
export default withMT({
content: ["./index.html", "./src/**/*.{ts,tsx}"],
purge: {
content: ["./src/**/*.tsx"],
},
theme: {
extend: {
colors: {
black: "#0F0F0F",
"dark-grey": "#141414",
"light-grey": "#252525",
blue: "#3671E9",
purple: "#7583FF",
"light-blue": "#4C94FF",
green: "#00C278",
dark_green: "#166534",
light_green: "#00C2781A",
light_green_2: "#DCFCE7",
light_text: "#FFFFFF99",
red: "#EFA411",
pen_blue: "#1D4ED8",
pink: "#991B1B",
light_pink: "#FECACA",
"light-green": "#FFF281",
"off-white": "#FCFCFC",
gray: { 950: "#141414" },
},
screens: {
"2xl": "1536px",
},
animation: {
"infinite-scroll": "infinite-scroll 25s linear infinite",
},
keyframes: {
"infinite-scroll": {
from: { transform: "translateX(0)" },
to: { transform: "translateX(-100%)" },
},
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
typography: {
poppins: {
css: {
fontFamily: "Poppins, sans-serif",
},
},
},
},
},
plugins: [],
});