-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
63 lines (61 loc) · 1.35 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
ochre: {
50: '#fcfaf6',
100: '#faf0cb',
200: '#f3da97',
300: '#e2b363',
400: '#cd8739',
500: '#b3661f',
600: '#954c14',
700: '#723911',
800: '#4f270e',
900: '#33180a',
},
green: {
50: '#f4f7f5',
100: '#e2f0ec',
200: '#bee4d3',
300: '#87c8a8',
400: '#44a679',
500: '#308950',
600: '#28713a',
700: '#23562f',
800: '#193a24',
900: '#11231a',
},
teal: {
50: '#f4f8f7',
100: '#e0f0f5',
200: '#bae2e8',
300: '#85c4cc',
400: '#49a1a8',
500: '#358285',
600: '#2c686a',
700: '#254f51',
800: '#1b353a',
900: '#112128',
},
},
},
},
// eslint-disable-next-line import/no-extraneous-dependencies, global-require
plugins: [require('@tailwindcss/forms')],
// safelist: [
// {
// pattern: /(bg|text|border|custom)-*/,
// },
// {
// pattern: /(p|m)*/,
// },
// ],
// safelist: [
// {
// pattern: /.*/,
// },
// ],
};