-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (45 loc) · 920 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
45 lines (45 loc) · 920 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'media',
theme: {
screens: {
// sm: '320px', => @media (min-width: 360px) { ...
md: '768px', // => @media (min-width: 768px) { ... }
lg: '1024px',
xl: '1248px',
},
container: {
padding: '0.5rem',
},
fontFamily: {
sans: ['Open Sans', 'sans-serif'],
},
fontSize: {
xs: '12px',
sm: '14px',
base: '16px',
lg: '18px',
xl: '20px',
'2xl': '24px',
'3xl': '32px',
'4xl': '34px',
'5xl': '40px',
'6xl': '48px',
},
extend: {
colors: {
orange: {
100: '#FCE1D3',
},
purple: '#7e5bef',
pink: '#ff49db',
green: '#13ce66',
yellow: '#ffc82c',
grayDark: '#273444',
gray: '#8492a6',
grayLight: '#d3dce6',
},
},
},
plugins: [],
};