-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
59 lines (56 loc) · 1.66 KB
/
tailwind.config.js
File metadata and controls
59 lines (56 loc) · 1.66 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./views/**/*.ejs', './public/**/*.js'],
theme: {
extend: {
colors: {
// Status colors
'status-open': '#0d6efd',
'status-progress': '#0dcaf0',
'status-waiting-admin': '#ffc107',
'status-waiting-dept': '#dc3545',
'status-closed': '#198754',
// Priority colors
'priority-critical': '#dc3545',
'priority-high': '#fd7e14',
'priority-medium': '#0dcaf0',
'priority-low': '#6c757d',
'priority-unset': '#f8f9fa',
// Bootstrap equivalent colors
'bs-primary': '#0d6efd',
'bs-secondary': '#6c757d',
'bs-success': '#198754',
'bs-danger': '#dc3545',
'bs-warning': '#ffc107',
'bs-info': '#0dcaf0',
'bs-light': '#f8f9fa',
'bs-dark': '#212529',
// Neutral palette for UI components
neutral: {
50: '#f9fafb',
100: '#f3f4f6',
200: '#e5e7eb',
300: '#d1d5db',
500: '#6b7280',
700: '#374151',
900: '#111827',
},
},
keyframes: {
'gentle-pulse': {
'0%, 100%': { transform: 'scale(1)', opacity: '1' },
'50%': { transform: 'scale(1.05)', opacity: '0.9' },
},
'pulse-subtle': {
'0%, 100%': { boxShadow: '0 0 0 0 rgba(220, 53, 69, 0.4)' },
'50%': { boxShadow: '0 0 0 6px rgba(220, 53, 69, 0)' },
},
},
animation: {
'gentle-pulse': 'gentle-pulse 3s ease-in-out infinite',
'pulse-subtle': 'pulse-subtle 2s ease-in-out infinite',
},
},
},
plugins: [],
};