Skip to content
This repository has been archived by the owner on May 14, 2020. It is now read-only.

Commit

Permalink
budgie desktop styling #16
Browse files Browse the repository at this point in the history
  • Loading branch information
fossfreedom committed Dec 24, 2017
1 parent 19fdd92 commit e6c23fd
Show file tree
Hide file tree
Showing 14 changed files with 4,747 additions and 715 deletions.
807 changes: 688 additions & 119 deletions common/gtk-3.0/3.20/gtk-dark.css

Large diffs are not rendered by default.

807 changes: 688 additions & 119 deletions common/gtk-3.0/3.20/gtk-darker.css

Large diffs are not rendered by default.

807 changes: 688 additions & 119 deletions common/gtk-3.0/3.20/gtk-solid-dark.css

Large diffs are not rendered by default.

807 changes: 688 additions & 119 deletions common/gtk-3.0/3.20/gtk-solid-darker.css

Large diffs are not rendered by default.

807 changes: 688 additions & 119 deletions common/gtk-3.0/3.20/gtk-solid.css

Large diffs are not rendered by default.

807 changes: 688 additions & 119 deletions common/gtk-3.0/3.20/gtk.css

Large diffs are not rendered by default.

608 changes: 608 additions & 0 deletions common/gtk-3.0/3.20/sass/_budgie.scss

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion common/gtk-3.0/3.20/sass/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
// When color definition differs for dark and light variant,
// it gets @if ed depending on $variant

@function gtkopacity($c, $a) {
@return scale-color($c, $alpha: percentage(-1 + $a));
}

$base_color: if($variant =='light', #ffffff, #404552);
$base_bg_color: #F5F6F7;
$text_color: if($variant == 'light', #5c616c, #D3DAE3);
$bg_color: if($variant =='light', #F5F6F7, #383C4A);
$bg_color: if($variant =='light', $base_bg_color, #383C4A);
$fg_color: if($variant =='light', #5c616c, #D3DAE3);

$selected_fg_color: #ffffff;
Expand Down
1 change: 1 addition & 0 deletions common/gtk-3.0/3.20/sass/gtk-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ $transparency: 'true';
@import 'lightdm';
@import 'transparent_widgets';
@import 'colors-public';
@import 'budgie';
1 change: 1 addition & 0 deletions common/gtk-3.0/3.20/sass/gtk-darker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ $transparency: 'true';
@import 'lightdm';
@import 'transparent_widgets';
@import 'colors-public';
@import 'budgie';
1 change: 1 addition & 0 deletions common/gtk-3.0/3.20/sass/gtk-solid-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ $transparency: 'false';
@import 'lightdm';
@import 'transparent_widgets';
@import 'colors-public';
@import 'budgie';
1 change: 1 addition & 0 deletions common/gtk-3.0/3.20/sass/gtk-solid-darker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ $transparency: 'false';
@import 'lightdm';
@import 'transparent_widgets';
@import 'colors-public';
@import 'budgie';
1 change: 1 addition & 0 deletions common/gtk-3.0/3.20/sass/gtk-solid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ $transparency: 'false';
@import 'lightdm';
@import 'transparent_widgets';
@import 'colors-public';
@import 'budgie';
1 change: 1 addition & 0 deletions common/gtk-3.0/3.20/sass/gtk.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ $transparency: 'true';
@import 'lightdm';
@import 'transparent_widgets';
@import 'colors-public';
@import 'budgie';

0 comments on commit e6c23fd

Please sign in to comment.