-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
58 lines (57 loc) · 1.56 KB
/
tailwind.config.js
File metadata and controls
58 lines (57 loc) · 1.56 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
58
/**
* written by: Team QuickPay
* tested by: Team QuickPay
* debugged by: Team QuickPay
* Notes: Contributions were shared, see GitHub history for commit details.
* Unit Tests for UserSyncService
*/
/** @type {import('tailwindcss').Config} */
module.exports = {
// NOTE: Update this to include the paths to all files that contain Nativewind classes.
content: [ "./App.tsx", "./components/**/*.{js,jsx,ts,tsx}", "./app/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
primary: "#00332d", // dark green
secondary: "#ccf8f1", // light teal/green
accent: "#ff9800", // orange fallback logo
// Budget-specific colors
'budget-bank': {
DEFAULT: '#3B82F6',
light: '#DBEAFE',
},
'budget-total': {
DEFAULT: '#1F2937',
light: '#F3F4F6',
},
'budget-category': {
DEFAULT: '#10B981',
light: '#D1FAE5',
},
},
fontSize: {
small: 12,
normal: 18,
subheading: 24,
},
// Budget-specific spacing
spacing: {
'canvas-width': '600%',
'canvas-height': '900px',
'block-bank-w': '140px',
'block-bank-h': '110px',
'block-budget-w': '150px',
'block-budget-h': '130px',
'block-category-w': '130px',
'block-category-h': '120px',
},
// Budget-specific border radius
borderRadius: {
'block': '16px',
'block-lg': '20px',
},
},
},
plugins: [],
}