blob: 810ceb79f4681225397ec0d93235efbda886504e (
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
|
# Based on Bridge by ScionicSpectre and Adwaita by GNOME
# vim:set ts=2 sw=2 sts=2 ai et:
#
# This is the GTK 2 version of Materia. It's whole purpose is to look as the
# GTK 3 version as much as possible until GTK 2 dies completely.
#
# Note: comments for explaining styles are on the bottom of each file beside the
# widget matches.
# Declare the colours used throughout the theme.
# There shouldn't be any fiddling with them in the theme files themselves in
# order to not mess up the dark theme.
# Text/base
gtk-color-scheme = "text_color:#FFFFFF\nbase_color:#22262c"
# Foreground/background
gtk-color-scheme = "fg_color:#FFFFFF\nbg_color:#22262c"
# Selected foreground/background
gtk-color-scheme = "selected_fg_color:#FFFFFF\nselected_bg_color:#7b88ff"
# Titlebar foreground/background
gtk-color-scheme = "titlebar_fg_color:#FFFFFF\ntitlebar_bg_color:#1b1e24"
# Menus
gtk-color-scheme = "menu_color:#2d3036"
# Tooltips foreground/background
gtk-color-scheme = "tooltip_fg_color:#FFFFFF\ntooltip_bg_color:#2d3036"
# Links
gtk-color-scheme = "link_color:#8AB4F8\nvisited_link_color:#CE93D8"
# Set GTK settings
gtk-auto-mnemonics = 1
gtk-primary-button-warps-slider = 1
# And hand over the control to the theme files
include "main.rc"
include "apps.rc"
include "hacks.rc"
|