forked from a16z-infra/ai-town
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 818 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 818 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
fontFamily: {
display: ['var(--font-display)', 'sans-serif'],
body: ['var(--font-body)', 'monospace'],
},
extend: {
colors: {
brown: {
100: '#FFFFFF',
200: '#EAD4AA',
300: '#E4A672',
500: '#B86F50',
700: '#743F39',
800: '#3F2832',
900: '#181425',
},
clay: {
100: '#C0CBDC',
300: '#8B9BB4',
500: '#5A6988',
700: '#3A4466',
900: '#181425',
},
},
},
},
plugins: [require('@tailwindcss/forms')],
};