-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
tailwind.config.js
38 lines (38 loc) · 982 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./components/**/*.vue',
'./error.vue',
],
theme: {
extend: {
colors: {
appGray: {
100: '#F5F5F5',
200: '#D9D9D9',
300: '#4D4D4D',
},
},
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
lg: '2rem',
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1360px',
},
},
},
},
plugins: [require('@tailwindcss/typography')],
};