-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
54 lines (53 loc) · 1.03 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
const { violet, blackA, mauve, green } = require('@radix-ui/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
purge: {
content: [
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
],
options: {
safelist: [
'sm:w-1/2',
'sm:w-1/3',
'lg:w-1/2',
'sm:mt-10',
'sm:text-4xl',
'md:w-1/2',
'md:w-1/3',
'md:w-1/4',
'md:w-1/5',
'md:w-1/6',
'lg:w-1/3',
'2xl:px-96',
'md:grid-cols-3 ',
'lg:grid-cols-6',
'lg:gap-14',
],
},
},
darkMode: 'media',
theme: {
extend: {
colors: {
...violet,
...blackA,
...mauve,
green: {
...green,
500: '#50E3C2',
600: '#29BC9B',
},
},
width: {
'2/7': '28.5714286%',
},
fonts: {
body: ['Inter', 'sans-serif'],
heading: ['Poppins', 'sans-serif'],
},
},
},
variants: {},
plugins: [],
}