-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
23 lines (22 loc) · 820 Bytes
/
config.js
File metadata and controls
23 lines (22 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* YearProgress Configuration
*
* Define festivals and special dates here.
* Format: "MM-DD": { icon: "ICON", name: "NAME" }
* For Lunar New Year or other variable dates, simply add them for the current/upcoming years.
*/
window.YearProgressConfig = {
festivals: {
// Fixed Dates
"01-01": { icon: "🎉", name: "New Year's Day" },
"02-14": { icon: "🌹", name: "Valentine's Day" },
"10-31": { icon: "🎃", name: "Halloween" },
"12-24": { icon: "🍎", name: "Christmas Eve" },
"12-25": { icon: "🎄", name: "Christmas" },
"12-31": { icon: "🥂", name: "New Year's Eve" },
// Variable Dates
// 2026
"02-17": { icon: "🐍", name: "Lunar New Year" },
"09-25": { icon: "🥮", name: "Mid-Autumn Festival" }
}
};