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

add theme Darker Than Black #54

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions User Themes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,6 @@

#### merah
![merah](https://raw.githubusercontent.com/ipang-dwi/merah/master/img2.jpg)

#### Darker Than Black
![Darker Than Black](https://raw.githubusercontent.com/Avasz/rofi-themes-avasz/master/darker-than-black/images/darker-than-black_v3.png)
136 changes: 136 additions & 0 deletions User Themes/darker-than-black.rasi
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
/*******************************************************************************
* ROFI Color theme
* User: Avasz
* Copyleft: Avasz <[email protected]>
*******************************************************************************/


* {
background-color: #0F1212;
text-color: #d3d7cf;
selbg: #e3e3e3;
actbg: #e3e3e3;
urgbg: #e53935;
winbg: #0F1212;

selected-normal-foreground: @winbg;
normal-foreground: @text-color;
selected-normal-background: @actbg;
normal-background: @background-color;

selected-urgent-foreground: @background-color;
urgent-foreground: @text-color;
selected-urgent-background: @urgbg;
urgent-background: @background-color;

selected-active-foreground: @winbg;
active-foreground: @winbg;
selected-active-background: @actbg;
active-background: @selbg;
separator-style: "none";
margin: 0;
}

#window {
background-color: @background-color;
children: [mainbox];
}

#mainbox {
border: 0;
orientation: vertical;
children: [ entry,message,listview,mode-switcher ];
}

#entry {
expand: false;
text-color: @normal-foreground;
padding: 10px 0px 10px 0px ; //padding between two lines
border: 0 0 1px;
border-color: grey;
margin: 30px 30px 0px 30px;
}

#sidebar {
expand: false;
}

#textbox { // mesg box
horizontal-align: 0;
background-color: silver;
padding: 10px 20px 10px 20px ;
text-color: #000;
}

#listview {
border: 0px 0px 0px ;
border-color: grey;
padding: 20 30 70 30;
}


#mode-switcher {
/* border: 1px 0px 0px 0px; */
/* border-color: grey; */
/* padding: 0 30 10 30; */
margin: 10px 30px 30px 30px;
}

button {
padding: 8px;
}

#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}

#element {
border: 0;
padding: 10px 20px 10px 20px ;
}

#element.normal.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}

#element.normal.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}

#element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
}

#element.selected.normal {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}

#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}

#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}

#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}

#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}

#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}