-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (51 loc) · 1.27 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
fontFamily: {
'header': ["Century\\ Gothic", "CenturyGothic", "AppleGothic", "sans-serif"],
'body': ["Optima", "Segoe", "Segoe UI", "Candara", "Calibri", "Arial", "sans-serif"],
},
extend: {
gridTemplateColumns: {
"100": "repeat(100, 1fr)",
},
inset: {
"1/10": "10%",
},
padding: {
'1/4': '25%',
'1/2': '50%',
full: '100%',
},
height: {
'1/10': '10%',
},
colors: {
'pastel-100': '#FCF8ED',
'pastel-200': '#DCDED5',
'pastel-300': '#B899C7',
'pastel-400': '#5B74D7',
'pastel-500': '#181925',
'pastel-text': '#181925',
},
keyframes: {
rolodex: {
'0%, 100%': { transform: 'translateY(0)' },
'25%, 50%': { transform: 'translateY(-25%)' },
'50%, 75%': { transform: 'translateY(-50%)' },
'75%': { transform: 'translateY(-75%)' },
}
},
transitionTimingFunction: {
'expo': 'cubic-bezier(.75,0,.25,1)',
},
animation: {
rolodex: 'rolodex 16s ease-expo infinite',
},
},
},
plugins: [],
}