Загрузить файлы 'rofi/themes'

This commit is contained in:
raanima 2022-05-18 14:11:27 +00:00
parent de3e969fc1
commit 64e8ae0186
9 changed files with 1264 additions and 0 deletions

View File

@ -0,0 +1,92 @@
/* ==========================================================================
Rofi color theme
Based on the Gruvbox color scheme for Vim by morhetz
https://github.com/morhetz/gruvbox
File: gruvbox-light.rasi
Desc: Gruvbox light color theme for rofi
Author: bardisty <b@bah.im>
Source: https://github.com/bardisty/gruvbox-rofi
Modified: Mon Feb 12 2018 06:06:06 PST -0800
========================================================================== */
configuration {
/* Theme settings */
modi: "drun,run";
highlight: bold italic;
scrollbar: true;
sidebar-mode: true;
font: "Iosevka 9";
show-icons: true;
icon-theme: "la-capitaine-icon-theme";
opacity: 100;
lines: 15;
line-margin: 5;
separator-style: "solid";
hide-scrollbar: true;
width: 900;
columns: 4;
levenshtein-sort: true;
case-sensitive: false;
fuzzy: false;
markup-rows: false;
scrollbar-width: 0;
color-enabled: true;
fixed-num-lines: true;
}
* {
/* Gruvbox light colors */
gruvbox-light-bg0: #E7E8EB;
gruvbox-light-bg0-soft: #E7E8EB;
gruvbox-light-bg2: #ea9aa9;
gruvbox-light-fg0: #282828;
gruvbox-light-fg1: #1D1F21;
gruvbox-light-gray: #c5c8c6;
gruvbox-light-red-dark: #9d0006;
gruvbox-light-red-light: #cc241d;
gruvbox-light-yellow-dark: #b57614;
gruvbox-light-yellow-light: #d79921;
/* Theme colors */
background: @gruvbox-light-bg0;
background-color: @background;
foreground: @gruvbox-light-fg1;
border-color: @gruvbox-light-gray;
separatorcolor: @border-color;
scrollbar-handle: @border-color;
normal-background: @background;
normal-foreground: @foreground;
alternate-normal-background: @gruvbox-light-bg0-soft;
alternate-normal-foreground: @foreground;
selected-normal-background: @gruvbox-light-bg2;
selected-normal-foreground: @gruvbox-light-fg0;
active-background: @gruvbox-light-yellow-dark;
active-foreground: @background;
alternate-active-background: @active-background;
alternate-active-foreground: @active-foreground;
selected-active-background: @gruvbox-light-yellow-light;
selected-active-foreground: @active-foreground;
urgent-background: @gruvbox-light-red-dark;
urgent-foreground: @background;
alternate-urgent-background: @urgent-background;
alternate-urgent-foreground: @urgent-foreground;
selected-urgent-background: @gruvbox-light-red-light;
selected-urgent-foreground: @urgent-foreground;
}
element-icon {
horizontal-align: 1.5;
vertical-align: 1.5;
size: 19px;
border: 0px;
padding: 0 3 0 3;
}
@import "gruvbox-common.rasi"

View File

