-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (51 loc) · 1.4 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./client/**/*.{ejs,js}"],
theme: {
extend: {
colors: {
blueOne: "#102C57",
goldOne: "#E3B04B",
redOne: '#C10E0E',
whiteOne: '#FEFAF6',
creamOne: '#EADBC8',
beigeOne: '#DAC0A3',
simpleBlue: '#2360bd',
},
backgroundImage: {
'bg-img': "url('/images/michel-caicedo-9cqLeJoS46w-unsplash.jpg')"
},
fontFamily: {
"arvo": ["Arvo", "serif"]
},
screens: {
'widescreend': {'raw': '(min-aspect-ratio: 3/2)'},
'tailscreen': {'raw': '(min-aspect-ratio: 13/20)'},
},
keyframes: {
'open-menu': {
'0%': { transform: 'scaleY(0)' },
'80%': { transform: 'scaleY(1.2)' },
'100%': { transform: 'scaleY(1)' },
},
'bg-fill': {
'0%': { backgroundPosition: '200% 0' },
'100%': { backgroundPosition: '0 0' },
},
'text-fill-animation': {
'0%': { backgroundPosition: '200% 0' },
'100%': { backgroundPosition: '0 0' },
},
},
animation: {
'open-menu': 'open-menu 0.5s ease-in-out forwards',
'bg-fill-animation': 'bg-fill 1.5s forwards',
'text-fill-animation': 'text-fill-animation 1.5s ease forwards',
},
fontSize: {
"xxs": "9px"
}
},
},
plugins: [],
}