generated from inotelab/Astroverse-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
53 lines (53 loc) · 1.19 KB
/
tailwind.config.mjs
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
export default {
darkMode: "class",
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
"./node_modules/preline/preline.js",
],
theme: {
fontFamily: {
sans: [
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Oxygen-Sans",
"Ubuntu",
"Cantarell",
"Helvetica Neue",
"Arial",
"sans-serif",
],
serif: [
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Georgia",
"Cambria",
"Times New Roman",
"serif",
],
mono: [
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Menlo",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace",
],
},
extend: {
backgroundImage: {
"gradient-to-t":
"linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%)",
transparent:
"linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)",
},
},
},
plugins: [require("preline/plugin"), require("@tailwindcss/typography")],
};