diff options
-rw-r--r-- | client/client.js | 1 | ||||
-rw-r--r-- | client/schemes/android-white.css | 51 | ||||
-rw-r--r-- | server/src/commands/core/join.js | 4 |
3 files changed, 54 insertions, 2 deletions
diff --git a/client/client.js b/client/client.js index ba5a236..bc655a1 100644 --- a/client/client.js +++ b/client/client.js @@ -789,6 +789,7 @@ function userIgnore(nick) { var schemes = [ 'android', + 'android-white', 'atelier-dune', 'atelier-forest', 'atelier-heath', diff --git a/client/schemes/android-white.css b/client/schemes/android-white.css new file mode 100644 index 0000000..c1c5d0b --- /dev/null +++ b/client/schemes/android-white.css @@ -0,0 +1,51 @@ +/* Written by a user named Color */ +body { + background: #f7f7f7; + color: #000000; +} +input, +textarea { + color: #000000; +} +.message { + border-left: 1px solid rgba(187, 187, 187, 0.5); +} +.refmessage { + border-left: 1px solid rgb(27, 27, 27); +} +.nick { + color: #7d7d7d; +} +.trip { + color: #a9a9a9; +} +.text a { + color: #000000; +} +.admin .nick { + color: #d3ff00; +} +.mod .nick { + color: #01408d; +} +.me .nick { + color: #000; +} +.info .nick, +.info .text { + color: #7d7d7d; +} +.warn .nick, +.warn .text { + color: #f55; +} +#footer { + background: #f9f9f9; +} +#sidebar { + background: #f7f7f7; + border-color: #f7f7f7; +} +#chatform { + border-color: #d9d9d9; +} diff --git a/server/src/commands/core/join.js b/server/src/commands/core/join.js index b17e1fc..c4f4f4f 100644 --- a/server/src/commands/core/join.js +++ b/server/src/commands/core/join.js @@ -144,7 +144,7 @@ export async function run(core, server, socket, data) { nick: newPeerList[i].nick, trip: newPeerList[i].trip, utype: newPeerList[i].uType, /* @legacy */ - hash: newPeerList[i].userHash, + hash: newPeerList[i].hash, level: newPeerList[i].level, userid: newPeerList[i].userid, channel: data.channel, @@ -166,7 +166,7 @@ export async function run(core, server, socket, data) { nick: socket.nick, trip: socket.trip, utype: socket.uType, - hash: socket.userHash, + hash: socket.hash, level: socket.level, userid: socket.userid, channel: data.channel, |