-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
31 lines (30 loc) · 921 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
'pop-color-change': 'pop-and-color-change 2s ease-in-out infinite', // Animation name with duration
},
keyframes: {
'pop-and-color-change': {
'0%': { transform: 'scale(1)', color: 'white' },
'25%': { transform: 'scale(1.1)', color: '#705126' }, // Brown color
'50%': { transform: 'scale(1)', color: 'white' },
'75%': { transform: 'scale(1.1)', color: '#705126' },
'100%': { transform: 'scale(1)', color: 'white' },
},
},
colors: {
primary: "#A37B5C",
secondary: "#D2B48C",
tertiary: "#4e2e15",
},
},
},
plugins: [],
};