Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 594266
Collapse All | Expand All

(-)lcr-0.0.9/lcrcfg.c.old (-32 / +32 lines)
Lines 50-97 Link Here
50
{
50
{
51
  {
51
  {
52
    // eLcrThemeClassic
52
    // eLcrThemeClassic
53
    0x7F000000, // clrBackground
53
    (int) 0x7F000000, // clrBackground
54
    0xFFFCFCFC, // clrTitleBackground
54
    (int) 0xFFFCFCFC, // clrTitleBackground
55
    0xFF000000, // clrTitleText
55
    (int) 0xFF000000, // clrTitleText
56
    0xFFFCC024, // clrActiveText
56
    (int) 0xFFFCC024, // clrActiveText
57
//    0xFFFCFCFC, // clrInactiveText // changed, since nearly white on white cannot be read ;-)
57
//    0xFFFCFCFC, // clrInactiveText // changed, since nearly white on white cannot be read ;-)
58
    0xFF000000, // clrInactiveText
58
    (int) 0xFF000000, // clrInactiveText
59
    0xFFFC1414, // clrRed
59
    (int) 0xFFFC1414, // clrRed
60
    0xFFFCC024, // clrYellow
60
    (int) 0xFFFCC024, // clrYellow
61
    0xFF24FC24, // clrGreen
61
    (int) 0xFF24FC24, // clrGreen
62
  },
62
  },
63
  {
63
  {
64
    // eLcrThemeElchi
64
    // eLcrThemeElchi
65
    0xC8000066, // clrBackground
65
    (int) 0xC8000066, // clrBackground
66
    0xC833AAEE, // clrTitleBackground
66
    (int) 0xC833AAEE, // clrTitleBackground
67
    0xFF000000, // clrTitleText
67
    (int) 0xFF000000, // clrTitleText
68
    0xFFCCBB22, // clrActiveText
68
    (int) 0xFFCCBB22, // clrActiveText
69
    0xFFFFFFFF, // clrInactiveText
69
    (int) 0xFFFFFFFF, // clrInactiveText
70
    0xFFFF0000, // clrRed
70
    (int) 0xFFFF0000, // clrRed
71
    0xFFFFEE00, // clrYellow
71
    (int) 0xFFFFEE00, // clrYellow
72
    0xFF33CC33, // clrGreen
72
    (int) 0xFF33CC33, // clrGreen
73
  },
73
  },
74
  {
74
  {
75
    // eLcrThemeDeepBlue
75
    // eLcrThemeDeepBlue
76
    0xC80C0C0C, // clrBackground
76
    (int) 0xC80C0C0C, // clrBackground
77
    0xC832557A, // clrTitleBackground
77
    (int) 0xC832557A, // clrTitleBackground
78
    0xFF000000, // clrTitleText
78
    (int) 0xFF000000, // clrTitleText
79
    0xFFCE7B00, // clrActiveText
79
    (int) 0xFFCE7B00, // clrActiveText
80
    0xFF9A9A9A, // clrInactiveText
80
    (int) 0xFF9A9A9A, // clrInactiveText
81
    0xFF992900, // clrRed
81
    (int) 0xFF992900, // clrRed
82
    0xFFCE7B00, // clrYellow
82
    (int) 0xFFCE7B00, // clrYellow
83
    0xFF336600, // clrGreen
83
    (int) 0xFF336600, // clrGreen
84
  },
84
  },
85
  {
85
  {
86
    // eLcrThemeMoronimo
86
    // eLcrThemeMoronimo
87
    0xDF294A6B, // clrBackground
87
    (int) 0xDF294A6B, // clrBackground
88
    0xDF3E5578, // clrTitleBackground
88
    (int) 0xDF3E5578, // clrTitleBackground
89
    0xFF9BBAD7, // clrTitleText
89
    (int) 0xFF9BBAD7, // clrTitleText
90
    0xFFCE7B00, // clrActiveText
90
    (int) 0xFFCE7B00, // clrActiveText
91
    0xFF9A9A9A, // clrInactiveText
91
    (int) 0xFF9A9A9A, // clrInactiveText
92
    0xFF992900, // clrRed
92
    (int) 0xFF992900, // clrRed
93
    0xFFCE7B00, // clrYellow
93
    (int) 0xFFCE7B00, // clrYellow
94
    0xFF336600, // clrGreen
94
    (int) 0xFF336600, // clrGreen
95
  },
95
  },
96
};
96
};
97
97

Return to bug 594266