-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
35 lines (35 loc) · 867 Bytes
/
tailwind.config.cjs
File metadata and controls
35 lines (35 loc) · 867 Bytes
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
module.exports = {
content: ["./entrypoints/**/*.html", "./src/**/*.{ts,tsx,js,jsx}"],
// Safelist for classes that may be built dynamically or appear in expressions
// safelist: [
// 'bg-white',
// 'bg-gray-50',
// 'bg-gray-800',
// 'bg-gray-900',
// 'dark:bg-transparent',
// 'text-gray-500',
// 'text-gray-900',
// 'text-gray-100',
// 'text-xs',
// 'text-sm',
// 'text-lg',
// 'font-semibold',
// 'px-2',
// 'py-1',
// { pattern: /bg-(gray|amber)-(50|100|200|300|400|500|600|700|800|900)/ },
// { pattern: /text-(gray|amber)-(50|100|200|300|400|500|600|700|800|900)/ },
// { pattern: /p(x|y)-\d/ },
// { pattern: /w-\d/ },
// { pattern: /h-\d/ }
// ]
theme: {
extend: {
colors: {
amber: {
400: '#f59e0b'
}
}
}
},
plugins: []
};