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

Merge pull request #161 from bujijam/master

add fried-egg theme
This commit is contained in:
marzavec 2022-02-18 06:52:01 -08:00 committed by GitHub
commit 18b1db2355
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 1 deletions

View File

@ -827,7 +827,8 @@ var schemes = [
'carrot',
'lax',
'Ubuntu',
'gruvbox-light'
'gruvbox-light',
'fried-egg'
];
var highlights = [

View File

@ -0,0 +1,50 @@
body {
background: #f7f7f7;
color: #000000;
}
input,
textarea {
color: #000000;
}
.message {
border-left: 1px solid rgba(146, 121, 38, 0.6);
}
.refmessage {
border-left: 1px solid rgb(146, 121, 38)
}
.nick {
color: #ffd700;
}
.trip {
color: #8b8263
}
.text a {
color: #000000;
}
.admin .nick {
color: #ff632a;
}
.mod .nick {
color: #cd853f;
}
.me .nick {
color: #ff7b00;
}
.info .nick,
.info .text {
color: #a37939;
}
.warn .nick,
.warn .text {
color: #ff0000;
}
#footer {
background: #ffffff;
}
#sidebar {
background: #ffcc26;
border-color: #a0522d;
}
#chatform {
border-color: #8b8263;
}