-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
98 lines (97 loc) · 2.36 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
const colors = require('tailwindcss/colors')
module.exports = {
prefix: '',
mode: 'jit',
important: false,
content: ['./src/**/*.{html,ts}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(-3deg)' },
'50%': { transform: 'rotate(3deg)' },
},
'fade-in-down': {
'0%': {
opacity: '0',
transform: 'translateY(-10px)',
},
'100%': {
opacity: '1',
transform: 'translateY(0)',
},
},
'fade-out-down': {
from: {
opacity: '1',
transform: 'translateY(0px)',
},
to: {
opacity: '0',
transform: 'translateY(10px)',
},
},
'fade-in-up': {
'0%': {
opacity: '0',
transform: 'translateY(10px)',
},
'100%': {
opacity: '1',
transform: 'translateY(0)',
},
},
'fade-out-up': {
from: {
opacity: '1',
transform: 'translateY(0px)',
},
to: {
opacity: '0',
transform: 'translateY(10px)',
},
},
},
animation: {
wiggle: 'wiggle 1s ease-in-out infinite',
'fade-in-down': 'fade-in-down 0.3s ease-out',
'fade-out-down': 'fade-out-down 0.3s ease-out',
'fade-in-up': 'fade-in-up 0.3s ease-out',
'fade-out-up': 'fade-out-up 0.3s ease-out',
},
boxShadow: {
custom: '0px 0px 50px 0px rgb(82 63 105 / 15%)',
},
colors: {
primary: colors.green,
night: {
50: '#e4e4eb',
100: '#bbbace',
200: '#8f8ead',
300: '#66658c',
400: '#4b4777',
500: '#302a62',
600: '#2b245b',
700: '#241c51',
800: '#1c1445',
900: '#130030',
},
},
},
fontFamily: {
poppins: ['Poppins', 'system-ui', 'sans-serif'],
nunito: ['Nunito Sans', 'sans-serif'],
},
},
variants: {
extend: {},
scrollbar: ['dark', 'rounded']
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
require('tailwind-scrollbar')
],
}