@ -0,0 +1,151 @@
/**
* User: Prolinux
Измененная под себя:
font: "hack 9"
columns: 6
Добавлена строка:
background-color: rgba(231, 232, 235, 0%)
width: 1200;
height: 500;
*/
configuration {
modi: "run";
font: "hack 9";
sidebar-mode: true;
lines: 10;
show-icons: true;
icon-theme: "la-capitaine-icon-theme";
fullscreen: false;
show-match: false;
separator-style: "solid";
hide-scrollbar: true;
fixed-num-lines: true;
}
* {
fg: rgba(76, 86, 106, 100%);
bg: rgba(231, 232, 235, 100%);
bg2: rgba(231, 232, 235, 0%);
background-color: rgba(231, 232, 235, 0%);
}
window {
background-color: @bg;
border-radius: 7px;
border: 0px;
border-color: @bg;
padding: 10;
width: 1200;
height: 500;
}
mainbox {
border: 0;
padding: 20;
}
message {
border: 1px;
border-color: @bg;
padding: 20 ;
}
textbox {
text-color: @bg;
}
listview {
fixed-height: 0;
border: 1px 0px 0px ;
border-color: @bg;
spacing: 5px ;
scrollbar: true;
padding: 5 0 0;
columns: 6;
}
element {
border-radius: 5px;
background-color: @fg;
border: 0px;
padding: 5;
children: [ element-icon, element-text ];
}
element-icon {
horizontal-align: 1.5;
vertical-align: 1.5;
size: 19px;
border: 0px;
padding: 0 3 0 3;
}
element-icon.selected.active {
horizontal-align: 1.5;
vertical-align: 1.5;
size: 19px;
border: 0px;
padding: 0 3 0 3;
background-color: @fg;
}
element.normal.normal {
background-color: @bg;
text-color: @fg;
}
element.selected.normal {
background-color: @fg;
text-color: @bg;
}
element.alternate.normal {
background-color: @bg;
text-color: @fg;
}
scrollbar {
width: 4px ;
border: 0;
handle-color: @fg;
handle-width: 8px ;
padding: 0;
}
sidebar {
border: 0px ;
border-color: @bg;
}
button {
spacing: 0;
text-color: @fg;
border-radius: 5px;
border: 0px;
}
button.selected {
background-color: @fg;
text-color: @bg;
border-radius: 5px;
border: 0px;
}
case-indicator {
spacing: 0;
text-color: @fg;
}
entry {
spacing: 0;
text-color: @bg;
background-color: @fg;
placeholder: "Search...";
}
prompt {
spacing: 0;
text-color: @bg;
background-color: @fg;
}
inputbar {
spacing: 5;
text-color: @fg;
background-color: @fg;
padding: 5px ;
border: 0;
border-color: @fg;
children: [ textbox-prompt-colon,entry,case-indicator ];
border-radius: 5px;
border: 0px;
}
#textbox-prompt-colon {
padding:0px;
expand: false;
str: "";
margin: 0px;
text-color: @bg;
background-color: @fg;
}

View File

@ -0,0 +1,92 @@
/* ==========================================================================
Rofi color theme
Based on the Gruvbox color scheme for Vim by morhetz
https://github.com/morhetz/gruvbox
File: gruvbox-light.rasi
Desc: Gruvbox light color theme for rofi
Author: bardisty <b@bah.im>
Source: https://github.com/bardisty/gruvbox-rofi
Modified: Mon Feb 12 2018 06:06:06 PST -0800
========================================================================== */
configuration {
/* Theme settings */
modi: "drun,run";
highlight: bold italic;
scrollbar: true;
sidebar-mode: true;
font: "Iosevka 9";
show-icons: true;
icon-theme: "la-capitaine-icon-theme";
opacity: 100;
lines: 15;
line-margin: 5;
separator-style: "solid";
hide-scrollbar: true;
width: 900;
columns: 4;
levenshtein-sort: true;
case-sensitive: false;
fuzzy: false;
markup-rows: false;
scrollbar-width: 0;
color-enabled: true;
fixed-num-lines: true;
}
* {
/* Gruvbox light colors */
gruvbox-light-bg0: #E7E8EB;
gruvbox-light-bg0-soft: #E7E8EB;
gruvbox-light-bg2: hsla(352, 89%, 28%,0.3 );
gruvbox-light-fg0: #282828;
gruvbox-light-fg1: #1D1F21;
gruvbox-light-gray: #c5c8c6;
gruvbox-light-red-dark: #9d0006;
gruvbox-light-red-light: #cc241d;
gruvbox-light-yellow-dark: #b57614;
gruvbox-light-yellow-light: #d79921;
/* Theme colors */
background: @gruvbox-light-bg0;
background-color: @background;
foreground: @gruvbox-light-fg1;
border-color: @gruvbox-light-gray;
separatorcolor: @border-color;
scrollbar-handle: @border-color;
normal-background: @background;
normal-foreground: @foreground;
alternate-normal-background: @gruvbox-light-bg0-soft;
alternate-normal-foreground: @foreground;
selected-normal-background: @gruvbox-light-bg2;
selected-normal-foreground: @gruvbox-light-fg0;
active-background: @gruvbox-light-yellow-dark;
active-foreground: @background;
alternate-active-background: @active-background;
alternate-active-foreground: @active-foreground;
selected-active-background: @gruvbox-light-yellow-light;
selected-active-foreground: @active-foreground;
urgent-background: @gruvbox-light-red-dark;
urgent-foreground: @background;
alternate-urgent-background: @urgent-background;
alternate-urgent-foreground: @urgent-foreground;
selected-urgent-background: @gruvbox-light-red-light;
selected-urgent-foreground: @urgent-foreground;
}
element-icon {
horizontal-align: 1.5;
vertical-align: 1.5;
size: 19px;
border: 0px;
padding: 0 3 0 3;
}
@import "gruvbox-common.rasi"

