/usr/share/quassel/stylesheets/LinuxDolt-bluestheme.qss is in quassel-data 0.12.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | // LinuxDolt's bluestheme Version 1.1
// Copyright (C) Drew Patridge 2009-2010 <slicersv@gmail.com>
// This file is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this file. If not, see <http://www.gnu.org/licenses/>.
// ChangeLog:
// Version 1.1 - Updated 2010/06/25
// - fix Palette colors for changes in qt/kde color hinting
// -- text changed to a light blueish violet
// -- button-text changed to a light pure violet
// - change markerline rule to follow my own coding style
// (single line does not exceed 79 cols, additional spacing)
// - added this ChangeLog and rearranged the file header in general
// Version 1.0-10189b4eb20d1b3b9579a6b51dde697691c18abd - Updated 2010/06/16
// - automatic change in markerline rule due to UI changes
// (see git log for details)
// -- change by Manuel Nickschas <sputnick@quassel-irc.org>
// Version 1.0 - Updated 2009/11/06
// - first public git release
// Custom ChatView Colors
ChatView { background: #00004b; }
Palette {
marker-line: qlineargradient( x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 red, stop: 0.1 transparent );
}
ChatLine[label="highlight"] { foreground: #f0f5ff; background: #00008b; }
ChatLine::url[label="highlight"] {
foreground: #5fffbf;
background: #00008b; }
ChatLine::timestamp { foreground: #b9bec8; }
ChatLine#plain { foreground: #f0f5ff; }
ChatLine#notice { foreground: #aaaaff; }
ChatLine#action { foreground: #00fafa; font-style: italic; }
ChatLine#nick { foreground: #835bff; }
ChatLine#mode { foreground: #ffaaff; font-weight: bold; }
ChatLine#join { foreground: #ffaaff; }
ChatLine#part { foreground: #ffaaff; }
ChatLine#quit { foreground: #ffaaff; }
ChatLine#kick { foreground: #ffaaff; font-style: italic; }
ChatLine#kill { foreground: #ffaaff; }
ChatLine#server { foreground: #c8fafa; }
ChatLine#info { foreground: #aaaaff; }
ChatLine#error { foreground: #ffff00; }
ChatLine#daychange { foreground: #aaaaff; }
ChatLine#topic { foreground: #835bff; }
// Sender Colors
ChatLine::sender { foreground: #3bb9ff; }
ChatLine::sender[sender="self"] { foreground: #ff55ff; }
// BufferView Colors
BufferView { background: #00004b; }
ChatListItem { foreground: #f0f5ff; }
ChatListItem[state="inactive"] { foreground: #b9bec8; }
ChatListItem[state="channel-event"] { foreground: #00fafa; }
ChatListItem[state="unread-message"] { foreground: #ffaaff; }
ChatListItem[state="highlighted"] { foreground: #ff5555; }
ChatMonitorSettingsPage BufferView::item { color: #f0f5ff; }
// NickView Colors
NickView { background: #00004b; }
NickListItem[type="category"] { foreground: #00fafa; font-weight: bold; }
NickListItem[type="user"] { foreground: #00fafa; }
NickListItem[type="user", state="away"] { foreground: #f0f5ff; }
// Miscellaneous Colors
QTreeView::item:selected { color: #00004b; }
QTreeView#settingsTree { background: #00004b; }
QTreeView::item#settingsTree { color: #f0f5ff; }
QTreeView::item:selected#settingsTree { color: #00004b; }
QLineEdit:enabled { background: #00004b; color: #f0f5ff; }
QSpinBox:enabled { background: #00004b; color: #f0f5ff; }
QTableWidget { background-color: #00004b; color: #f0f5ff; }
QListWidget { background-color: #00004b; color: #f0f5ff; }
QTableView {
alternate-background-color: #00006b;
background-color: #00004b;
color: #f0f5ff; }
Palette {
link: #5fffbf; link-visited: #5fffbf;
window: #a0a5dd; window-text: #00004b; text: #cc00ff;
light: #8085b3; midlight: #606593; button: #404573;
mid: #202553; dark: #000533; button-text: #ff00ff; }
StyledLabel#topicLabel { background: #00004b; }
MultiLineEdit { background: #00004b; color: #f0f5ff; }
|