-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
41 lines (36 loc) · 998 Bytes
/
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
"potta": ["Potta One", "system-ui"],
"apple": ["Homemade Apple", "cursive"],
"sofia": ["Princess Sofia", "cursive"],
"serifDisplay": ["DM Serif Text", "serif"],
},
colors: {
"purple-100": "#CEC6DB",
"black-100": "#050505",
"purple-200": "#4E3C57",
"messageblue": "#1484FE",
"messagegrey": "#E9E9EB",
"messageblack": "#212123",
"messagewhite": "#CAEDFF",
},
dropShadow: {
'xl': '0 35px 35px rgba(78,60,87)',
'2xl': [
'0 35px 35px rgba(206, 198, 219, 1)',
'0 45px 65px rgba(206, 198, 219, 1)'
]
}
},
},
plugins: [require("daisyui")],
};
export default config;