Skip to content

Commit

Permalink
Menu colour made darker so it stands out against menubar and titlebar…
Browse files Browse the repository at this point in the history
…, menu item selected colour is now brighter and clearer
  • Loading branch information
xyl0n committed Aug 9, 2014
1 parent 5a5a5b5 commit 9d6b57d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions gtk-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
@define-color menubar_fg_color @theme_bg_color;
@define-color toolbar_bg_color @theme_bg_color;
@define-color toolbar_fg_color @theme_text_color;
@define-color menu_bg_color @theme_text_color;
@define-color menu_bg_color shade(@theme_text_color, 0.87);
@define-color menu_fg_color @theme_bg_color;
@define-color panel_bg_color #222222;
@define-color panel_fg_color #f2f2f2;
@define-color menu_selected_fg_color shade(mix(#ff0000, @theme_selected_fg_color, 0.75), 1.35);
@define-color menu_selected_fg_color shade(shade(mix(#ff0000, #df253f, 0.75), 1.35), 0.95);

/* osd */
@define-color osd_base #fafafa;
Expand Down
6 changes: 3 additions & 3 deletions gtk-3.0/widgets/menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ GtkComboBox .menu {

.menubar.menuitem:hover,
.menubar .menuitem:hover {
border-color: alpha(@theme_fg_color, 0.15);
background-color: alpha(@theme_fg_color, 0.15);
border-color: @menu_bg_color;
background-color: @menu_bg_color;
background-image: none;
color: shade(@menubar_fg_color, 0.95);
}
Expand Down Expand Up @@ -189,4 +189,4 @@ GtkModelMenuItem GtkBox GtkImage {

.button .menu *{
font-weight: normal;
}
}

0 comments on commit 9d6b57d

Please sign in to comment.