forked from backpack-fux/storefront-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
70 lines (70 loc) · 1.5 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
64
65
66
67
68
69
70
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
ualert: '#FF00C7',
charyo: '#1F1F1F',
notpurple: '#F9F8FC',
purps: '#7e18ff',
purplehaze: '#b8b2ff',
lamegray: '#d9d9d9',
lavender: '#97B1FA',
aquayuck: '#B4FFDB'
},
backgroundImage: {
'gradient-radial': 'radial-gradient(#c6f6d5, #A5B4FC, #7e18ff)',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
width: {
'38': '9.5rem',
'112': '28rem',
'135': '33.75rem',
'137': '34.25rem',
'150': '37.5rem',
'152': '38rem',
},
height: {
'38': '9.5rem',
'112': '28rem',
'135': '33.75rem',
'137': '34.25rem',
'150': '37.5rem',
'152': '38rem',
},
spacing: {
'38': '9.5rem',
'80': '20rem',
'112': '28rem',
'135': '33.75rem',
'137': '34.25rem',
'150': '37.5rem',
'152': '38rem',
},
translate: {
'1/2': '50%',
},
inset: {
'1/2': '50%'
}
},
variants: {
extend: {
visibility: ['hover', 'focus'],
},
},
plugins: [],
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
},
};