-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
69 lines (69 loc) · 1.7 KB
/
tailwind.config.js
File metadata and controls
69 lines (69 loc) · 1.7 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.ts",
"./resources/**/*.svelte",
],
safelist: [
// Border colors for list cards
'border-blue-500',
'border-green-500',
'border-yellow-500',
'border-orange-500',
'border-red-500',
'border-gray-500',
// Background colors for tags
'bg-blue-100',
'bg-green-100',
'bg-yellow-100',
'bg-orange-100',
'bg-red-100',
'bg-gray-100',
// Background colors for dots
'bg-blue-500',
'bg-green-500',
'bg-yellow-500',
'bg-orange-500',
'bg-red-500',
'bg-gray-500',
// Text colors for tags
'text-blue-800',
'text-green-800',
'text-yellow-800',
'text-orange-800',
'text-red-800',
'text-gray-800',
// Dark mode background colors
'dark:bg-blue-900',
'dark:bg-green-900',
'dark:bg-yellow-900',
'dark:bg-orange-900',
'dark:bg-red-900',
'dark:bg-gray-900',
// Dark mode text colors
'dark:text-blue-200',
'dark:text-green-200',
'dark:text-yellow-200',
'dark:text-orange-200',
'dark:text-red-200',
'dark:text-gray-200',
],
theme: {
extend: {
screens: {
'xs': '480px',
},
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
xs: '0.5rem',
},
},
},
plugins: [],
}