-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (57 loc) · 1.3 KB
/
Copy pathtailwind.config.js
File metadata and controls
57 lines (57 loc) · 1.3 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
45
46
47
48
49
50
51
52
53
54
55
56
57
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,jsx,ts,tsx}',
'./components/**/*.{js,jsx,ts,tsx}',
'./hooks/**/*.{js,jsx,ts,tsx}',
],
presets: [require('nativewind/preset')],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#2563eb',
light: '#dbeafe',
dark: '#1e40af',
},
secondary: {
DEFAULT: '#0d9488',
light: '#ccfbf1',
dark: '#0f766e',
},
accent: {
DEFAULT: '#f59e0b',
light: '#fffbeb',
dark: '#d97706',
},
surface: {
DEFAULT: '#ffffff',
raised: '#ffffff',
sunken: '#f1f5f9',
},
success: {
DEFAULT: '#16a34a',
light: '#f0fdf4',
},
warning: {
DEFAULT: '#d97706',
light: '#fffbeb',
},
error: {
DEFAULT: '#dc2626',
light: '#fef2f2',
},
},
fontFamily: {
sans: ['Inter'],
'sans-medium': ['Inter_Medium'],
'sans-semibold': ['Inter_SemiBold'],
'sans-bold': ['Inter_Bold'],
mono: ['GeistMono'],
'mono-medium': ['GeistMono_Medium'],
'mono-bold': ['GeistMono_Bold'],
},
},
},
plugins: [],
};