added functionality for pixiv and deviantart

This commit is contained in:
Bryan Van Deusen
2026-02-02 20:17:13 -05:00
parent 3ee7de7ecd
commit cc19bbd372
16 changed files with 158 additions and 27 deletions
+4
View File
@@ -235,6 +235,8 @@ function getPlatformIcon(platform) {
subscribestar: 'mdi-star',
hentaifoundry: 'mdi-palette',
discord: 'mdi-discord',
pixiv: 'mdi-alpha-p-box',
deviantart: 'mdi-deviantart',
}
return icons[platform] || 'mdi-web'
}
@@ -245,6 +247,8 @@ function getPlatformColor(platform) {
subscribestar: '#FFD700',
hentaifoundry: '#9C27B0',
discord: '#5865F2',
pixiv: '#0096FA',
deviantart: '#05CC47',
}
return colors[platform] || 'grey'
}