Skip to content

Commit

Permalink
Add new queues
Browse files Browse the repository at this point in the history
  • Loading branch information
ejunga committed Aug 4, 2025
1 parent 0886eaa commit 320cc3e
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions tdx-enhanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// @match https://purdue.teamdynamixpreview.com/TDNext*
// @require https://momentjs.com/downloads/moment.min.js
// @require https://cdnjs.cloudflare.com/ajax/libs/tinycolor/1.6.0/tinycolor.min.js
// @downloadURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/refs/heads/main/tdx-enhanced.js
// @updateURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/refs/heads/main/tdx-enhanced.js
// @downloadURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/refs/heads/beta/tdx-enhanced.js
// @updateURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/refs/heads/beta/tdx-enhanced.js
// @grant GM_getResourceText
// @grant GM_addStyle
// @run-at document-end
Expand All @@ -30,6 +30,7 @@
var colorsByQueue = {
'aae': {'bg' : '#7030A0', 'txt' : 'white' },
'abe' : {'bg' : '#256f78', 'txt' : 'white'},
'ag' : {'bg' : '#99CC00', 'txt' : 'white'},
'bidc' : {'bg' : '#C5FFC5', 'txt' : 'black'},
'biology' : {'bg' : '#67c1ee', 'txt' : 'black'},
'bme' : {'bg' : '#0D69FF', 'txt' : 'white'},
Expand All @@ -39,17 +40,21 @@
'coea' : {'bg' : '#00D6BD', 'txt' : 'black'},
'coep' : {'bg' : '#FFDDB7', 'txt' : 'black'},
'comp.sci.' : {'bg' : '#772212', 'txt' : 'white'},
'cos admin' : {'bg' : '#ddaa33', 'txt' : 'black'},
'dp' : {'bg' : '#0070A8', 'txt' : 'white'},
'doe': {'bg' : 'red', 'txt' : 'white'},
'ece' : {'bg' : '#FF6600', 'txt' : 'white'},
'ecnaccts' : {'bg' : '#98A4AE', 'txt' : 'white'},
'students' : {'bg' : '#98A4AE', 'txt' : 'white'},
'eaps' : {'bg' : '#629454', 'txt': 'white'},
'eee' : {'bg' : '#F66A6A', 'txt' : 'white'},
'ene': {'bg' : '#A45CD0', 'txt': 'white' },
'engineering' : {'bg' : '#FFD900', 'txt' : 'black'},
'engr - south' : {'bg' : '#663300', 'txt' : 'white'},
'engr - north' : {'bg' : '#663300', 'txt' : 'white'},
'epics': {'bg' : '#E399E3', 'txt' : 'black'},
'flex' : {'bg' : '#A7ECFF', 'txt' : 'black'},
'helpdesk' : {'bg' : '#98A4AE', 'txt' : 'white'},
'hhs' : {'bg' : '#CFB991', 'txt' : 'black'},
'ie' : {'bg' : '#FFB7B7', 'txt' : 'black'},
'imi' : {'bg' : '#FFB96D', 'txt' : 'black'},
'apple' : {'bg' : '#666666', 'txt' : 'white'},
Expand All @@ -59,16 +64,21 @@
'mse': {'bg' : '#EFD3F5', 'txt' : 'black'},
'ne': {'bg' : '#af6377', 'txt' : 'white'},
'pari' : {'bg' : '#3f5c8a', 'txt': 'white'},
'pharmacy' : {'bg' : '#FF33FF', 'txt' : 'white'},
'physics' : {'bg' : '#07622f', 'txt': 'white'},
//'potr' : {'bg' : '#663300', 'txt' : 'white'},
'president' : {'bg' : '#cfb991', 'txt' : 'black'},
'sacc' : {'bg' : '#434343', 'txt' : 'white'},
'science' : {'bg' : '#22dd94', 'txt' : 'black'},
'sitemgrs' : {'bg' : '#98A4AE', 'txt' : 'white'},
'stat' : {'bg' : '#ff6f44', 'txt' : 'white'},
'students' : {'bg' : '#98A4AE', 'txt' : 'white'},
'swt' : {'bg' : '#000ED6', 'txt' : '#FFEE00'},
'polytechnic' : {'bg' : 'black', 'txt' : 'white'},
'cnit' : {'bg' : '#434343', 'txt' : 'white'},
'uds' : {'bg' : '#98A4AE', 'txt' : 'white'},
'udsprojects': {'bg' : '#98A4AE', 'txt' : 'white'},
'vet' : {'bg' : '#CCFFFF', 'txt' : 'black'},
//'wang' : {'bg' : '#000099', 'txt' : 'white'},
'web' : {'bg' : '#B46086', 'txt' : 'white'},
'windows' : {'bg' : '#b77729', 'txt' : 'white'},
Expand Down

0 comments on commit 320cc3e

Please sign in to comment.