-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
54 lines (53 loc) · 1.25 KB
/
tailwind.config.js
File metadata and controls
54 lines (53 loc) · 1.25 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
extend: {
textShadow: {
sm: "1px 1px 2px rgba(0, 0, 0, 0.5)",
default: "2px 2px 4px rgba(0, 0, 0, 0.5)",
lg: "3px 3px 6px rgba(0, 0, 0, 0.7)",
},
colors: {
primary: "#E64614",
secondary: "#FEC947",
},
screens: {
sm: "360px",
md: "768px",
size1024: "1024px",
lg: "1440px",
},
borderRadius: {
large: "53px",
large2: "66px",
extraLarge: "82px",
},
boxShadow: {
customShadow: "0 4px 16px 0 rgba(0, 0, 0, 0.08)",
},
},
},
plugins: [
function ({ addUtilities }) {
const newUtilities = {
".text-shadow-sm": {
textShadow: "1px 1px 2px rgba(0, 0, 0, 0.5)",
},
".text-shadow": {
textShadow: "2px 2px 4px rgba(0, 0, 0, 0.5)",
},
".text-shadow-lg": {
textShadow: "3px 3px 6px rgba(0, 0, 0, 0.7)",
},
".text-shadow-none": {
textShadow: "none",
},
};
addUtilities(newUtilities);
},
],
};