forked from bcms/starters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (47 loc) · 989 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
47
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./app.vue',
'./error.vue',
],
theme: {
extend: {
colors: {
appAccent: '#EF4141',
appBody: '#fff',
appText: '#171717',
appGray: {
100: '#EBEBEB',
200: '#D4D4D4',
300: '#828282',
400: '#636363',
500: '#525252',
600: '#242424',
},
},
container: {
center: true,
padding: {
DEFAULT: '1.5rem',
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1440px',
},
},
fontFamily: {
Helvetica: ['Helvetica', 'sans-serif'],
Inter: ['Inter', 'sans-serif'],
},
},
},
plugins: [],
};