-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (50 loc) · 1.11 KB
/
Copy pathtailwind.config.js
File metadata and controls
51 lines (50 loc) · 1.11 KB
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
const defaultTheme = require('tailwindcss/defaultTheme')
// See https://tailwindcss.com/docs/configuration for details
module.exports = {
purge: ['./src/**/*.js'],
// https://github.com/tailwindlabs/tailwindcss-forms
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
variants: {
extend: {
backgroundColor: ['even'],
},
},
theme: {
screens: {
'xs': '375px',
...defaultTheme.screens,
},
extend: {
colors: {
'openbeta-orange': '#F15E40',
'custom-green': '#8BB191',
'custom-blue': '#62cae3',
'custom-avery': '#a5d9cf',
'custom-primary': '#F07933',
},
},
fontFamily: {
mono: [
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace'
],
sans: [
'ISO',
'Open Sans',
'ui-sans-serif',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
],
display: ['Lato'],
},
},
};