-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
55 lines (54 loc) · 1.75 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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'back': '#0F1624',
'back-dark': '#0c121e',
'neon': '#00B2FF',
'coldGrey': '#929EB0',
'customPurple': '#945dd6',
'customIndigo': '#6978d1',
'customTeal': '#13adc7',
},
backgroundImage: {
'gradient-custom': 'linear-gradient(90deg, rgba(148,93,214,1) 0%, rgba(105,120,209,1) 55%, rgba(19,173,199,1) 100%)',
},
keyframes: {
'zoom-in-zoom-out': {
'0%': { transform: 'scale(1, 1)' },
'50%': { transform: 'scale(1.1, 1.1)' },
'100%': { transform: 'scale(1, 1)' },
},
'zoom-out-zoom-in': {
'0%': { transform: 'scale(1, 1)' },
'50%': { transform: 'scale(0.8, 0.8)' },
'100%': { transform: 'scale(1, 1)' },
},
},
animation: {
'zoom-in-zoom-out': 'zoom-in-zoom-out 2.5s ease-in-out infinite',
'zoom-out-zoom-in': 'zoom-out-zoom-in 2.5s ease-in-out infinite',
},
screens: {
xs: '480px',
}
},
container: {
center: true,
padding: '20px',
screens: {
xl: '1300px',
}
},
},
plugins: [
require('tailwindcss-animated')
],
}
export default config