mirror of
https://git.disroot.org/eudaimon/Simplewaita.git
synced 2026-03-10 04:21:07 +00:00
Featured finished, ready to merge into master
This commit is contained in:
parent
cf8cc44147
commit
837eb5922f
14 changed files with 845 additions and 285 deletions
|
|
@ -1,7 +1,19 @@
|
|||
|
||||
# Please keep this gtkrc in sync with the other ones from Clearlooks based themes.
|
||||
|
||||
gtk-color-scheme = "base_color:#ffffff\nfg_color:#000000\ntooltip_fg_color:#000000\nselected_bg_color:#86ABD9\nselected_fg_color:#ffffff\ntext_color:#1A1A1A\nbg_color:#EDECEB\ntooltip_bg_color:#F5F5B5"
|
||||
gtk-color-scheme = "bg_color:${vwindow_bg}"
|
||||
gtk-color-scheme = "fg_color:${vwindow_fg}"
|
||||
gtk-color-scheme = "base_color:${vtext_widget_bg}"
|
||||
gtk-color-scheme = "text_color:${vtext_widget_fg}"
|
||||
gtk-color-scheme = "selected_bg_color:${vselected_bg}"
|
||||
gtk-color-scheme = "selected_fg_color:${vselected_fg}"
|
||||
gtk-color-scheme = "tooltip_bg_color:${vhint_bg}"
|
||||
gtk-color-scheme = "tooltip_fg_color:${vhint_fg}"
|
||||
gtk-color-scheme = "disabled_bg_color:${vdisabled_bg}"
|
||||
gtk-color-scheme = "disabled_fg_color:${vdisabled_fg}"
|
||||
gtk-color-scheme = "button_checked_bg_color:${vbutton_checked_bg}"
|
||||
gtk-color-scheme = "button_checked_fg_color:${vbutton_checked_fg}"
|
||||
|
||||
|
||||
style "default" {
|
||||
xthickness = 1
|
||||
|
|
@ -51,25 +63,25 @@ style "default" {
|
|||
bg[NORMAL] = @bg_color
|
||||
bg[PRELIGHT] = shade (1.02, @bg_color)
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
bg[INSENSITIVE] = @bg_color
|
||||
bg[INSENSITIVE] = @disabled_bg_color
|
||||
bg[ACTIVE] = shade (0.9, @bg_color)
|
||||
|
||||
fg[NORMAL] = @fg_color
|
||||
fg[PRELIGHT] = @fg_color
|
||||
fg[SELECTED] = @selected_fg_color
|
||||
fg[INSENSITIVE] = darker (@bg_color)
|
||||
fg[INSENSITIVE] = @disabled_fg_color
|
||||
fg[ACTIVE] = @fg_color
|
||||
|
||||
text[NORMAL] = @text_color
|
||||
text[PRELIGHT] = @text_color
|
||||
text[SELECTED] = @selected_fg_color
|
||||
text[INSENSITIVE] = darker (@bg_color)
|
||||
text[INSENSITIVE] = @disabled_fg_color
|
||||
text[ACTIVE] = @selected_fg_color
|
||||
|
||||
base[NORMAL] = @base_color
|
||||
base[PRELIGHT] = shade (0.95, @bg_color)
|
||||
base[SELECTED] = @selected_bg_color
|
||||
base[INSENSITIVE] = @bg_color
|
||||
base[INSENSITIVE] = @disabled_bg_color
|
||||
base[ACTIVE] = shade (0.9, @selected_bg_color)
|
||||
|
||||
engine "clearlooks" {
|
||||
|
|
@ -172,7 +184,8 @@ style "button" {
|
|||
|
||||
bg[NORMAL] = shade (1.04, @bg_color)
|
||||
bg[PRELIGHT] = shade (1.06, @bg_color)
|
||||
bg[ACTIVE] = shade (0.85, @bg_color)
|
||||
bg[ACTIVE] = @button_checked_bg_color
|
||||
fg[ACTIVE] = @button_checked_fg_color
|
||||
}
|
||||
|
||||
# The color is changed by the notebook_bg style, this style
|
||||
|
|
@ -295,7 +308,7 @@ style "text_is_fg_color_workaround" {
|
|||
text[PRELIGHT] = @fg_color
|
||||
text[SELECTED] = @selected_fg_color
|
||||
text[ACTIVE] = @fg_color
|
||||
text[INSENSITIVE] = darker (@bg_color)
|
||||
text[INSENSITIVE] = @disabled_fg_color
|
||||
}
|
||||
|
||||
# Workaround style for menus where the text color is used instead of the fg color.
|
||||
|
|
@ -305,7 +318,7 @@ style "menuitem_text_is_fg_color_workaround" {
|
|||
text[PRELIGHT] = @selected_fg_color
|
||||
text[SELECTED] = @selected_fg_color
|
||||
text[ACTIVE] = @fg_color
|
||||
text[INSENSITIVE] = darker (@bg_color)
|
||||
text[INSENSITIVE] = @disabled_fg_color
|
||||
}
|
||||
|
||||
# Workaround style for places where the fg color is used instead of the text color.
|
||||
|
|
@ -315,7 +328,7 @@ style "fg_is_text_color_workaround" {
|
|||
fg[PRELIGHT] = @text_color
|
||||
fg[SELECTED] = @selected_fg_color
|
||||
fg[ACTIVE] = @selected_fg_color
|
||||
fg[INSENSITIVE] = darker (@bg_color)
|
||||
fg[INSENSITIVE] = @disabled_fg_color
|
||||
}
|
||||
|
||||
# Style to set the toolbar to use a flat style. This is because the "New" button in
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue