-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
100 lines (100 loc) · 2.76 KB
/
Copy pathtailwind.config.js
File metadata and controls
100 lines (100 loc) · 2.76 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
"./utils/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: "#461276",
secondary: "#004D00",
tertiary: "#F2F0F0",
regular: "#CB08F0",
regular2: "rgba(66, 96, 193, 0.2)",
regular3: "rgba(255, 255, 255, 0.6)",
newgray: "#181818",
},
fontFamily: {
'archivo': ['Archivo', 'sans-serif'],
'montserrat': ["Montserrat", "sans-serif"],
'georgia': ['Georgia', 'serif'], // Added Georgia
'helvetica': ['Helvetica', 'Arial', 'sans-serif'], // Added Helvetica with fallbacks
},
fontWeight: {
'thin': '100',
'extralight': '200',
'light': '300',
'normal': '400',
'medium': '500',
'semibold': '600',
'bold': '700',
'extrabold': '800',
'black': '900',
},
backgroundImage: {
'onboarding-gradient': 'linear-gradient(173.95deg, #603CD0 4.79%, #3D1982 100%)',
},
keyframes: {
scroll: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' },
},
'scroll-rtl': {
'0%': { transform: 'translateX(-50%)' },
'100%': { transform: 'translateX(0)' },
},
},
animation: {
scroll: 'scroll 90s linear infinite',
'scroll-rtl': 'scroll-rtl 90s linear infinite',
},
boxShadow: {
sm: "0px 0px 2px rgba(0, 0, 0, 0.05)",
md: "0px 0px 6px rgba(0, 0, 0, 0.1), 0px 0px 4px rgba(0, 0, 0, 0.04)",
lg: "0px 0px 15px rgba(0, 0, 0, 0.1), 0px 0px 6px rgba(0, 0, 0, 0.05)",
xl: "0px 0px 25px rgba(0, 0, 0, 0.1), 0px 0px 10px rgba(0, 0, 0, 0.04)",
"2xl": "0px 0px 50px rgba(0, 0, 0, 0.25)",
"3xl": "0px 0px 50px rgba(0, 0, 0, 0.3)",
'new': '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
none: "none",
},
screens: {
"1xl": "1280px",
"2xl": "1440px",
},
maxWidth: {
"screen-2xl": "1440px",
"screen-1xl": "1280px",
},
lineHeight: {
"extra-tight": "1.1px",
"extra-loose": "110px",
},
},
},
variants: {
extend: {
backgroundColor: ["checked"],
borderColor: ["checked"],
ringColor: ["focus"],
},
},
plugins: [
function ({ addUtilities }) {
addUtilities({
".body-fixed": {
top: "0",
left: "0",
right: "0",
bottom: "0",
overflow: "hidden",
},
});
},
],
};