-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
35 lines (34 loc) · 946 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
theme: {
extend: {
fontFamily: {
poppins: "Poppins",
"medium-quote": ["source-serif-pro", "Georgia", "Cambria", "Times New Roman", "Times", "serif"],
"medium-paragraph": ["source-serif-pro", "Georgia", "Cambria", "Times New Roman", "Times", "serif"],
},
keyframes: {
wave: {
"0%": { transform: "translateX(10px)" },
"20%": { transform: "translateX(0px)" },
"30%": { transform: "translateX(10px)" },
"40%": { transform: "translateX(0px)" },
},
},
colors: {
muted: '#74808b'
}
},
},
plugins: [
require("@tailwindcss/line-clamp"),
require("@tailwindcss/typography"),
],
}