1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00

Merge pull request #97 from MinusGix/androidWhiteTheme

Add android-white theme
This commit is contained in:
marzavec 2020-03-13 09:33:14 -05:00 committed by GitHub
commit 015822c70a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 0 deletions

View File

@ -789,6 +789,7 @@ function userIgnore(nick) {
var schemes = [
'android',
'android-white',
'atelier-dune',
'atelier-forest',
'atelier-heath',

View File

@ -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;
}