forked from openpeer/openpeer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
37 lines (35 loc) · 833 Bytes
/
Copy pathtailwind.config.cjs
File metadata and controls
37 lines (35 loc) · 833 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
// tailwind.config.cjs
/** @type {import('tailwindcss').Config} */
const { fontFamily } = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./app/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
animation: {
pulse: 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
spin: 'spin 1s linear infinite'
},
keyframes: {
pulse: {
'0%, 100%': { opacity: 1 },
'50%': { opacity: 0.5 }
},
spin: {
from: { transform: 'rotate(0deg)' },
to: { transform: 'rotate(360deg)' }
}
},
fontFamily: {
sans: ['var(--font-manrope)', ...fontFamily.sans]
},
colors: {
cyan: {
200: '#7B80FE',
600: '#020AD4',
800: '#03088D'
}
}
}
},
plugins: [require('@tailwindcss/forms')]
};