-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (50 loc) · 1.17 KB
/
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
48
49
50
51
52
/** @type {import('tailwindcss/types').Config} */
// const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
darkMode: 'class',
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./app.vue',
'./assets/**/*.scss',
'./assets/**/*.css',
],
theme: {
fontFamily: {
Poppins: ['Poppins'],
},
container: {
center: true,
padding: {
DEFAULT: '0.75rem',
},
},
screens: {
xs: '480px',
sm: '600px',
md: '768px',
lg: '1024px',
xl: '1200px',
'2xl': '1366px',
},
extend: {
colors: {
site: {
primary: {
DEFAULT: '#FFFFFF',
},
},
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
}