generated from catze-labs/next-tailwind-recoil-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
55 lines (55 loc) · 1.26 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} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./features/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontFamily: {
sans: ['DM Sans', 'sans-serif'],
},
extend: {
height: {
'nav-h': '100px',
'nav-mobile': '80px',
},
padding: {
'nav-h': '100px',
'nav-mobile': '80px',
},
colors: {
main: {
default: '#4F473B',
dark: '#27231D',
light: '#A7A39D',
lightest: '#EDECEB',
},
tequila: {
light: '#E35500',
dark: '#BD2F00',
},
yellow: '#FFED2E',
orange: '#FBB03B',
},
},
boxShadow: {
nav: '0px 10px 20px rgba(79, 71, 59, 0.2);',
},
keyframes: {
'buoyancy-1': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-8px)' },
},
'buoyancy-2': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-16px)' },
},
},
animation: {
'buoyancy-1': 'buoyancy-1 2s ease-in-out infinite',
'buoyancy-2': 'buoyancy-2 2s ease-in-out infinite',
},
},
plugins: [],
}