From 6d6d966a8a2395a80d831b2b549b5c337b7cb4e0 Mon Sep 17 00:00:00 2001 From: bujijam Date: Sun, 13 Feb 2022 12:11:42 +0800 Subject: [PATCH] add fried-egg theme --- client/client.js | 3 ++- client/schemes/fried-egg.css | 50 ++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 client/schemes/fried-egg.css diff --git a/client/client.js b/client/client.js index 8afbf8f..dc3526d 100644 --- a/client/client.js +++ b/client/client.js @@ -827,7 +827,8 @@ var schemes = [ 'carrot', 'lax', 'Ubuntu', - 'gruvbox-light' + 'gruvbox-light', + 'fried-egg' ]; var highlights = [ diff --git a/client/schemes/fried-egg.css b/client/schemes/fried-egg.css new file mode 100644 index 0000000..d86f606 --- /dev/null +++ b/client/schemes/fried-egg.css @@ -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; +} \ No newline at end of file