-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 871 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 871 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
40
41
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
heading: ['Space Grotesk', 'sans-serif'],
body: ['DM Sans', 'sans-serif'],
},
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
500: '#3B82F6',
600: '#2563EB',
700: '#1d4ed8',
900: '#1e3a8a',
},
slate: {
900: '#0F172A',
800: '#1E293B',
700: '#334155',
600: '#475569',
400: '#94A3B8',
100: '#F1F5F9',
},
},
backgroundColor: {
'dark-primary': '#0F172A',
'dark-secondary': '#1E293B',
},
borderColor: {
'dark-border': '#334155',
},
},
},
plugins: [],
}