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