View File

@ -0,0 +1,217 @@
/**
* ROFI Color theme
* User: Qball
* Copyright: Dave Davenport
*/
/**
* User: Qball
* Copyright: Dave Davenport
*/
configuration {
/* Theme settings */
modi: "drun,run";
highlight: bold italic;
scrollbar: true;
sidebar-mode: true;
show-icons: true;
icon-theme: "la-capitaine-icon-theme";
opacity: 100;
line-margin: 5;
separator-style: "solid";
hide-scrollbar: true;
width: 900;
columns: 4;
levenshtein-sort: true;
case-sensitive: false;
fuzzy: false;
markup-rows: false;
scrollbar-width: 0;
color-enabled: true;
fixed-num-lines: true;
}
* {
foreground: #ffeedd;
backlight: #ccffeedd;
background-color: transparent;
//
dark: #1c1c1c;
// Black
black: #3d352a;
lightblack: #554444;
tlightblack: rgba (241, 188, 6, 0.1);
//
// Red
red: #cd5c5c;
lightred: #cc5533;
//
// Green_iz
green: #86af80;
lightgreen: #f1bc0f;
//
// Yellow
yellow: #e8ae5b;
lightyellow: #ffa75d;
//
// Blue_iz
blue: #7D2E33;
lightblue: #87ceeb;
//
// Magenta
magenta: #deb887;
lightmagenta: #996600;
//
// Cyan
cyan: #b0c4de;
tcyan: #ccb0c4de;
lightcyan: #b0c4de;
//
// White
white: #bbaa99;
lightwhite: #ddccbb;
//
// Bold, Italic, Underline
highlight: underline bold #ffffff;
transparent: rgba(0,0,0,0);
font: "hack 9";
}
window {
location: center;
anchor: center;
transparency: "screenshot";
padding: 10px;
border: 0px;
border-radius: 10px;
color: @magenta;
background-color: @transparent;
spacing: 0;
children: [mainbox];
orientation: horizontal;
}
mainbox {
spacing: 0;
children: [ inputbar, message, listview ];
}
message {
border-color: @foreground;
border: 0px 2px 2px 2px;
// border-radius: 10px;
padding: 5;
background-color: @tcyan;
}
message {
font: "Source Code Pro 8";
color: @black;
}
inputbar {
color: @lightgreen;
padding: 11px;
background-color: @tlightblack;
border: 2px 2px 2px 2px;
border-radius: 15px 15px 0px 0px;
border-color: @foreground;
font: "Source Code Pro 18";
}
entry,prompt,case-indicator {
text-font: inherit;
text-color:inherit;
}
prompt {
margin: 0px 0.3em 0em 0em ;
}
listview {
padding: 8px;
border-radius: 0px 0px 15px 15px;
border-color: @foreground;
border: 0px 2px 2px 2px;
background-color: #1c1c1ccc;
dynamic: false;
lines: 15;
}
element {
padding: 3px;
vertical-align: 0.5;
// border: 2px;
border-radius: 4px;
background-color: transparent;
color: @foreground;
font:inherit;
}
element selected.normal {
background-color: @blue;
}
element normal active {
foreground: @lightblue;
}
element normal urgent {
foreground: @lightred;
}
element alternate normal {
}
element alternate active {
foreground: @lightblue;
}
element alternate urgent {
foreground: @lightred;
}
element selected active {
background-color: @lightblue;
foreground: @dark;
}
element selected urgent {
background-color: @lightred;
foreground: @dark;
}
element normal normal {
}
element-icon {
horizontal-align: 1.5;
vertical-align: 1.5;
size: 19px;
border: 0px;
padding: 0 3 0 3;
}
vertb {
expand: false;
children: [ dummy0, mode-switcher, dummy1 ];
}
dummy0, dummy1 {
expand: true;
}
mode-switcher {
expand: false;
orientation: vertical;
spacing: 0px;
border: 0px 0px 0px 0px;
}
button {
font: "FontAwesome 22";
padding: 6px;
border: 2px 0px 2px 2px;
border-radius: 4px 0px 0px 4px;
background-color: @tlightblack;
border-color: @foreground;
color: @foreground;
horizontal-align: 0.5;
}
button selected normal {
color: @dark;
border: 2px 0px 2px 2px;
background-color: @backlight;
border-color: @foreground;
}
error-message {
expand: true;
background-color: red;
border-color: darkred;
border: 2px;
padding: 1em;
}

