Project

General

Profile

0001-Updated-LinuxDolt-s-bluestheme-to-Version-1.1.patch

LinuxDolt, 06/26/2010 11:30 AM

View differences:

data/stylesheets/LinuxDolt-bluestheme.qss
1
// LinuxDolt's bluestheme Version 1.1
2

  
3
// Copyright (C) Drew Patridge 2009-2010 <slicersv@gmail.com>
4

  
1 5
// This file is free software; you can redistribute it and/or modify
2 6
// it under the terms of the GNU General Public License as published by
3 7
// the Free Software Foundation; version 2 of the License.
......
10 14
// You should have received a copy of the GNU General Public License
11 15
// along with this file.  If not, see <http://www.gnu.org/licenses/>.
12 16

  
13
// Copyright (C) Drew Patridge 2009
17
// ChangeLog:
18

  
19
// Version 1.1 - Updated 2010/06/25
20
// - fix Palette colors for changes in qt/kde color hinting
21
// -- text changed to a light blueish violet
22
// -- button-text changed to a light pure violet
23
// - change markerline rule to follow my own coding style
24
//   (single line does not exceed 79 cols, additional spacing)
25
// - added this ChangeLog and rearranged the file header in general
26

  
27
// Version 1.0-10189b4eb20d1b3b9579a6b51dde697691c18abd - Updated 2010/06/16
28
// - automatic change in markerline rule due to UI changes
29
//     (see git log for details)
30
// -- change by Manuel Nickschas <sputnick@quassel-irc.org>
31

  
32
// Version 1.0 - Updated 2009/11/06
33
// - first public git release
14 34

  
15 35
// Custom ChatView Colors
16 36
ChatView { background: #00004b; }
17
Palette { marker-line: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop:0 #ff0000, stop: 0.1 transparent); }
18

  
37
Palette {
38
  marker-line: qlineargradient( x1: 0, y1: 0, x2: 0, y2: 1,
39
				stop: 0 red, stop: 0.1 transparent );
40
}
19 41

  
20 42
ChatLine[label="highlight"] { foreground: #f0f5ff; background: #00008b; }
21 43

  
......
80 102
Palette {
81 103
  link: #5fffbf; link-visited: #5fffbf;
82 104

  
83
  window: #a0a5dd; window-text: #00004b; text: #00004b;
105
  window: #a0a5dd; window-text: #00004b; text: #cc00ff;
84 106

  
85 107
  light: #8085b3; midlight: #606593;  button: #404573;
86
  mid: #202553; dark: #000533; button-text: #0000b4; }
108
  mid: #202553; dark: #000533; button-text: #ff00ff; }
87 109

  
88 110
StyledLabel#topicLabel { background: #00004b; }
89 111
MultiLineEdit { background: #00004b; color: #f0f5ff; }
90
-