Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/gtk-engine/theme/gtkrc
blob: 7dfe0b5c9fab9459faadd8c79500c349f7541287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Edit these colors and fonts however you like.
style "default"
{
  GtkToolbar::internal_padding = 0
  GtkToolbar::shadow_type = 0

  fg[NORMAL]        = "#000000"
  fg[ACTIVE]        = "#000000"
  fg[PRELIGHT]      = "#000000"
  fg[SELECTED]      = "#FFFFFF"
  fg[INSENSITIVE]   = "#747474"
  bg[NORMAL]        = "#414141"
  bg[ACTIVE]        = "#000000"
  bg[PRELIGHT]      = "#000000"
  bg[SELECTED]      = "#414141"
  bg[INSENSITIVE]   = "#D3D3DD"
  base[NORMAL]      = "#646464"
  base[ACTIVE]      = "#808080"
  base[PRELIGHT]    = "#E5E5F7"
  base[SELECTED]    = "#336699"
  base[INSENSITIVE] = "#E5E5F7"
  text[NORMAL]      = "#FFFFFF"
  text[ACTIVE]      = "#FFFFFF"
  text[PRELIGHT]    = "#000000"
  text[SELECTED]    = "#FFFFFF"
  text[INSENSITIVE] = "#747474"

  engine "olpc"
  {
    mark_type1 = NOTHING
    mark_type2 = NOTHING
  }
}

style "button" = "default"
{
  GtkButton::default_border = { 0, 0, 0, 0 }
  GtkButton::default_outsideborder = { 0, 0, 0, 0 }
  GtkButton::inner_border = { 0, 0, 0, 0 }
  GtkButton::focus_line_width = 0
  GtkButton::focus_padding = 0
  xthickness = 0
  ythickness = 0
}

style "entry" = "default"
{
  GtkWidget::cursor_color = "#FFFFFF"
  xthickness = 12
  ythickness = 3
  font_name = 'Sans 14'
}

style "scrollbar" = "default"
{
  GtkRange::slider_width = 4
  GtkRange::stepper_size = 1
  GtkRange::trough-border = 3

  bg[ACTIVE]        = "#E6E6E6"
  bg[NORMAL]        = "#414141"
  bg[PRELIGHT]      = "#414141"
}

class "GtkWidget" style "default"
class "GtkScrollbar" style "scrollbar"
class "GtkButton" style "button"
class "GtkEntry" style "entry"

# Mozilla

style "mozilla" = "mozilla-default"
{
  base[NORMAL] = "#FFFFFF"
  text[NORMAL] = "#000000"
}

style "mozilla-button" = "mozilla-default"
{
  bg[NORMAL] = "#D3D3DD"
}

class "GtkInvisible" style "mozilla"
class "GtkButton" style "mozilla-button"