-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a rounded style by AlphaTechnolog
- Loading branch information
1 parent
79e9f4d
commit 6399d8f
Showing
3 changed files
with
133 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
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,128 @@ | ||
/* | ||
* rofi themes - rounded | ||
* colors - picked from chromium web browser | ||
* mode - light | ||
*/ | ||
|
||
configuration { | ||
modi: "drun"; | ||
display-drun: "Apps"; | ||
display-run: ""; | ||
drun-display-format: "{name}"; | ||
font: "Iosevka Nerd Font 12"; | ||
} | ||
|
||
* { | ||
bg: #181f21; | ||
primary: #8ccf7e; | ||
secondbg: #1a2224; | ||
alt: #1a2224; | ||
rad: 12px; | ||
|
||
background-color: @bg; | ||
text-color: @primary; | ||
} | ||
|
||
window { | ||
children: [ container, mainbox ]; | ||
padding: 20px 0 0; | ||
border-radius: @rad; | ||
background-color: @secondbg; | ||
} | ||
|
||
container { | ||
children: [ box, mode-switcher, box1 ]; | ||
orientation: horizontal; | ||
expand: false; | ||
background-image: linear-gradient(to bottom, | ||
#8ccf7e, #8ccf7e, #8ccf7e, #8ccf7e, | ||
#181f21, #181f21, #181f21, #181f21); | ||
} | ||
|
||
box { | ||
expand: false; | ||
padding: 0 2% 0; | ||
margin: 0 -2px 0 0; | ||
border-radius: 0 0 12px 0; | ||
background-color: @secondbg; | ||
} | ||
|
||
box1 { | ||
expand: true; | ||
margin: 0 0 0 -2px; | ||
border-radius: 0 0 0 12px; | ||
background-color: @secondbg; | ||
} | ||
|
||
mode-switcher { background-color: @secondbg; } | ||
|
||
button { | ||
padding: 2% 14% 2% 3%; | ||
border-radius: 0 0 0 12px; | ||
background-color: @primary; | ||
text-color: @bg; | ||
} | ||
|
||
button selected { | ||
border-radius: 12px 12px 0 0; | ||
background-color: @bg; | ||
text-color: @primary; | ||
} | ||
|
||
mainbox { | ||
children: [ inputbar, listview ]; | ||
margin: -2px 0 0; | ||
spacing: 2%; | ||
border-radius: @rad; | ||
} | ||
|
||
inputbar { | ||
children: [ textbox, entry ]; | ||
expand: false; | ||
margin: 20px 20px 0; | ||
border-radius: @rad; | ||
background-color: @alt; | ||
} | ||
|
||
textbox { | ||
str: ""; | ||
expand: false; | ||
padding: 0 1% 0; | ||
horizontal-align: 0.5; | ||
vertical-align: 0.5; | ||
border-radius: @rad; | ||
background-color: @primary; | ||
text-color: @bg; | ||
font: "Iosevka Nerd Font 17"; | ||
} | ||
|
||
entry { | ||
expand: true; | ||
padding: 2%; | ||
placeholder: "Search"; | ||
border-radius: @rad; | ||
background-color: @alt; | ||
} | ||
|
||
listview { | ||
columns: 2; | ||
lines: 5; | ||
cycle: false; | ||
layout: vertical; | ||
margin: 0 20px 20px; | ||
} | ||
|
||
element { | ||
orientation: vertical; | ||
border-radius: @rad; | ||
padding: 2% 3%; | ||
} | ||
|
||
element selected, element-text selected { | ||
background-color: @primary; | ||
text-color: @bg; | ||
} | ||
|
||
element-text { vertical-align: 0.5; } | ||
listview, element, element selected, element-text { cursor: pointer; } | ||
entry { cursor: text; } |