-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
71 lines (66 loc) · 2.12 KB
/
tailwind.config.js
File metadata and controls
71 lines (66 loc) · 2.12 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
'inter-tight': ['Inter Tight', 'sans-serif'],
},
screens: {
'xl2': '1500px', // Add custom screen size for 1500px
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
animation: {
shimmer: 'shimmer 1.5s infinite',
blink: 'blink 1s infinite',
},
keyframes: {
shimmer: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(100%)' },
},
blink: {
'0%, 50%': { opacity: '1' },
'51%, 100%': { opacity: '0' },
},
},
},
screens: {
'sm': '641px',
// => @media (min-width: 640px) { ... }
'md': '769px',
// => @media (min-width: 768px) { ... }
'lg': '1025px',
// => @media (min-width: 1024px) { ... }
'xl': '1281px',
// => @media (min-width: 1280px) { ... }
'2xl': '1537px',
// => @media (min-width: 1536px) { ... }
},
},
plugins: [require('daisyui')],
daisyui: {
themes: [
{
light: {
primary: '#0000',
secondary: '#f5f5f5',
accent: '#A8200D',
neutral: '#fafafa',
'primary-content': '#ffffff',
link: '#4485F2',
'--rounded-btn': '0.0px',
},
},
],
},
};