-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (45 loc) · 953 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
45
46
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable no-undef */
const colors = require('tailwindcss/colors');
const aspectRatio = require('@tailwindcss/aspect-ratio');
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
tablet: '768px',
desktop: '1280px',
},
colors,
fontFamily: {
sans: [
'Lato',
'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: {
maxWidth: {
200: '50rem',
270: '67.5rem',
},
maxHeight: {
200: '50rem',
},
},
},
variants: {},
plugins: [aspectRatio],
};