-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtailwind.config.js
102 lines (102 loc) · 1.85 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: {
mode: 'all',
enabled: process.env.FRAPPE_ENV === 'production',
content: [
'./panoptic/templates/**/*.html',
'./panoptic/www/**/*.html',
'./panoptic/**/templates/*.html',
'./panoptic/**/*.html'
],
},
theme: {
typography: {
default: {
css: {
color: '#FFFFFF',
a: {
color: '#E37A30',
'&:hover': {
color: '#CB5B27',
},
},
h1: { color: '#E37A30' },
h2: { color: '#E37A30' },
h3: { color: '#E37A30' },
h4: { color: '#E37A30' },
h5: { color: '#E37A30' },
},
},
},
extend: {},
borderColor: theme => ({
// default: '#60D6D7',
default: '#90E2E3',
orange: '#CB5B27'
}),
container: {
center: true,
},
colors: {
'white': '#FFFFFF',
'black': '#000000',
'teal-blue': {
100: '#F3F5F7',
100: '#E8ECEE',
200: '#C5CFD5',
300: '#A2B3BC',
400: '#5D7989',
500: '#174057',
600: '#153A4E',
700: '#0E2634',
800: '#0A1D27',
900: '#07131A',
},
'aqua-blue': {
50: '#F7FDFD',
100: '#EFFBFB',
200: '#D7F5F5',
300: '#BFEFEF',
400: '#90E2E3',
500: '#60D6D7',
600: '#56C1C2',
700: '#3A8081',
800: '#2B6061',
900: '#1D4041',
},
'panoptic-blue': {
50: '#F2F3F5',
100: '#E6E8EC',
200: '#C0C5CF',
300: '#9BA3B1',
400: '#4F5D77',
500: '#04183D',
600: '#041637',
700: '#020E25',
800: '#020B1B',
900: '#010712',
},
'orange': {
50: '#FEF8F5',
100: '#FCF2EA',
200: '#F8DECB',
300: '#F4CAAC',
400: '#EBA26E',
500: '#E37A30',
600: '#CC6E2B',
700: '#88491D',
800: '#663716',
900: '#44250E',
},
}
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/custom-forms'),
],
}