-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 1.11 KB
/
tailwind.config.js
File metadata and controls
53 lines (53 loc) · 1.11 KB
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
53
/* eslint-disable no-undef */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./public/**/*.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
lexend: ['"Lexend Mega"', 'sans-serif'],
number: ['"Major Mono Display"', 'monospace'],
bread: ['Merriweather', 'serif'],
poppins: ['Poppins', 'serif']
},
},
patterns: {
opacities: {
100: "1",
80: ".80",
60: ".60",
40: ".40",
20: ".20",
10: ".10",
5: ".05",
},
sizes: {
1: "0.25rem",
2: "0.5rem",
4: "1rem",
6: "1.5rem",
8: "2rem",
16: "4rem",
20: "5rem",
24: "6rem",
32: "8rem",
}
},
},
variants: {
extend: {},
},
corePlugins: {
aspectRatio: false,
},
blocklist: [], // ['container', 'collapse'],
plugins: [
require('@tailwindcss/forms'),
require('tailwindcss-bg-patterns'),
// require('@tailwindcss/aspect-ratio'),
],
}