11 lines
635 B
JavaScript
11 lines
635 B
JavaScript
|
|
module.exports = [
|
||
|
|
{ key: "career", title: "事业运", icon: "💼", accent: "#ffb85c" },
|
||
|
|
{ key: "wealth", title: "财务运", icon: "💰", accent: "#4fd1c5" },
|
||
|
|
{ key: "relationship", title: "情感运", icon: "💗", accent: "#ff7eb6" },
|
||
|
|
{ key: "health", title: "健康运", icon: "🌿", accent: "#7ddc88" },
|
||
|
|
{ key: "social", title: "人际运", icon: "🤝", accent: "#76b7ff" },
|
||
|
|
{ key: "inspiration", title: "灵感运", icon: "✨", accent: "#c097ff" },
|
||
|
|
{ key: "emotion", title: "情绪状态", icon: "🧠", accent: "#fb8da0" },
|
||
|
|
{ key: "opportunity", title: "机遇运势", icon: "🚀", accent: "#ffd166" }
|
||
|
|
];
|