-
Notifications
You must be signed in to change notification settings - Fork 17
/
tailwind.config.js
53 lines (53 loc) · 1.19 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
53
module.exports = {
darkMode: "class",
theme: {
extend: {
colors: {
primary: "#00c58e",
"google-blue": "#3069E2",
"facebook-blue": "#3B5998"
},
spacing: {
"72": "18rem",
"84": "21rem",
"96": "24rem",
"100": "28rem",
"128": "32rem",
"132": "40rem"
}
},
fontFamily: {
sans: [
"Avenir",
"Roboto",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Ubuntu",
'"Helvetica Neue"',
"Arial",
'"Noto Sans"',
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"'
]
}
},
variants: {},
plugins: [require("@tailwindcss/typography")],
purge: {
// Learn more on https://tailwindcss.com/docs/controlling-file-size/#removing-unused-css
enabled: process.env.NODE_ENV === "production",
content: [
"components/**/*.vue",
"layouts/**/*.vue",
"pages/**/*.vue",
"plugins/**/*.js",
"nuxt.config.js",
"hooper/dist/hooper.css",
"vue-cool-lightbox/dist/vue-cool-lightbox.min.css"
]
}
};