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:
commit
015822c70a
@ -789,6 +789,7 @@ function userIgnore(nick) {
|
|||||||
|
|
||||||
var schemes = [
|
var schemes = [
|
||||||
'android',
|
'android',
|
||||||
|
'android-white',
|
||||||
'atelier-dune',
|
'atelier-dune',
|
||||||
'atelier-forest',
|
'atelier-forest',
|
||||||
'atelier-heath',
|
'atelier-heath',
|
||||||
|
51
client/schemes/android-white.css
Normal file
51
client/schemes/android-white.css
Normal 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;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user