-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
87 lines (82 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'media',
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./app.vue",
],
theme: {
extend: {
boxShadow: {
zoop: "rgba(102, 109, 128, 0.08) 0px 1.2672px 1.2672px 0px, rgba(102, 109, 128, 0.08) 0px 5.06879px 10.1376px 0px",
zoopdark: "rgba(10, 10, 10, 0.2) 0px 1.2672px 1.2672px 0px, rgba(10, 10, 10, 0.2) 0px 5.06879px 10.1376px 0px",
},
typography: {
DEFAULT: {
css: {
code: {
'font-family': 'JetBrains Mono',
},
'code::before': {
content: '""',
},
'code::after': {
content: '""',
},
pre: false,
code: false,
'pre code': false,
'code::before': false,
'code::after': false,
'.prose p, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6, .prose a, .prose li': {
'text-decoration': 'none',
'font-family': 'Merriweather',
}
},
},
},
},
fontFamily: {
sans: [
"Inter",
"Avenir Next",
"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"',
],
serif: [
"Merriweather",
"ui-serif",
"Georgia",
"Cambria",
"Times New Roman",
],
mono: [
"Cascadia Code",
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace",
],
},
},
plugins: [require("@tailwindcss/typography")],
}