forked from fr0tt/benotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (44 loc) · 1.11 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
const { colors } = require('tailwindcss/defaultTheme')
module.exports = {
purge: {
content: [
'./resources/**/*.vue',
'./resources/js/**/*.js',
'./resources/views/**/*.blade.php',
'./resources/views/**/*.twig',
],
},
theme: {
extend: {
colors: {
orange: {
...colors.orange,
600: '#FF7700',
200: '#ffe4cc',
},
gray: {
...colors.gray,
100: '#fbfbfb',
200: '#f3f3f3',
},
},
fontFamily: {
mono: [
'JetBrains Mono',
'Fira Code',
'Cascadia Code',
'Consolas',
'Courier New',
'monospace',
],
},
spacing: {
1.5: '0.375rem',
7: '1.75rem',
80: '20rem',
},
},
},
variants: {},
plugins: [],
}