-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (40 loc) · 913 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (40 loc) · 913 Bytes
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
const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
secondary: 'rgba(249, 250, 251, 0.54)',
tertiary: colors.zinc['700'],
dark: '#26252C',
grape: 'rgb(31, 30, 36)', // TODO: grape might not be the best name for this
midnight: colors.zinc['900']
},
animation: {
blink: 'blink 1s infinite'
},
keyframes: {
blink: {
'0%, 40%': { opacity: '100%' },
'50%, 90%': { opacity: '0%' }
}
}
},
container: {
center: true,
padding: {
DEFAULT: '2rem',
sm: '3rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
}
}
},
plugins: [],
}