aboutsummaryrefslogtreecommitdiff
path: root/rofi/launchers/type-7
diff options
context:
space:
mode:
Diffstat (limited to 'rofi/launchers/type-7')
-rwxr-xr-xrofi/launchers/type-7/launcher.sh19
-rw-r--r--rofi/launchers/type-7/style-1.rasi209
-rw-r--r--rofi/launchers/type-7/style-10.rasi207
-rw-r--r--rofi/launchers/type-7/style-2.rasi209
-rw-r--r--rofi/launchers/type-7/style-3.rasi209
-rw-r--r--rofi/launchers/type-7/style-4.rasi209
-rw-r--r--rofi/launchers/type-7/style-5.rasi209
-rw-r--r--rofi/launchers/type-7/style-6.rasi210
-rw-r--r--rofi/launchers/type-7/style-7.rasi203
-rw-r--r--rofi/launchers/type-7/style-8.rasi209
-rw-r--r--rofi/launchers/type-7/style-9.rasi210
11 files changed, 0 insertions, 2103 deletions
diff --git a/rofi/launchers/type-7/launcher.sh b/rofi/launchers/type-7/launcher.sh
deleted file mode 100755
index aa45aa9..0000000
--- a/rofi/launchers/type-7/launcher.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env bash
-
-## Author : Aditya Shakya (adi1090x)
-## Github : @adi1090x
-#
-## Rofi : Launcher (Modi Drun, Run, File Browser, Window)
-#
-## Available Styles
-#
-## style-1 style-2 style-3 style-4 style-5
-## style-6 style-7 style-8 style-9 style-10
-
-dir="$HOME/.config/rofi/launchers/type-7"
-theme='style-1'
-
-## Run
-rofi \
- -show drun \
- -theme ${dir}/${theme}.rasi
diff --git a/rofi/launchers/type-7/style-1.rasi b/rofi/launchers/type-7/style-1.rasi
deleted file mode 100644
index 092f4f8..0000000
--- a/rofi/launchers/type-7/style-1.rasi
+++ /dev/null
@@ -1,209 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,run,filebrowser,window";
- show-icons: true;
- display-drun: "";
- display-run: "";
- display-filebrowser: "";
- display-window: "";
- drun-display-format: "{name}";
- window-format: "{w} · {c} · {t}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #11092D;
- background-alt: #281657;
- foreground: #FFFFFF;
- selected: #DF5296;
- active: #6E77FF;
- urgent: #8E3596;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 700px;
- x-offset: 0px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 20px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
-}
-
-listbox {
- spacing: 20px;
- padding: 20px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- padding: 80px 60px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/a.png", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry", "dummy", "mode-switcher" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 12px 15px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: false;
- width: 250px;
- padding: 12px 16px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-dummy {
- expand: true;
- background-color: transparent;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- width: 45px;
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 1;
- lines: 7;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- padding: 4px;
- border-radius: 100%;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 12px;
- border-radius: 20px;
- background-color: @background;
- text-color: @foreground;
-}
diff --git a/rofi/launchers/type-7/style-10.rasi b/rofi/launchers/type-7/style-10.rasi
deleted file mode 100644
index 124df89..0000000
--- a/rofi/launchers/type-7/style-10.rasi
+++ /dev/null
@@ -1,207 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,run,filebrowser,window";
- show-icons: false;
- display-drun: "";
- display-run: "";
- display-filebrowser: "";
- display-window: "";
- drun-display-format: "{name}";
- window-format: "{w} · {c} · {t}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #11092D;
- background-alt: #281657;
- foreground: #FFFFFF;
- selected: #DF5296;
- active: #6E77FF;
- urgent: #8E3596;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: west;
- anchor: west;
- fullscreen: false;
- width: 400px;
- x-offset: 20px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 0px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
-}
-
-listbox {
- spacing: 10px;
- padding: 10px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview", "mode-switcher" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 0px;
- padding: 100px 40px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/j.jpg", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 8px 12px;
- border: 0px 2px 2px 2px;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: true;
- padding: 8px 12px;
- border: 2px 2px 0px 0px;
- border-radius: 0px;
- border-color: @selected;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- padding: 8px;
- border-radius: 0px;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 1;
- lines: 5;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- padding: 8px;
- border-radius: 0px;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 8px;
- border-radius: 0px;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 8px;
- border-radius: 0px;
- background-color: @background;
- text-color: @foreground;
-}
diff --git a/rofi/launchers/type-7/style-2.rasi b/rofi/launchers/type-7/style-2.rasi
deleted file mode 100644
index 40a2375..0000000
--- a/rofi/launchers/type-7/style-2.rasi
+++ /dev/null
@@ -1,209 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,run,filebrowser,window";
- show-icons: true;
- display-drun: "Apps";
- display-run: "Run";
- display-filebrowser: "Files";
- display-window: "Windows";
- drun-display-format: "{name}";
- window-format: "{w} · {c} · {t}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #180F39;
- background-alt: #32197D;
- foreground: #FFFFFF;
- selected: #FF00F1;
- active: #9878FF;
- urgent: #7D0075;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 1000px;
- x-offset: 0px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 20px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
-}
-
-listbox {
- spacing: 20px;
- padding: 20px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- padding: 80px 60px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/b.png", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry", "dummy", "mode-switcher" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 12px 15px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: false;
- width: 300px;
- padding: 12px 16px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-dummy {
- expand: true;
- background-color: transparent;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- width: 80px;
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 2;
- lines: 8;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- padding: 4px;
- border-radius: 100%;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 12px;
- border-radius: 20px;
- background-color: @background;
- text-color: @foreground;
-}
diff --git a/rofi/launchers/type-7/style-3.rasi b/rofi/launchers/type-7/style-3.rasi
deleted file mode 100644
index 6ac4900..0000000
--- a/rofi/launchers/type-7/style-3.rasi
+++ /dev/null
@@ -1,209 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,run,filebrowser,window";
- show-icons: true;
- display-drun: "";
- display-run: "";
- display-filebrowser: "";
- display-window: "";
- drun-display-format: "{name}";
- window-format: "{w} · {c} · {t}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #09164C;
- background-alt: #102886;
- foreground: #FFFFFF;
- selected: #FA00E9;
- active: #3860FF;
- urgent: #BB00AF;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 600px;
- x-offset: 0px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 10px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
-}
-
-listbox {
- spacing: 15px;
- padding: 15px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- padding: 100px 60px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/c.png", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry", "dummy", "mode-switcher" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 12px 15px;
- border-radius: 12px;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: false;
- width: 150px;
- padding: 12px 16px;
- border-radius: 12px;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-dummy {
- expand: true;
- background-color: transparent;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- width: 40px;
- padding: 12px;
- border-radius: 12px;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 1;
- lines: 5;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- padding: 6px;
- border-radius: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 24px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 10px;
- border-radius: 10px;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 10px;
- border-radius: 10px;
- background-color: @background;
- text-color: @foreground;
-}
diff --git a/rofi/launchers/type-7/style-4.rasi b/rofi/launchers/type-7/style-4.rasi
deleted file mode 100644
index 9657878..0000000
--- a/rofi/launchers/type-7/style-4.rasi
+++ /dev/null
@@ -1,209 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,run,filebrowser,window";
- show-icons: true;
- display-drun: "";
- display-run: "";
- display-filebrowser: "";
- display-window: "";
- drun-display-format: "{name}";
- window-format: "{w} · {c} · {t}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #2D1B14;
- background-alt: #462D23;
- foreground: #FFFFFF;
- selected: #E25F3E;
- active: #7B6C5B;
- urgent: #934A1C;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: west;
- anchor: west;
- fullscreen: false;
- width: 500px;
- height: 100%;
- x-offset: 0px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 0px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox", "mode-switcher" ];
-}
-
-listbox {
- spacing: 15px;
- padding: 15px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- padding: 40px 40px 155px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/d.png", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 12px 15px;
- border-radius: 0px;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: true;
- padding: 12px 16px;
- border-radius: 0px;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-dummy {
- expand: true;
- background-color: transparent;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- padding: 15px;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- padding: 12px;
- border-radius: 0px;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 1;
- lines: 10;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- padding: 8px;
- border-radius: 0px;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 24px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 12px;
- border-radius: 0px;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 12px;
- border-radius: 0px;
- background-color: @background;
- text-color: @foreground;
-}
diff --git a/rofi/launchers/type-7/style-5.rasi b/rofi/launchers/type-7/style-5.rasi
deleted file mode 100644
index 0edb39d..0000000
--- a/rofi/launchers/type-7/style-5.rasi
+++ /dev/null
@@ -1,209 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,filebrowser,window";
- show-icons: true;
- display-drun: "";
- display-run: "";
- display-filebrowser: "";
- display-window: "";
- drun-display-format: "{name}";
- window-format: "{w} · {c} · {t}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #231419;
- background-alt: #2D1E23;
- foreground: #FFFFFF;
- selected: #426647;
- active: #2E3F34;
- urgent: #D08261;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 600px;
- x-offset: 0px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 20px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
-}
-
-listbox {
- spacing: 20px;
- padding: 20px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- padding: 80px 60px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/e.jpg", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry", "dummy", "mode-switcher" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 12px 15px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: false;
- width: 250px;
- padding: 12px 16px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-dummy {
- expand: true;
- background-color: transparent;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- width: 45px;
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 1;
- lines: 7;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- padding: 4px;
- border-radius: 100%;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 12px;
- border-radius: 20px;
- background-color: @background;
- text-color: @foreground;
-}
diff --git a/rofi/launchers/type-7/style-6.rasi b/rofi/launchers/type-7/style-6.rasi
deleted file mode 100644
index d500569..0000000
--- a/rofi/launchers/type-7/style-6.rasi
+++ /dev/null
@@ -1,210 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,run,filebrowser,window";
- show-icons: true;
- display-drun: "APPS";
- display-run: "RUN";
- display-filebrowser: "FILES";
- display-window: "WINDOWS";
- drun-display-format: "{name}";
- window-format: "{w} · {c}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #D0D0D0;
- background-alt: #E9E9E9;
- foreground: #161616;
- selected: #BEBEBE;
- active: #999999;
- urgent: #808080;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 1000px;
- x-offset: 0px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 15px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
-}
-
-listbox {
- spacing: 20px;
- padding: 20px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- padding: 100px 60px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/f.png", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry", "dummy", "mode-switcher" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 12px 15px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: false;
- width: 300px;
- padding: 12px 16px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-dummy {
- expand: true;
- background-color: transparent;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- width: 80px;
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 6;
- lines: 3;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- padding: 10px;
- border-radius: 15px;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
- orientation: vertical;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 64px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.5;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 15px;
- border-radius: 15px;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 15px;
- border-radius: 15px;
- background-color: @background;
- text-color: @foreground;
-}
diff --git a/rofi/launchers/type-7/style-7.rasi b/rofi/launchers/type-7/style-7.rasi
deleted file mode 100644
index 98d135b..0000000
--- a/rofi/launchers/type-7/style-7.rasi
+++ /dev/null
@@ -1,203 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,run,filebrowser,window";
- show-icons: false;
- display-drun: "";
- display-run: "";
- display-filebrowser: "";
- display-window: "";
- drun-display-format: "{name}";
- window-format: "{w} · {c} · {t}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #101010;
- background-alt: #252525;
- foreground: #FFFFFF;
- selected: #505050;
- active: #909090;
- urgent: #707070;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 400px;
- x-offset: 0px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 20px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
-}
-
-listbox {
- spacing: 20px;
- padding: 20px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview", "mode-switcher" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- padding: 100px 40px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/g.png", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 12px 15px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: true;
- padding: 12px 16px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 1;
- lines: 5;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- padding: 12px;
- border-radius: 100%;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 15px;
- border-radius: 0px;
- background-color: @background;
- text-color: @foreground;
-}
diff --git a/rofi/launchers/type-7/style-8.rasi b/rofi/launchers/type-7/style-8.rasi
deleted file mode 100644
index 0ed4797..0000000
--- a/rofi/launchers/type-7/style-8.rasi
+++ /dev/null
@@ -1,209 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,run,filebrowser,window";
- show-icons: false;
- display-drun: "";
- display-run: "";
- display-filebrowser: "";
- display-window: "";
- drun-display-format: "{name}";
- window-format: "{w} · {c} · {t}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #030B16;
- background-alt: #0A1B37;
- foreground: #FFFFFF;
- selected: #CB43A6;
- active: #095873;
- urgent: #2FC6D8;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 800px;
- x-offset: 0px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 30px 5px 30px 5px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
-}
-
-listbox {
- spacing: 20px;
- padding: 20px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- padding: 100px 60px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/h.jpg", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry", "dummy", "mode-switcher" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 12px 15px;
- border-radius: 15px 5px 15px 5px;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: false;
- width: 250px;
- padding: 12px 16px;
- border-radius: 5px 15px 5px 15px;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-dummy {
- expand: true;
- background-color: transparent;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- width: 45px;
- padding: 12px;
- border-radius: 15px 5px 15px 5px;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 2;
- lines: 8;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 10px;
- padding: 12px;
- border-radius: 15px 5px 15px 5px;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 32px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 12px;
- border-radius: 15px 5px 15px 5px;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 12px;
- border-radius: 0px;
- background-color: @background;
- text-color: @foreground;
-}
diff --git a/rofi/launchers/type-7/style-9.rasi b/rofi/launchers/type-7/style-9.rasi
deleted file mode 100644
index ff3bf0a..0000000
--- a/rofi/launchers/type-7/style-9.rasi
+++ /dev/null
@@ -1,210 +0,0 @@
-/**
- *
- * Author : Aditya Shakya (adi1090x)
- * Github : @adi1090x
- *
- * Rofi Theme File
- * Rofi Version: 1.7.3
- **/
-
-/*****----- Configuration -----*****/
-configuration {
- modi: "drun,filebrowser,window";
- show-icons: true;
- display-drun: "";
- display-run: "";
- display-filebrowser: "";
- display-window: "";
- drun-display-format: "{name}";
- window-format: "{w}: {c}";
-}
-
-/*****----- Global Properties -----*****/
-* {
- font: "JetBrains Mono Nerd Font 10";
- background: #131D1F;
- background-alt: #183A43;
- foreground: #FFFFFF;
- selected: #649094;
- active: #E9CC9D;
- urgent: #FEA861;
-}
-
-/*****----- Main Window -----*****/
-window {
- /* properties for window widget */
- transparency: "real";
- location: center;
- anchor: center;
- fullscreen: false;
- width: 700px;
- x-offset: 0px;
- y-offset: 0px;
-
- /* properties for all widgets */
- enabled: true;
- border-radius: 20px;
- cursor: "default";
- background-color: @background;
-}
-
-/*****----- Main Box -----*****/
-mainbox {
- enabled: true;
- spacing: 0px;
- background-color: transparent;
- orientation: vertical;
- children: [ "inputbar", "listbox" ];
-}
-
-listbox {
- spacing: 20px;
- padding: 20px;
- background-color: transparent;
- orientation: vertical;
- children: [ "message", "listview" ];
-}
-
-/*****----- Inputbar -----*****/
-inputbar {
- enabled: true;
- spacing: 10px;
- padding: 80px 60px;
- background-color: transparent;
- background-image: url("~/.config/rofi/images/i.jpg", width);
- text-color: @foreground;
- orientation: horizontal;
- children: [ "textbox-prompt-colon", "entry", "dummy", "mode-switcher" ];
-}
-textbox-prompt-colon {
- enabled: true;
- expand: false;
- str: "";
- padding: 12px 15px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
-}
-entry {
- enabled: true;
- expand: false;
- width: 250px;
- padding: 12px 16px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: text;
- placeholder: "Search";
- placeholder-color: inherit;
-}
-dummy {
- expand: true;
- background-color: transparent;
-}
-
-/*****----- Mode Switcher -----*****/
-mode-switcher{
- enabled: true;
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
-}
-button {
- width: 45px;
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: inherit;
- cursor: pointer;
-}
-button selected {
- background-color: @selected;
- text-color: @foreground;
-}
-
-/*****----- Listview -----*****/
-listview {
- enabled: true;
- columns: 3;
- lines: 1;
- cycle: true;
- dynamic: true;
- scrollbar: false;
- layout: vertical;
- reverse: false;
- fixed-height: true;
- fixed-columns: true;
-
- spacing: 10px;
- background-color: transparent;
- text-color: @foreground;
- cursor: "default";
-}
-
-/*****----- Elements -----*****/
-element {
- enabled: true;
- spacing: 15px;
- padding: 35px 10px;
- border-radius: 20px;
- background-color: transparent;
- text-color: @foreground;
- cursor: pointer;
- orientation: vertical;
-}
-element normal.normal {
- background-color: inherit;
- text-color: inherit;
-}
-element normal.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element normal.active {
- background-color: @active;
- text-color: @foreground;
-}
-element selected.normal {
- background-color: @selected;
- text-color: @foreground;
-}
-element selected.urgent {
- background-color: @urgent;
- text-color: @foreground;
-}
-element selected.active {
- background-color: @urgent;
- text-color: @foreground;
-}
-element-icon {
- background-color: transparent;
- text-color: inherit;
- size: 96px;
- cursor: inherit;
-}
-element-text {
- background-color: transparent;
- text-color: inherit;
- cursor: inherit;
- vertical-align: 0.5;
- horizontal-align: 0.5;
-}
-
-/*****----- Message -----*****/
-message {
- background-color: transparent;
-}
-textbox {
- padding: 12px;
- border-radius: 100%;
- background-color: @background-alt;
- text-color: @foreground;
- vertical-align: 0.5;
- horizontal-align: 0.0;
-}
-error-message {
- padding: 12px;
- border-radius: 0px;
- background-color: @background;
- text-color: @foreground;
-}