forked from cyclic-software/express-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
56 lines (54 loc) · 1.5 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
module.exports = {
content: ["./views/*"],
theme: {
extend: {
colors : {
p : "#405296",
a1: '#90B6FF',
a2: "#C2D8F2",
s : '#576C89',
text: '#5D6690',
text2: "#405296",
light: '#DBECFB',
...colors
},
screens: {
'xs': '425px',
'om': '870px',
...defaultTheme.screens
},
keyframes: {
arrow1: {
'0%': { transform: 'translateX(-120%)', opacity: '0' },
'100%' : {transform: 'translateX(0%)' , opacity: '1'}
},
arrow2: {
'0%': { transform: 'translateX(120%)', opacity: '0' },
'100%' : {transform: 'translateX(0%)' , opacity: '1'}
},
bounce1: {
'0%': { transform: 'translateY(0%)'},
'50%': { transform: 'translateY(-2%)'},
'100%' : {transform: 'translateY(0%)'}
},
bounce2: {
'0%': { transform: 'translateY(0%)'},
'50%': { transform: 'translateY(-0.4%)'},
'100%' : {transform: 'translateY(0%)'}
}
},
animation: {
arrow1: 'arrow1 3s ease-in-out',
arrow2: 'arrow2 3s ease-in-out',
bounce1: 'bounce1 2s ease-in-out infinite',
bounce2: 'bounce2 2s ease-in-out infinite'
}
},
},
plugins: [
require('tailwind-scrollbar')({ nocompatible: true }),
],
}