-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (38 loc) · 800 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
39 lines (38 loc) · 800 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
36
37
38
39
/** @type {import('tailwindcss').Config} */
const config = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
purple: {
500: '#7C3AED',
600: '#6D28D9',
400: '#A78BFA',
300: '#C4B5FD',
},
yellow: {
400: '#FACC15',
300: '#FDE047',
},
red: {
400: '#FF3B5C',
500: '#FF3B5C',
},
green: {
400: '#00FF9D',
500: '#10B981',
},
},
fontFamily: {
display: ['Clash Display', 'sans-serif'],
body: ['Space Mono', 'monospace'],
accent: ['Unbounded', 'sans-serif'],
},
},
},
plugins: [],
};
export default config;