-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
63 lines (63 loc) · 1.51 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
56
57
58
59
60
61
62
63
module.exports = {
purge: {
enabled: true,
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./src/**/*.{js,ts,jsx,tsx}"],
},
darkMode: "media", // or 'media' or 'class'
theme: {
screen: {
sm: { min: "640px", max: "767px" },
md: { min: "768px", max: "1023px" },
lg: { min: "1024px", max: "1279px" },
xl: { min: "1280px", max: "1535px" },
"2xl": { min: "1536px" },
},
extend: {
fontFamily: {
"eng-sub-font-1": ["Literata", "sans-serif"],
"eng-sub-font-2": ["Poppins", "sans-serif"],
},
colors: {
"signature-color": "#606DEE",
"signature-color-blur": "#9498EC",
javascript: "#f1DD35",
typescript: "#3178c6",
html: "#e44b23",
react: "#61DBFB",
swift: "#ffac45",
database: "#000000",
git: "#171515",
nestjs: "#e0234e",
mysql: "#00758F",
aws: "#FF9900",
docker: "#0DB7ED",
redis: "#A41E11",
nodejs: "#68A063",
css: "#264de4",
},
},
},
variants: {
extend: {
keyframes: {
"fade-in-down": {
"0%": {
opacity: "0",
transform: "translateY(-10px)",
},
"100%": {
opacity: "1",
transform: "translateY(0)",
},
},
},
animation: {
"fade-in-down": "fade-in-down 0.5s ease-out",
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/line-clamp"),
],
};