-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 1.38 KB
/
tailwind.config.js
File metadata and controls
44 lines (44 loc) · 1.38 KB
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
42
43
44
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
"./index.html",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./main.tsx",
],
theme: {
extend: {
fontFamily: {
sans: ['Space Grotesk', 'system-ui', 'sans-serif'],
},
colors: {
'near-green': '#00c6a7',
'near-black': '#000000',
'near-white': '#ffffff',
'near-gray': '#f2f1e9',
'near-coral': '#ff7866',
'near-purple': '#a797d7',
'near-cyan': '#17d8d4',
background: 'var(--background)',
'background-secondary': 'var(--background-secondary)',
foreground: 'var(--foreground)',
'foreground-secondary': 'var(--foreground-secondary)',
border: 'var(--border)',
card: 'var(--card)',
'card-foreground': 'var(--card-foreground)',
primary: 'var(--primary)',
'primary-foreground': 'var(--primary-foreground)',
secondary: 'var(--secondary)',
'secondary-foreground': 'var(--secondary-foreground)',
accent: 'var(--accent)',
'accent-foreground': 'var(--accent-foreground)',
muted: 'var(--muted)',
'muted-foreground': 'var(--muted-foreground)',
destructive: 'var(--destructive)',
'destructive-foreground': 'var(--destructive-foreground)',
},
},
},
plugins: [],
}