-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (44 loc) · 957 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
36
37
38
39
40
41
42
43
44
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
sans: [
"satoshi",
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Helvetica",
"Arial",
"sans-serif",
],
serif: ["ui-serif", "Georgia"],
mono: ["ui-monospace", "SFMono-Regular"],
display: ["Oswald"],
body: ['"Open Sans"'],
},
fontSize: {
caption: "0.8rem",
paragraph: "1rem",
h5: "1.25rem",
h4: "1.563rem",
h3: "1.953rem",
h2: "2.441rem",
h1: "3.052rem",
},
colors: {
green: "#0C7D01",
},
extend: {},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/line-clamp"),
require("@tailwindcss/forms"),
],
};