forked from Privoce/Bot-Studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (40 loc) · 955 Bytes
/
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
// eslint-disable-next-line import/no-extraneous-dependencies
const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: '',
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./hooks/**/*.{js,ts,jsx,tsx}',
'./layouts/**/*.{js,ts,jsx,tsx}',
'./lib/**/*.{js,ts,jsx,tsx}',
'./utils/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
theme: colors.emerald,
error: colors.red,
},
spacing: {
4.5: '1.125rem',
13: '3.25rem',
15: '3.75rem',
17: '4.25rem',
18: '4.5rem',
19: '4.75em',
21: '5.25rem',
25: '6.25rem',
66: '16.5rem',
75: '18.75rem', // 300px
79: '19.75rem',
90: '22.5rem',
100: '25rem',
120: '30rem',
170: '42.5rem', // 680px
},
},
},
plugins: [],
};