-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
43 lines (42 loc) · 1.02 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
const colors = require("tailwindcss/colors")
module.exports = {
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
boxShadow: {
art: "0 10px 15px -3px rgb(0 0 0 / 0.04), 0 4px 6px -4px rgb(0 0 0 / 0.06)",
"art-hover":
"0 20px 25px -5px rgb(0 0 0 / 0.04), 0 8px 10px -6px rgb(0 0 0 / 0.06)",
"art-active": "0 1px 2px 0 rgb(0 0 0 / 0.04)",
},
fontFamily: {
sans: ["PlusJakartaSans", "sans-serif"],
serif: [
"Charter",
"ui-serif",
"Georgia",
"Cambria",
"Times New Roman",
"Times",
"serif",
],
},
lineHeight: {
headers: 1.15,
},
colors: {
gray: colors.stone,
cyan: colors.cyan,
darkseafoam: "#3F87A1",
darkerseafoam: "#207796",
lime: colors.lime,
sand100: "#FEFAF9",
},
},
},
plugins: [require("@tailwindcss/typography")],
}