-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (48 loc) · 874 Bytes
/
tailwind.config.js
File metadata and controls
49 lines (48 loc) · 874 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
36
37
38
39
40
41
42
43
44
45
46
47
48
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./**/*.{html,js, css}',
'./*/*.{html,js, css}'
],
theme: {
extend: {
colors: {
gray: {
100: '#f7fafc',
},
red: {
100: '#fff5f5',
},
orange: {
100: '#fffaf0',
},
yellow: {
100: '#fffff0',
},
green: {
100: '#f0fff4',
},
teal: {
100: '#e6fffa',
},
blue: {
100: '#ebf8ff',
},
indigo: {
100: '#ebf4ff',
},
purple: {
100: '#faf5ff',
},
pink: {
100: '#fff5f7',
},
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio')
],
}