View File

@ -0,0 +1,222 @@
/**
* ROFI Color theme
* User: Qball
* Copyright: Dave Davenport
*/
/**
* User: Qball
* Copyright: Dave Davenport
*/
configuration {
/* Theme settings */
modi: "drun,run";
highlight: bold italic;
scrollbar: true;
sidebar-mode: true;
show-icons: true;
icon-theme: "la-capitaine-icon-theme";
opacity: 100;
line-margin: 5;
separator-style: "solid";
hide-scrollbar: true;
width: 900;
columns: 4;
levenshtein-sort: true;
case-sensitive: false;
fuzzy: false;
markup-rows: false;
scrollbar-width: 0;
color-enabled: true;
fixed-num-lines: true;
}
* {
foreground: #548ccd;
backlight: #ffffff;
background-color: transparent;
//
dark: #1c1c1c;
// Black
black: #3d352a;
lightblack: #554444;
// Верхняя строка
tlightblack: rgba (188, 115, 114, 0.1);
lightgreen: #edabaa;
//
// Red
red: #cd5c5c;
lightred: #cc5533;
//
// Green
green: #86af80;
//
// Yellow
yellow: #e8ae5b;
lightyellow: #ffa75d;
//
// Blue_iz
blue: hsla (210, 6%, 12%, 0.5);
lightblue: #87ceeb;
//
// Magenta
magenta: #deb887;
lightmagenta: #996600;
//
// Cyan
cyan: #b0c4de;
tcyan: #ccb0c4de;
lightcyan: #b0c4de;
//
// White
white: #bbaa99;
lightwhite: #ddccbb;
//
// Bold, Italic, Underline
highlight: underline bold #ffffff;
//Дополнительный фон всего окна
transparent: rgba(0,69,207,0.0);
//
font: "hack 9";
}
window {
location: center;
anchor: center;
transparency: "screenshot";
padding: 10px;
border: 0px;
border-radius: 10px;
color: @magenta;
background-color: @transparent;
spacing: 0;
children: [mainbox];
orientation: horizontal;
}
mainbox {
spacing: 0;
children: [ inputbar, message, listview ];
}
message {
border-color: @foreground;
border: 0px 2px 2px 2px;
// border-radius: 10px;
padding: 5;
background-color: @tcyan;
}
message {
font: "Source Code Pro 8";
color: @black;
}
inputbar {
color: @lightgreen;
padding: 11px;
background-color: @tlightblack;
border: 2px 2px 2px 2px;
border-radius: 15px 15px 0px 0px;
border-color: @foreground;
font: "Source Code Pro 18";
}
entry,prompt,case-indicator {
text-font: inherit;
text-color:inherit;
}
prompt {
margin: 0px 0.3em 0em 0em ;
}
listview {
padding: 8px;
border-radius: 0px 0px 15px 15px;
border-color: @foreground;
border: 0px 2px 2px 2px;
//
background-color: hsla(210,6%,12%,0.8);
dynamic: false;
lines: 15;
}
element {
padding: 3px;
vertical-align: 0.5;
// border: 2px;
border-radius: 4px;
background-color: transparent;
color: @foreground;
font:inherit;
}
element selected.normal {
background-color: @blue;
}
element normal active {
foreground: @lightblue;
}
element normal urgent {
foreground: @lightred;
}
element alternate normal {
}
element alternate active {
foreground: @lightblue;
}
element alternate urgent {
foreground: @lightred;
}
element selected active {
background-color: @lightblue;
foreground: @dark;
}
element selected urgent {
background-color: @lightred;
foreground: @dark;
}
element normal normal {
}
element-icon {
horizontal-align: 1.5;
vertical-align: 1.5;
size: 19px;
border: 0px;
padding: 0 3 0 3;
}
vertb {
expand: false;
children: [ dummy0, mode-switcher, dummy1 ];
}
dummy0, dummy1 {
expand: true;
}
mode-switcher {
expand: false;
orientation: vertical;
spacing: 0px;
border: 0px 0px 0px 0px;
}
button {
font: "FontAwesome 22";
padding: 6px;
border: 2px 0px 2px 2px;
border-radius: 4px 0px 0px 4px;
background-color: @tlightblack;
border-color: @foreground;
color: @foreground;
horizontal-align: 0.5;
}
button selected normal {
color: @dark;
border: 2px 0px 2px 2px;
background-color: @backlight;
border-color: @foreground;
}
error-message {
expand: true;
background-color: red;
border-color: darkred;
border: 2px;
padding: 1em;
}

