-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
53 lines (52 loc) · 1.21 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} */
export default {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
animation: {
shimmer: 'shimmer 2s linear infinite',
},
keyframes: {
shimmer: {
from: {
backgroundPosition: '0 0',
},
to: {
backgroundPosition: '-200% 0',
},
},
},
colors: {
primary: '#365486',
outline: '#333333',
highlight: '#61afef',
},
transitionTimingFunction: {
'out-flex': 'cubic-bezier(0.05, 0.6, 0.4, 0.9)',
},
screens: {
xs: '480px',
},
fontFamily: {
inter: ['Inter var', 'sans-serif'],
subheading: ['Quicksand', 'sans-serif'],
heading: ['"DM Sans"', 'sans-serif'],
body: ['Lexend', 'sans-serif'],
},
boxShadow: {
card: `
0 0 1px 0 rgba(189,192,207,0.06),
0 10px 16px -1px rgba(189,192,207,0.2)
`,
cardhover: `
0 0 1px 0 rgba(189,192,207,0.06),
0 10px 16px -1px rgba(189,192,207,0.4)
`,
},
dropShadow: {
window: '8px 8px 0px #365486',
},
},
},
plugins: [],
};