-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
42 lines (41 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: '#1B1D27',
secondary: '#2A2D3A',
accent: '#1FD978',
},
fontFamily: {
sans: ['system-ui', '"Segoe UI"', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', '"Apple Color Emoji"', '"Segoe UI Emoji"'],
},
keyframes: {
shake: {
'0%, 100%': { transform: 'translateX(0)' },
'10%, 30%, 50%, 70%, 90%': { transform: 'translateX(-10px)' },
'20%, 40%, 60%, 80%': { transform: 'translateX(10px)' },
}
},
animation: {
shake: 'shake 0.5s cubic-bezier(.36,.07,.19,.97) both',
},
borderColor: {
border: 'hsl(var(--border))',
},
container: {
center: true,
padding: '2rem',
screens: {
'2xl': '1400px',
},
},
},
},
plugins: [],
}