forked from berlin/haushaltsdaten
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (29 loc) · 860 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (29 loc) · 860 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
const colorPalette = require('./src/style/colors')
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/modules/**/*.{js,ts,jsx,tsx}',
'./src/layouts/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontFamily: {
// prettier-ignore
sans: ['AlbertSans', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', "Segoe UI", 'Roboto', "Helvetica Neue", 'Arial', "Noto Sans", 'sans-serif', "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"],
mono: ['RedHatMono', 'monospace'],
},
colors: {
...colorPalette,
},
extend: {
minWidth: {
xs: '20rem',
sm: '24rem',
md: '28rem',
lg: '32rem',
xl: '36rem',
},
},
},
plugins: [require('@tailwindcss/typography')],
}