-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.3 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./_site/**/*.html",
"./pages/*.{md,html,njk,js}",
"./src/**/*.{md,html,njk,js}",
],
theme: {
extend: {
fontFamily: {
sans: ["Libre Franklin Variable", "sans-serif"],
},
fontWeight: {
hairline: "100",
thin: "200",
extralight: "300",
light: "400",
regular: "500",
medium: "600",
bold: "700",
extrabold: "800",
black: "900",
},
colors: {
primary: {
100: "#dddbfb",
200: "#a8aaff",
400: "#5450bf",
500: "#3c3783",
800: "#232048",
900: "#1c1832",
},
accent: {
100: "#DBF4F8",
200: "#C2E5F3",
800: "#3A4B5E",
900: "#1B283B",
},
},
screens: {
xs: "480px",
},
typography: {
DEFAULT: {
css: {
"code::before": false,
"code::after": false,
"blockquote p:first-of-type::before": {
content: "none",
},
"blockquote p:first-of-type::after": {
content: "none",
},
},
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};