1/* Note: Widgets obtained from Glade files will not be addressable
2   unless they have been named or have style classes added. Only
3   the widget type can be configured unless they are named in code */
4
5
6/* Import Matcher, amount of intervention required */
7@define-color intervention-required_bg_color brown1;
8@define-color intervention-probably-required_bg_color gold;
9@define-color intervention-not-required_bg_color DarkSeaGreen1;
10
11.gnc-class-intervention-required {
12  background-color: @intervention-required_bg_color;
13}
14
15.gnc-class-intervention-probably-required {
16  background-color: @intervention-probably-required_bg_color;
17}
18
19.gnc-class-intervention-not-required {
20  background-color: @intervention-not-required_bg_color;
21}
22
23.gnc-class-intervention-required-dark {
24  background-color: shade (@intervention-required_bg_color, 0.7);
25}
26
27.gnc-class-intervention-probably-required-dark {
28  background-color: shade (@intervention-probably-required_bg_color, 0.8);
29}
30
31.gnc-class-intervention-not-required-dark {
32  background-color: shade (@intervention-not-required_bg_color, 0.3);
33}
34
35/* Negative value label colors */
36@define-color default-color currentColor;
37@define-color negative-numbers rgb(75%, 0%, 0%);
38
39/* Register2 grid lines color */
40.gnc-class-register2-grid-lines {
41  border-color: black;
42}
43
44/* Make some labels more important */
45.gnc-class-underline-title {
46font-size: large;
47font-weight: bold;
48text-decoration-line: underline;
49}
50.gnc-class-title {
51font-size: large;
52font-weight: bold;
53}
54.gnc-class-strong {
55font-weight: bold;
56}
57.gnc-class-emphasis {
58font-style: italic;
59}
60
61/* The Dense Calendar defaults */
62@define-color primary_bg_color lavender;
63@define-color secondary_bg_color SlateGray1;
64@define-color marker_bg_color yellow;
65
66*.primary {
67  background-color: @primary_bg_color;
68}
69
70*.primary-dark {
71  background-color: shade (@primary_bg_color, 0.7);
72}
73
74*.secondary {
75  background-color: @secondary_bg_color;
76}
77
78*.secondary-dark {
79  background-color: shade (@secondary_bg_color, 0.7);
80}
81
82*.markers {
83  background-color: @marker_bg_color;
84}
85
86*.markers-dark {
87  background-color: shade (@marker_bg_color, 0.8);
88}
89