Add jussi01's dark stylesheet
[quassel.git] / data / stylesheets / default.qss
1 // Default stylesheet for Quassel IRC
2 // Note: Some items use the system palette, such as plain messages, default buffer items,
3 //       and online nicks.
4 // Sender coloring is off by default.
5
6 // Basics
7 ChatLine {
8   foreground: palette(text);
9 }
10
11 ChatLine[label="highlight"] {
12   foreground: black;
13   background: #ff8000;
14 }
15
16 ChatLine[label="selected"] {
17   foreground: palette(highlighted-text);
18   background: palette(highlight);
19 }
20
21 // ChatLine::sender[sender="self"] {
22 //   font-style: italic;
23 // }
24
25 ChatLine::timestamp {
26   foreground: #707c70;
27 }
28
29 ChatLine::url {
30   foreground: palette(link);
31 }
32
33 Palette {
34   marker-line: red;
35 }
36
37 // mIRC colors
38 ChatLine[fg-color="00"] { foreground: #ffffff; }
39 ChatLine[bg-color="00"] { background: #ffffff; }
40 ChatLine[fg-color="01"] { foreground: #000000; }
41 ChatLine[bg-color="01"] { background: #000000; }
42 ChatLine[fg-color="02"] { foreground: #000080; }
43 ChatLine[bg-color="02"] { background: #000080; }
44 ChatLine[fg-color="03"] { foreground: #008000; }
45 ChatLine[bg-color="03"] { background: #008000; }
46 ChatLine[fg-color="04"] { foreground: #ff0000; }
47 ChatLine[bg-color="04"] { background: #ff0000; }
48 ChatLine[fg-color="05"] { foreground: #800000; }
49 ChatLine[bg-color="05"] { background: #800000; }
50 ChatLine[fg-color="06"] { foreground: #800080; }
51 ChatLine[bg-color="06"] { background: #800080; }
52 ChatLine[fg-color="07"] { foreground: #ffa500; }
53 ChatLine[bg-color="07"] { background: #ffa500; }
54 ChatLine[fg-color="08"] { foreground: #ffff00; }
55 ChatLine[bg-color="08"] { background: #ffff00; }
56 ChatLine[fg-color="09"] { foreground: #00ff00; }
57 ChatLine[bg-color="09"] { background: #00ff00; }
58 ChatLine[fg-color="0a"] { foreground: #008080; }
59 ChatLine[bg-color="0a"] { background: #008080; }
60 ChatLine[fg-color="0b"] { foreground: #00ffff; }
61 ChatLine[bg-color="0b"] { background: #00ffff; }
62 ChatLine[fg-color="0c"] { foreground: #4169e1; }
63 ChatLine[bg-color="0c"] { background: #4169e1; }
64 ChatLine[fg-color="0d"] { foreground: #ff00ff; }
65 ChatLine[bg-color="0d"] { background: #ff00ff; }
66 ChatLine[fg-color="0e"] { foreground: #808080; }
67 ChatLine[bg-color="0e"] { background: #808080; }
68 ChatLine[fg-color="0f"] { foreground: #c0c0c0; }
69 ChatLine[bg-color="0f"] { background: #c0c0c0; }
70
71 // mIRC formats
72 ChatLine[format="bold"]      { font-weight: bold; }
73 ChatLine[format="italic"]    { font-style: italic; }
74 ChatLine[format="underline"] { font-style: underline; }
75
76 // ChatView message colors
77 ChatLine#notice { foreground: #916409; }
78 ChatLine#action { foreground: #0000ff; }
79 ChatLine#nick { foreground: #960096; }
80 ChatLine#mode { foreground: #960096; }
81 ChatLine#join { foreground: #960096; }
82 ChatLine#part { foreground: #960096; }
83 ChatLine#quit { foreground: #960096; }
84 ChatLine#kick { foreground: #960096; }
85 ChatLine#kill { foreground: #960096; }
86 ChatLine#server { foreground: #916409; }
87 ChatLine#info { foreground: #916409; }
88 ChatLine#error { foreground: #916409; }
89 ChatLine#daychange { foreground: #916409; }
90 ChatLine#topic { foreground: #960096; }
91 ChatLine#netsplit-join { foreground: #960096; }
92 ChatLine#netsplit-quit { foreground: #960096; }
93
94 // BufferView Colors
95 ChatListItem[state="inactive"] { foreground: #a0a0a4; }
96 ChatListItem[state="channel-event"] { foreground: #008000; }
97 ChatListItem[state="unread-message"] { foreground: #0000f5; }
98 ChatListItem[state="highlighted"] { foreground: #ff8000; }
99
100 // NickView Colors
101 NickListItem[type="user", state="away"] { foreground: #a0a0a4; }