diff options
author | MinusGix <MinusGix@gmail.com> | 2020-03-13 01:23:37 +0100 |
---|---|---|
committer | MinusGix <MinusGix@gmail.com> | 2020-03-13 01:23:37 +0100 |
commit | c5c9cfbe5357e11a3d65c6f1e4270c854fe612f6 (patch) | |
tree | 5c3c29b0fc4810106fef6357ee32f9ee648149aa /client | |
parent | Protocol Updates and Bug Fixes (diff) | |
download | hackchat-c5c9cfbe5357e11a3d65c6f1e4270c854fe612f6.tar.gz hackchat-c5c9cfbe5357e11a3d65c6f1e4270c854fe612f6.zip |
Add android-white theme
Diffstat (limited to 'client')
-rw-r--r-- | client/client.js | 1 | ||||
-rw-r--r-- | client/schemes/android-white.css | 51 |
2 files changed, 52 insertions, 0 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; +} |