-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
81 lines (80 loc) · 1.92 KB
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./content/blogs/**/*.mdx',
],
theme: {
extend: {
colors: {
zinc: {
...colors.zinc,
550: '#5F5F65',
},
primary: { ...colors.violet, DEFAULT: colors.violet[500] },
meta: '#0081FB',
muted: '#F5F5F5',
accent: {
...colors.zinc,
DEFAULT: colors.zinc[100],
},
},
fontFamily: {
sans: ['var(--font-inter)'],
},
spacing: {
15: '60px',
18: '72px',
22: '88px',
25: '100px',
30: '120px',
50: '200px',
70: '280px',
75: '300px',
80: '320px',
84: '336px',
88: '352px',
90: '360px',
100: '400px',
112: '448px',
116: '464px',
120: '480px',
125: '500px',
130: '520px',
140: '560px',
150: '600px',
160: '640px',
170: '680px',
180: '720px',
190: '760px',
200: '800px',
},
keyframes: {
shimmer: {
from: { backgroundPosition: '200% 0' },
to: { backgroundPosition: '-200% 0' },
},
['shine-infinite']: {
'0%': {
transform: 'skew(-12deg) translateX(-100%)',
},
'100%': {
transform: 'skew(-12deg) translateX(100%)',
},
},
},
animation: {
'pulse-slow': 'pulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite',
shimmer: 'shimmer 8s ease-in-out infinite',
['shine-infinite']: 'shine-infinite 2s ease-in-out infinite',
},
},
},
plugins: [
require('tailwindcss-debug-screens'),
require('tailwindcss-animate'),
require('@tailwindcss/typography'),
],
};