-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 874 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
37 lines (36 loc) · 874 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
// This file might not be necessary at all. Having or deleting it didn't change anything.
// It's kept here if its needed in the future.
module.exports = {
darkMode: 'class',
content: [
// the website itself
'./apps/website/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
gray: {
650: '#4b5563',
750: '#374151',
850: '#1f2937',
},
slate: {
650: '#475569',
750: '#334155',
850: '#1e293b',
}
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
boxShadow: {
'glow-sm': '0 0 5px rgba(59, 130, 246, 0.5)',
'glow-md': '0 0 10px rgba(59, 130, 246, 0.4)',
}
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
};