-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 1.08 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
animation: {
breathe: 'breathe 2s ease-in-out infinite', // 4 seconds for holding + 1 second for transition
},
keyframes: {
breathe: {
'0%, 35%': { transform: 'scale(1.5)' }, // Hold scale(1.2) for 2 seconds
'50%, 85%': { transform: 'scale(1)' }, // Hold scale(1) for 2 seconds
'100%': { transform: 'scale(1.5)' }, // Ensure smooth transition
},
},
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
},
screens: {
xl: '1200px',
sm: '480px',
mini: '360px',
},
colors: {
darkblue: '#003d99',
blue: '#0066FF',
lightblue: '#F5F9FF',
white: '#FEFEFE',
black: '#1c1c1c',
grey: '#969696',
lightgrey: '#e6e6e6',
},
borderRadius: {
8: '8px',
12: '12px',
16: '16px',
},
},
},
plugins: [],
}