@xuda.io/account_module 1.2.456 → 1.2.457
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.mjs +9 -0
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1173,6 +1173,15 @@ const get_contact_background = function (doc) {
|
|
|
1173
1173
|
ret = `linear-gradient(145deg, #4f4f4f8c 0%, #0e0f0f44 100%);`;
|
|
1174
1174
|
}
|
|
1175
1175
|
|
|
1176
|
+
switch (doc.contact_mood) {
|
|
1177
|
+
case 2: {
|
|
1178
|
+
ret = `linear-gradient(145deg, #d703038c 0%, #7f98e344 100%)`;
|
|
1179
|
+
break;
|
|
1180
|
+
}
|
|
1181
|
+
default:
|
|
1182
|
+
break;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1176
1185
|
return ret;
|
|
1177
1186
|
};
|
|
1178
1187
|
|