From 7c1d78d0aa353c525ad1efadb563f4efc8be0a53 Mon Sep 17 00:00:00 2001 From: JP Smith Date: Sat, 10 Jan 2015 11:05:47 -0600 Subject: [PATCH] added zenburn theme --- client/themes/zenburn.css | 196 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 196 insertions(+) create mode 100644 client/themes/zenburn.css diff --git a/client/themes/zenburn.css b/client/themes/zenburn.css new file mode 100644 index 0000000..ed45d4b --- /dev/null +++ b/client/themes/zenburn.css @@ -0,0 +1,196 @@ +/* +Zenburn theme for Shout. +Based on the Morning Theme by Riku Rouvila + +Installation instructions can be found here +http://shout-irc.com/docs/server/configuration.html#theme + +Author: JP Smith +GitHub: https://github.com/japesinator +*/ + +/* +BACKGROUND #3f3f3f +INPUT BACKGROUND #434443 +PRIMARY #dcdccc +SECONDARY #d2d39b +BORDERS #333333 +QUIT #bc6c4c +*/ + +#windows .chan, #windows .window { + background: #3f3f3f; +} + +#main #chat, +#main #form, +#form .input, +#chat, +#windows .header { + font-family: 'Open Sans', sans-serif !important; + font-size: 13px; +} + +#settings, #sign-in, #connect { + color: #88b090; +} + +#chat .sidebar { + background: #3f3f3f; +} + +#chat .count { + background-color: #434443; +} + +#chat .search { + color: #88b090; + padding: 15px 16px; +} + +#chat .search::-webkit-input-placeholder { + color: #d2d39b; + opacity: 0.5; +} + +/* Borders */ +#chat .from, #windows .header, +#chat .user-mode:before, +#chat .sidebar { + border-color: #333333; +} + + +/* Attach chat to window borders */ +#windows .window:before, #windows .chan:before { + display: none; +} + +#footer { + left: 0; + bottom: 0; + width: 220px; +} + +#main { + top: 0; + bottom: 0; + right: 0; + border-radius: 0; +} + +#chat .chat, #chat .sidebar { + top: 48px; +} + +/* User list */ +#chat .user-mode { + color: #dcdccc; +} + +/* Nicknames */ +#chat.no-colors .from button, +#chat.no-colors .sidebar button { + color: #bc8cbc !important; +} + +#chat.no-colors .from button:hover, +#chat.no-colors .sidebar button:hover { + color: #dcdccc !important; +} + +#chat a { + color: #8c8cbc; +} + +#chat button:hover { + opacity: 1; +} + +/* Message form */ +#form { + background: #333333; + border-color: #101010; +} + +#form .input { + margin-right: 0; +} + +#form #input { + background-color: #434443; + border-color: #101010; + color: #88b090; + padding-left: 1em !important; +} + +#form #nick { + display: none; +} + + +#chat .header { + color: #d2d39b; +} +/* Hide unnecessary buttons */ +#windows .header .button, +#form #submit { + display: none; +} + + +/* Setup text colors */ +#chat .msg { + color: #ffcfaf; +} +#chat .message { + color: #dcdccc; +} + +#chat .self .text { + color: #d2d39b; +} + +#chat .error, +#chat .error .from, +#chat .highlight, +#chat .highlight .from { + color: #7cac7c; +} + +#chat .highlight:not(.self) { + font-size: 1.2em; +} + +#chat .msg.quit .time, +#chat .msg.quit .from button, +#chat .msg.quit .type { + color: #bc6c4c !important; +} + +#chat .msg.topic { + color: #dcdccc; +} +#chat .msg .type { + margin-right: 0.5em; +} + +#chat .msg.join .time, +#chat .msg.join .from button, +#chat .msg.join .type { + color: #8cd0d3 !important; +} +/* Embeds */ +#chat .toggle-content, +#chat .toggle-button { + background: #93b3a3; + color: #dcdccc; +} +#chat .toggle-content img { + float: left; + margin-right: 0.5em; +} + +#chat .toggle-content .body { + color: #d2d39b; +}