-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (57 loc) · 1.46 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./sanity-ecommerce/**/*.{js,ts,jsx,tsx',
],
theme: {
extend: {
width: {
500: '500px',
300: '300px',
},
spacing: {
'600px': '600px',
'530px': '530px',
'560px': '560px',
},
screens: {
small: { min: '360px', max: '650px' },
medium: { min: '651px', max: '1023px' },
large: { min: '1024px', max: '1279px' },
},
colors: {
'primary-blue': '#DDDDDD',
' secondary': '#0081B4',
' rash': '#2C3333',
},
},
fontFamily: {
abc: [" K24 Kurdish Light Light"]
}
},
plugins: [],
variants: {
backgroundColor: ['responsive', 'hover', 'foucs', 'active']
},
fontSize: {
'2xl': [
'1.5rem',
{
lineHeight: '2rem',
letterSpacing: '-0.01em',
fontWeight: '500',
},
],
'3xl': [
'5rem',
{
lineHeight: '4rem',
letterSpacing: '-0.02em',
fontWeight: '900',
},
],
},
}