Initial commit — Moon Household Budget
This commit is contained in:
37
categories.py
Normal file
37
categories.py
Normal file
@@ -0,0 +1,37 @@
|
||||
CATEGORIES = {
|
||||
"Food": ["Groceries", "Restaurants & Takeout", "Coffee Shops"],
|
||||
"Home": ["Supplies", "Tools", "Kitchen Tools", "Furnishings", "Art & Decor", "Garden & Landscaping"],
|
||||
"Pets": [],
|
||||
"Health": ["Health Insurance", "Medical Payment Plans", "OTC & Prescriptions"],
|
||||
"Self Care": ["Skincare", "Makeup & Beauty", "Hygiene"],
|
||||
"Car": ["Gas", "Maintenance & Repairs"],
|
||||
"Shopping": [],
|
||||
"Fun": [],
|
||||
"Utilities": [],
|
||||
"Subscriptions": [],
|
||||
"Business": ["Studio", "Bakery", "Car Flipping"],
|
||||
"Travel": [],
|
||||
"Misc": ["Gifts", "Donations", "Fees & Fines", "Personal Allowance", "Other"],
|
||||
"Debt": ["Credit Cards", "BNPL", "Loans & Payment Plans", "Medical Debt"],
|
||||
"Income": ["Auto King", "Studio", "Bakery", "Misc"],
|
||||
"Transfer": ["Savings", "Investment", "Sinking Fund"],
|
||||
}
|
||||
|
||||
CATEGORY_COLORS = {
|
||||
"Food": "#8FA899", # slate sage
|
||||
"Home": "#A8906E", # warm clay
|
||||
"Pets": "#7A9BAD", # muted denim
|
||||
"Health": "#9A8AAA", # dusty plum
|
||||
"Self Care": "#AA8A90", # faded mauve
|
||||
"Car": "#8A9878", # muted olive
|
||||
"Shopping": "#A89A6A", # greyed gold
|
||||
"Fun": "#A87860", # muted burnt sienna
|
||||
"Utilities": "#6E88A0", # slate blue
|
||||
"Subscriptions": "#7A70A0", # greyed indigo
|
||||
"Business": "#6A9898", # desaturated teal
|
||||
"Travel": "#907860", # warm umber
|
||||
"Misc": "#909090", # cool grey
|
||||
"Debt": "#A87878", # muted rose red
|
||||
"Income": "#7A9E78", # desaturated green
|
||||
"Transfer": "#8890A8", # blue grey
|
||||
}
|
||||
Reference in New Issue
Block a user