-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (44 loc) · 1.11 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: ["class"],
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
"satoshi-medium": ["Satoshi-Medium", "sans"],
inter: ["Inter", "sans-serif"],
exo: ["Exo", "sans-serif"],
josefin: ["Josefin Sans", "sans-serif"],
lora: ["Lora", "serif"],
opensans: ["Open Sans", "sans-serif"],
patrickhand: ["Patrick Hand", "cursive"],
poppins: ["Poppins", "sans-serif"],
quicksand: ["Quicksand", "sans-serif"]
},
colors: {
ghostwhite: "#f8f8f8",
offwhite: "#D0DFFF",
purple: {
50: "#e1c7fc",
60: "#b492fb",
70: "#a841ff",
80: "#9314ff"
},
gray: {
50: "#dedede",
60: "#afafaf",
70: "#8a8a8a",
80: "#626262"
},
dark: {
primary: "#1B1E25",
secondary: "#23272F"
}
}
}
},
plugins: [
require("@tailwindcss/typography"),
require('@tailwindcss/aspect-ratio'),
]
};