View File

@ -0,0 +1,216 @@
/**
* ROFI Color theme
* User: Qball
* Copyright: Dave Davenport
*/
/**
* User: Qball
* Copyright: Dave Davenport
*/
configuration {
/* Theme settings */
modi: "drun,run";
highlight: bold italic;
scrollbar: true;
sidebar-mode: true;
show-icons: true;
icon-theme: "la-capitaine-icon-theme";
opacity: 100;
line-margin: 5;
separator-style: "solid";
hide-scrollbar: true;
width: 900;
columns: 4;
levenshtein-sort: true;
case-sensitive: false;
fuzzy: false;
markup-rows: false;
scrollbar-width: 0;
color-enabled: true;
fixed-num-lines: true;
}
* {
foreground: #ffeedd;
backlight: #ccffeedd;
background-color: transparent;
dark: #1c1c1c;
// Black
black: #3d352a;
lightblack: #554444;
tlightblack: rgba (231, 232, 235, 0.8);
//
// Red
red: #cd5c5c;
lightred: #cc5533;
//
// Green_iz
green: #86af80;
lightgreen: #508d94;
//
// Yellow
yellow: #e8ae5b;
lightyellow: #ffa75d;
//
// Blue
blue: #5599AE;
lightblue: #87ceeb;
//
// Magenta
magenta: #deb887;
lightmagenta: #996600;
//
// Cyan
cyan: #b0c4de;
tcyan: #ccb0c4de;
lightcyan: #b0c4de;
//
// White
white: #bbaa99;
lightwhite: #ddccbb;
//
// Bold, Italic, Underline
highlight: underline bold #ffffff;
transparent: rgba(0,0,0,0);
font: "hack 9";
}
window {
location: center;
anchor: center;
transparency: "screenshot";
padding: 10px;
border: 0px;
border-radius: 10px;
color: @magenta;
background-color: @transparent;
spacing: 0;
children: [mainbox];
orientation: horizontal;
}
mainbox {
spacing: 0;
children: [ inputbar, message, listview ];
}
message {
border-color: @foreground;
border: 0px 2px 2px 2px;
// border-radius: 10px;
padding: 5;
background-color: @tcyan;
}
message {
font: "Source Code Pro 8";
color: @black;
}
inputbar {
color: @lightgreen;
padding: 11px;
background-color: @tlightblack;
border: 2px 2px 2px 2px;
border-radius: 15px 15px 0px 0px;
border-color: @foreground;
font: "Source Code Pro 18";
}
entry,prompt,case-indicator {
text-font: inherit;
text-color:inherit;
}
prompt {
margin: 0px 0.3em 0em 0em ;
}
listview {
padding: 8px;
border-radius: 0px 0px 15px 15px;
border-color: @foreground;
border: 0px 2px 2px 2px;
background-color: #1c1c1ccc;
dynamic: false;
lines: 15;
}
element {
padding: 3px;
vertical-align: 0.5;
// border: 2px;
border-radius: 4px;
background-color: transparent;
color: @foreground;
font:inherit;
}
element selected.normal {
background-color: @blue;
}
element normal active {
foreground: @lightblue;
}
element normal urgent {
foreground: @lightred;
}
element alternate normal {
}
element alternate active {
foreground: @lightblue;
}
element alternate urgent {
foreground: @lightred;
}
element selected active {
background-color: @lightblue;
foreground: @dark;
}
element selected urgent {
background-color: @lightred;
foreground: @dark;
}
element normal normal {
}
element-icon {
horizontal-align: 1.5;
vertical-align: 1.5;
size: 19px;
border: 0px;
padding: 0 3 0 3;
}
vertb {
expand: false;
children: [ dummy0, mode-switcher, dummy1 ];
}
dummy0, dummy1 {
expand: true;
}
mode-switcher {
expand: false;
orientation: vertical;
spacing: 0px;
border: 0px 0px 0px 0px;
}
button {
font: "FontAwesome 22";
padding: 6px;
border: 2px 0px 2px 2px;
border-radius: 4px 0px 0px 4px;
background-color: @tlightblack;
border-color: @foreground;
color: @foreground;
horizontal-align: 0.5;
}
button selected normal {
color: @dark;
border: 2px 0px 2px 2px;
background-color: @backlight;
border-color: @foreground;
}
error-message {
expand: true;
background-color: red;
border-color: darkred;
border: 2px;
padding: 1em;
}

