-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 66d6458
Showing
5 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## DarkBlue Ice for ulauncher | ||
<img src='images/example.png'> | ||
|
||
### A Beautiful theme for ulauncher with Dark blue and ice colors distributed in a harmonic way. | ||
|
||
--- | ||
|
||
## How to install | ||
* Create a themes folder: | ||
``` | ||
mkdir -p ~/.config/ulauncher/user-themes | ||
``` | ||
* Go to: | ||
``` | ||
cd ~/.config/ulauncher/user-themes | ||
``` | ||
* Clone this repository | ||
``` | ||
git clone git@github.com:Dedsd/DarkBlue-Ice-for-ulauncher.git | ||
``` | ||
* If you don't have git download from [github releases](https://github.com/Dedsd/DarkBlue-Ice-for-ulauncher/releases) | ||
|
||
--- | ||
|
||
Made by [André V.](https://github.com/Dedsd) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"manifest_version": "1", | ||
"name": "darkblue-ice", | ||
"display_name": "DarkBlue Ice", | ||
"extend_theme": "dark", | ||
"css_file": "theme.css", | ||
"css_file_gtk_3.20+": "theme-gtk-3.20.css", | ||
"matched_text_hl_colors": { | ||
"when_selected": "#c3d6f9", | ||
"when_not_selected": "#c3d6f9" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@import url("theme.css"); | ||
|
||
.input { | ||
caret-color: @caret_color; | ||
} | ||
.selected.item-box { | ||
/* workaround for a bug in GTK+ < 3.20 */ | ||
border: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/** | ||
* App Window | ||
*/ | ||
@define-color bg_color #2A2F3B; | ||
@define-color window_bg @bg_color; | ||
@define-color window_border_color #2A2F3B; | ||
@define-color prefs_backgroud #454e63; | ||
|
||
/** | ||
* Input | ||
*/ | ||
@define-color selected_bg_color #39404D; | ||
@define-color selected_fg_color #DBE4F5; | ||
@define-color input_color #556077; | ||
@define-color caret_color darker(@input_color); | ||
|
||
/** | ||
* Result items | ||
*/ | ||
@define-color item_name #919DB3; | ||
@define-color item_text #DBE4F5; | ||
@define-color item_box_selected #39404D; | ||
@define-color item_text_selected #DBE4F5; | ||
@define-color item_name_selected #C3D6F9; | ||
@define-color item_shortcut_color #DBE4F5; | ||
@define-color item_shortcut_shadow darker(@bg_color); | ||
@define-color item_shortcut_color_sel #DBE4F5; | ||
@define-color item_shortcut_shadow_sel darker(@item_box_selected); | ||
|
||
.app { | ||
background-color: @window_bg; | ||
border-color: @window_border_color; | ||
} | ||
|
||
.input { | ||
color: #C3D6F9; | ||
} | ||
|
||
/** | ||
* Selected text in input | ||
*/ | ||
.input *:selected, | ||
.input *:focus, | ||
*:selected:focus { | ||
background-color: alpha (@selected_bg_color, 0.9); | ||
color: @selected_fg_color; | ||
} | ||
|
||
.item-text { | ||
color: @item_text; | ||
} | ||
.item-name { | ||
color: @item_name; | ||
} | ||
|
||
.selected.item-box { | ||
background-color: @item_box_selected; | ||
border-left: 1px solid @window_border_color; | ||
border-right: 1px solid @window_border_color; | ||
} | ||
.selected.item-box .item-text { | ||
color: @item_text_selected; | ||
} | ||
.selected.item-box .item-name { | ||
color: @item_name_selected; | ||
} | ||
.item-shortcut { | ||
color: @item_shortcut_color; | ||
text-shadow: 1px 1px 1px @item_shortcut_shadow; | ||
} | ||
.selected.item-box .item-shortcut { | ||
color: @item_shortcut_color_sel; | ||
text-shadow: 1px 1px 1px @item_shortcut_shadow_sel; | ||
} | ||
|
||
.prefs-btn { | ||
opacity: 0.9; | ||
} | ||
.prefs-btn:hover { | ||
background-color: @prefs_backgroud; | ||
} |