From aa3f9eb58cf87d319c7bed8cc959d87d567e2bdf Mon Sep 17 00:00:00 2001 From: Avasz Date: Mon, 14 Sep 2020 10:39:20 +0545 Subject: [PATCH] add theme Darker Than Black --- User Themes/README.md | 3 + User Themes/darker-than-black.rasi | 136 +++++++++++++++++++++++++++++ 2 files changed, 139 insertions(+) create mode 100644 User Themes/darker-than-black.rasi diff --git a/User Themes/README.md b/User Themes/README.md index e723912..44741ca 100644 --- a/User Themes/README.md +++ b/User Themes/README.md @@ -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) diff --git a/User Themes/darker-than-black.rasi b/User Themes/darker-than-black.rasi new file mode 100644 index 0000000..0c5b308 --- /dev/null +++ b/User Themes/darker-than-black.rasi @@ -0,0 +1,136 @@ +/******************************************************************************* + * ROFI Color theme + * User: Avasz + * Copyleft: Avasz + *******************************************************************************/ + + +* { + 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; +}