forked from fr0tt/benotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (64 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
module.exports = {
purge: {
content: [
'./resources/**/*.vue',
'./resources/js/**/*.js',
'./resources/views/**/*.blade.php',
'./resources/views/**/*.twig',
],
safelist: [
'text-red-600',
'text-green-600',
'border-red-600',
'border-green-600',
],
},
theme: {
extend: {
colors: {
orange: {
200: '#ffe4cc',
600: '#FF7700',
// from tailwind v1
100: '#fffaf0',
300: '#fbd38d',
500: '#ed8936',
700: '#c05621',
},
gray: {
100: '#fbfbfb',
200: '#f3f3f3',
800: '#1e242d',
900: '#14181d',
// from tailwind v1
300: '#e2e8f0',
400: '#cbd5e0',
500: '#a0aec0',
600: '#718096',
700: '#4a5568',
},
blue: {
// from tailwind v1
600: '#3182ce',
},
},
fontFamily: {
mono: [
'JetBrains Mono',
'Fira Code',
'Cascadia Code',
'Consolas',
'Courier New',
'monospace',
],
},
spacing: {
1.5: '0.375rem',
7: '1.75rem',
80: '20rem',
},
},
},
variants: {},
plugins: [],
}