Skip to content

Commit

Permalink
Depreciation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
thekomer committed Jul 15, 2023
1 parent fb5074b commit 0578c46
Show file tree
Hide file tree
Showing 4 changed files with 404 additions and 187 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### Depreciation notice:

Due to the lack of resources, this repo is deprecated.
I will rebuild this theme later on with different base because - in my opinion - one of current base sources do not comply with GPL guidelines.
'Till then, fill free to use it on old-stable linux releases. It works just fine for me on debian 11.

# Sunset GTK theme

![](art/Sunset-1080.png)
Expand All @@ -7,4 +13,3 @@ Sunset is a dark orange-accented Gtk3 & Gtk4 theme based on [Sweet theme](https:
#### Installation:

Download latest release file and extract the zip file to the themes directory i.e. `/usr/share/themes/` for system-wide use; or to `~/.themes/` (create it if necessary) for single user. Then change theme via distribution specific tool.

82 changes: 82 additions & 0 deletions gtk-3.0/apps/_chromium.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,85 @@
color: transparentize($fg_color, 0.2);
background-color: lighten(mix($bg_color, $base_color, 15%), 8%);
}
.menu.chromium {
background-color: lighten($headerbar_color, 2%);
border: 1px solid $borders_color; // adds borders in a non composited env
border-radius: 0.4em;// 5px;

min-height: 17px;
min-width: 40px;
padding: 4px 6px;
margin-left: 2px;
margin-right: 2px;
text-shadow: none;
border-radius: 0.4em;
transition: $menu_transition;

&:hover {
color: $selected_fg_color;
background-color: $selected_bg_color;
}

&:disabled {
color: $insensitive_fg_color;
&:backdrop { color: $backdrop_insensitive_color; }
}

&:backdrop,
&:backdrop:hover {
color: $backdrop_fg_color;
background-color: transparent;
}

// submenu indicators
arrow {
min-height: 16px;
min-width: 16px;

&:dir(ltr) {
-gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
margin-left: 10px;
}

&:dir(rtl) {
-gtk-icon-source:-gtk-icontheme('pan-end-symbolic-rtl');
margin-right: 10px;
}
}

// avoids labels color being overridden, see
// https://bugzilla.gnome.org/show_bug.cgi?id=767058
label { &:dir(rtl), &:dir(ltr) { color: inherit; }}
// overflow arrows
> arrow {
@include button(undecorated);

min-height: 16px;
min-width: 16px;
padding: 4px;
background-color: $menu_color;
border-radius: 0;

&.top {
margin-top: -6px;
border-bottom: 1px solid mix($fg_color, $base_color, 10%);
-gtk-icon-source: -gtk-icontheme('pan-up-symbolic');
}

&.bottom {
margin-bottom: -6px;
border-top: 1px solid mix($fg_color, $base_color, 10%);
-gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
}

&:hover { background-color: mix($fg_color, $base_color, 10%); }

&:backdrop { background-color: $backdrop_menu_color; }

&:disabled {
color: transparent;
background-color: transparent;
border-color: transparent ;
}
}
}
Loading

0 comments on commit 0578c46

Please sign in to comment.