-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
45 lines (42 loc) · 1.07 KB
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/**/*.{js,ts,jsx,tsx,mdx}",
],
mode: "jit",
theme: {
extend: {
fontFamily: {
inter: ["Inter", "sans-serif"],
alegreya: ["Alegreya Sans SC", "sans-seif"],
garamond: ["EB Garamond", "seif"],
merriweather: ["Merriweather", "seif"],
josefin: ["Josefin Sans", "sans-seif"],
},
fontSize: {
sm: ['14px', '20px'],
base: ['16px', '24px'],
lg: ['20px', '28px'],
xl: ['24px', '32px'],
},
colors: {
"black-100": "#2B2C35",
"primary-blue": {
DEFAULT: "#2B59FF",
100: "#F5F8FF",
},
"secondary-orange": "#f79761",
"light-white": {
DEFAULT: "rgba(59,60,152,0.03)",
100: "rgba(59,60,152,0.02)",
},
"grey": "#747A88",
"baby-pink": "#FFC0CB",
"dark-purple": "#4B0082",
}
},
},
plugins: [],
};