View File

@ -0,0 +1,92 @@
/* ==========================================================================
Rofi color theme
Based on the Gruvbox color scheme for Vim by morhetz
https://github.com/morhetz/gruvbox
File: gruvbox-light.rasi
Desc: Gruvbox light color theme for rofi
Author: bardisty <b@bah.im>
Source: https://github.com/bardisty/gruvbox-rofi
Modified: Mon Feb 12 2018 06:06:06 PST -0800
========================================================================== */
configuration {
/* Theme settings */
modi: "drun,run";
highlight: bold italic;
scrollbar: true;
sidebar-mode: true;
font: "Iosevka 9";
show-icons: true;
icon-theme: "la-capitaine-icon-theme";
opacity: 100;
lines: 15;
line-margin: 5;
separator-style: "solid";
hide-scrollbar: true;
width: 900;
columns: 4;
levenshtein-sort: true;
case-sensitive: false;
fuzzy: false;
markup-rows: false;
scrollbar-width: 0;
color-enabled: true;
fixed-num-lines: true;
}
* {
/* Gruvbox light colors */
gruvbox-light-bg0: #1D1F21;
gruvbox-light-bg0-soft: #1D1F21;
gruvbox-light-bg2: #5599AE;
gruvbox-light-fg0: #282828;
gruvbox-light-fg1: #E7E8EB;
gruvbox-light-gray: #508d94;
gruvbox-light-red-dark: #9d0006;
gruvbox-light-red-light: #cc241d;
gruvbox-light-yellow-dark: #b57614;
gruvbox-light-yellow-light: #d79921;
/* Theme colors */
background: @gruvbox-light-bg0;
background-color: @background;
foreground: @gruvbox-light-fg1;
border-color: @gruvbox-light-gray;
separatorcolor: @border-color;
scrollbar-handle: @border-color;
normal-background: @background;
normal-foreground: @foreground;
alternate-normal-background: @gruvbox-light-bg0-soft;
alternate-normal-foreground: @foreground;
selected-normal-background: @gruvbox-light-bg2;
selected-normal-foreground: @gruvbox-light-fg0;
active-background: @gruvbox-light-yellow-dark;
active-foreground: @background;
alternate-active-background: @active-background;
alternate-active-foreground: @active-foreground;
selected-active-background: @gruvbox-light-yellow-light;
selected-active-foreground: @active-foreground;
urgent-background: @gruvbox-light-red-dark;
urgent-foreground: @background;
alternate-urgent-background: @urgent-background;
alternate-urgent-foreground: @urgent-foreground;
selected-urgent-background: @gruvbox-light-red-light;
selected-urgent-foreground: @urgent-foreground;
}
element-icon {
horizontal-align: 1.5;
vertical-align: 1.5;
size: 19px;
border: 0px;
padding: 0 3 0 3;
}
@import "gruvbox-common.rasi"

View File

