forked from resend/resend-nextjs-app-router-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
32 lines (31 loc) · 886 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}', // Note the addition of the `app` directory.
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
'brand': ['tiejili-regular', 'sans-serif'],
'pixel-zh': ['fusion-pixel-zh', 'sans-serif'],
'smileysans': ['smileysans', 'sans-serif'],
},
animation: {
'star': 'pulse 0.5s cubic-bezier(0.6, 0.2, 0.4, 1) 2',
},
colors: {
'green-brand': '#5c7f71',
'red-brand': '#802520',
'yellow-brand': '#ba8530',
'black-brand': '#181818',
'white-brand': '#f5eddc',
'orange-brand': '#b2653b',
},
},
},
plugins: [],
}