-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
44 lines (39 loc) · 1022 Bytes
/
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
const colorTokens = require('./src/design/tokens/colors')
module.exports = {
purge: ['./public/index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
mode: 'jit',
darkMode: false,
theme: {
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
},
screens: {
sm: '100%',
md: '100%',
lg: '1024px',
xl: '1280px',
},
},
fontFamily: {
heading: '"Libre Baskerville", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif',
body: '"Nunito", Frutiger, 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"',
},
extend: {
colors: {
...colorTokens,
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
],
}