@ -0,0 +1,92 @@
/* ==========================================================================
Rofi color theme
Based on the Gruvbox color scheme for Vim by morhetz
https://github.com/morhetz/gruvbox
File: gruvbox-light.rasi
Desc: Gruvbox light color theme for rofi
Author: bardisty <b@bah.im>
Source: https://github.com/bardisty/gruvbox-rofi
Modified: Mon Feb 12 2018 06:06:06 PST -0800
========================================================================== */
configuration {
/* Theme settings */
modi: "drun,run";
highlight: bold italic;
scrollbar: true;
sidebar-mode: true;
font: "Iosevka 9";
show-icons: true;
icon-theme: "la-capitaine-icon-theme";
opacity: 100;
lines: 15;
line-margin: 5;
separator-style: "solid";
hide-scrollbar: true;
width: 900;
columns: 4;
levenshtein-sort: true;
case-sensitive: false;
fuzzy: false;
markup-rows: false;
scrollbar-width: 0;
color-enabled: true;
fixed-num-lines: true;
}
* {
/* Gruvbox light colors */
gruvbox-light-bg0: #E7E8EB;
gruvbox-light-bg0-soft: #E7E8EB;
gruvbox-light-bg2: #5599AE;
gruvbox-light-fg0: #282828;
gruvbox-light-fg1: #1D1F21;
gruvbox-light-gray: #508d94;
gruvbox-light-red-dark: #9d0006;
gruvbox-light-red-light: #cc241d;
gruvbox-light-yellow-dark: #b57614;
gruvbox-light-yellow-light: #d79921;
/* Theme colors */
background: @gruvbox-light-bg0;
background-color: @background;
foreground: @gruvbox-light-fg1;
border-color: @gruvbox-light-gray;
separatorcolor: @border-color;
scrollbar-handle: @border-color;
normal-background: @background;
normal-foreground: @foreground;
alternate-normal-background: @gruvbox-light-bg0-soft;
alternate-normal-foreground: @foreground;
selected-normal-background: @gruvbox-light-bg2;
selected-normal-foreground: @gruvbox-light-fg0;
active-background: @gruvbox-light-yellow-dark;
active-foreground: @background;
alternate-active-background: @active-background;
alternate-active-foreground: @active-foreground;
selected-active-background: @gruvbox-light-yellow-light;
selected-active-foreground: @active-foreground;
urgent-background: @gruvbox-light-red-dark;
urgent-foreground: @background;
alternate-urgent-background: @urgent-background;
alternate-urgent-foreground: @urgent-foreground;
selected-urgent-background: @gruvbox-light-red-light;
selected-urgent-foreground: @urgent-foreground;
}
element-icon {
horizontal-align: 1.5;
vertical-align: 1.5;
size: 19px;
border: 0px;
padding: 0 3 0 3;
}
@import "gruvbox-common.rasi"

View File

@ -0,0 +1,90 @@
/* ==========================================================================
Rofi color theme
Based on the Gruvbox color scheme for Vim by morhetz
https://github.com/morhetz/gruvbox
File: gruvbox-light.rasi
Desc: Gruvbox light color theme for rofi
Author: bardisty <b@bah.im>
Source: https://github.com/bardisty/gruvbox-rofi
Modified: Mon Feb 12 2018 06:06:06 PST -0800
========================================================================== */
configuration {
/* Theme settings */
modi: "drun,run";
highlight: bold italic;
scrollbar: true;
sidebar-mode: true;
font: "Iosevka 9";
show-icons: true;
icon-theme: "la-capitaine-icon-theme";
opacity: 100;
lines: 15;
line-margin: 5;
separator-style: "solid";
hide-scrollbar: true;
width: 900;
columns: 4;
levenshtein-sort: true;
case-sensitive: false;
fuzzy: false;
markup-rows: false;
scrollbar-width: 0;
color-enabled: true;
fixed-num-lines: true;
}
* {
/* Gruvbox light colors */
gruvbox-light-bg0: #e7e8eb;
gruvbox-light-bg0-soft: #e7e8eb;
gruvbox-light-bg2: #d5c4a1;
gruvbox-light-fg0: #282828;
gruvbox-light-fg1: #3c3836;
gruvbox-light-gray: #7c6f64;
gruvbox-light-red-dark: #9d0006;
gruvbox-light-red-light: #cc241d;
gruvbox-light-yellow-dark: #b57614;
gruvbox-light-yellow-light: #d79921;
/* Theme colors */
background: @gruvbox-light-bg0;
background-color: @background;
foreground: @gruvbox-light-fg1;
border-color: @gruvbox-light-gray;
separatorcolor: @border-color;
scrollbar-handle: @border-color;
normal-background: @background;
normal-foreground: @foreground;
alternate-normal-background: @gruvbox-light-bg0-soft;
alternate-normal-foreground: @foreground;
selected-normal-background: @gruvbox-light-bg2;
selected-normal-foreground: @gruvbox-light-fg0;
active-background: @gruvbox-light-yellow-dark;
active-foreground: @background;
alternate-active-background: @active-background;
alternate-active-foreground: @active-foreground;
selected-active-background: @gruvbox-light-yellow-light;
selected-active-foreground: @active-foreground;
urgent-background: @gruvbox-light-red-dark;
urgent-foreground: @background;
alternate-urgent-background: @urgent-background;
alternate-urgent-foreground: @urgent-foreground;
selected-urgent-background: @gruvbox-light-red-light;
selected-urgent-foreground: @urgent-foreground;
}
element-icon {
horizontal-align: 1.5;
vertical-align: 1.5;
size: 19px;
border: 0px;
padding: 0 3 0 3;
}
@import "gruvbox-common.rasi"