mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-10-28 04:44:11 -07:00
add more themes
This commit is contained in:
parent
e734fb131f
commit
f52e0eeafd
@ -32,7 +32,7 @@
|
||||
border-radius: 6;
|
||||
border-color: @bordercolor;
|
||||
padding: 5;
|
||||
width: 75%;
|
||||
width: 75%;
|
||||
}
|
||||
#mainbox {
|
||||
border: 0;
|
||||
@ -53,8 +53,8 @@
|
||||
spacing: 2px ;
|
||||
scrollbar: false;
|
||||
padding: 2px 0px 0px ;
|
||||
columns: 2;
|
||||
lines: 15;
|
||||
columns: 2;
|
||||
lines: 15;
|
||||
}
|
||||
#element {
|
||||
border: 0;
|
||||
@ -69,7 +69,7 @@
|
||||
text-color: @urgent-foreground;
|
||||
}
|
||||
#element.normal.active {
|
||||
background-color: @active-background;
|
||||
background-color: @drac-cya;
|
||||
text-color: @background;
|
||||
}
|
||||
#element.selected.normal {
|
||||
@ -81,7 +81,7 @@
|
||||
text-color: @foreground;
|
||||
}
|
||||
#element.selected.active {
|
||||
background-color: @selected-active-background;
|
||||
background-color: @active-background;
|
||||
text-color: @foreground;
|
||||
}
|
||||
#element.alternate.normal {
|
||||
@ -93,8 +93,8 @@
|
||||
text-color: @foreground;
|
||||
}
|
||||
#element.alternate.active {
|
||||
background-color: @active-background;
|
||||
text-color: @foreground;
|
||||
background-color: @drac-cya;
|
||||
text-color: @background;
|
||||
}
|
||||
#scrollbar {
|
||||
width: 2px ;
|
||||
|
164
themes/aniwrapper-fancy.rasi
Normal file
164
themes/aniwrapper-fancy.rasi
Normal file
@ -0,0 +1,164 @@
|
||||
/**
|
||||
* User: Rasi
|
||||
* Copyright: Rasmus Steinke
|
||||
*/
|
||||
|
||||
/* global settings and color variables */
|
||||
* {
|
||||
blue: #A7c6E2;
|
||||
blue-trans: #A7c6e2aa;
|
||||
darkblue: #005F87;
|
||||
white: #FFFFFF;
|
||||
green: #00330088;
|
||||
black: #000000;
|
||||
grey: #444444;
|
||||
orange: #FFD391;
|
||||
dark-orange: #FFA664;
|
||||
light-grey: #F5F5F5;
|
||||
medium-grey: #D0D0D0;
|
||||
dark-grey: #002B36;
|
||||
urgent: #D75F00;
|
||||
active: #005F87;
|
||||
transparent: #000000aa;
|
||||
spacing: 0em;
|
||||
font: "Iosevka Term Regular 14";
|
||||
padding: 0px;
|
||||
background-color: @grey;
|
||||
line-style: "none";
|
||||
}
|
||||
|
||||
prompt-box {
|
||||
background-color: @transparent;
|
||||
}
|
||||
|
||||
prompt {
|
||||
background-color: @transparent;
|
||||
text-color: @white;
|
||||
}
|
||||
|
||||
window {
|
||||
border-radius: 10px;
|
||||
background-color: @transparent;
|
||||
border: 2;
|
||||
color: @grey;
|
||||
}
|
||||
mainbox {
|
||||
padding: 0px;
|
||||
background-color: @blue-trans;
|
||||
color: @grey;
|
||||
border: 2px;
|
||||
spacing: 0%;
|
||||
}
|
||||
|
||||
listview {
|
||||
// Looks.
|
||||
border-radius: 10px;
|
||||
border: 5px 5px 5px 5px;
|
||||
padding: 20px 20px 20px 20px;
|
||||
margin: 20px 30px 30px 30px;
|
||||
background-color: @orange;
|
||||
// Enable scrollbar
|
||||
scrollbar: false;
|
||||
scrollbar-width: 5px;
|
||||
fixed-height: true;
|
||||
reverse: false;
|
||||
color: #000000;
|
||||
spacing: 0.3em;
|
||||
}
|
||||
scrollbar {
|
||||
color: @black;
|
||||
background-color: @blue;
|
||||
padding: 1px;
|
||||
}
|
||||
element {
|
||||
border: 0px;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
color: @black;
|
||||
background-color: @blue;
|
||||
}
|
||||
element normal.normal {
|
||||
color: @black;
|
||||
background-color: @orange;
|
||||
}
|
||||
element normal.urgent {
|
||||
color: @urgent;
|
||||
background-color: @light-grey;
|
||||
}
|
||||
element normal.active {
|
||||
color: @active;
|
||||
background-color: @light-grey;
|
||||
}
|
||||
element selected.normal {
|
||||
border-radius: 0px;
|
||||
color: @black;
|
||||
background-color: @dark-orange;
|
||||
}
|
||||
element selected.urgent {
|
||||
color: @light-grey;
|
||||
background-color: @urgent;
|
||||
}
|
||||
element selected.active {
|
||||
color: @light-grey;
|
||||
background-color: @active;
|
||||
}
|
||||
element alternate.normal {
|
||||
color: @black;
|
||||
background-color: @orange;
|
||||
}
|
||||
element alternate.urgent {
|
||||
color: @urgent;
|
||||
background-color: @medium-grey;
|
||||
}
|
||||
element alternate.active {
|
||||
color: @active;
|
||||
background-color: @light-grey;
|
||||
}
|
||||
inputbar {
|
||||
spacing: 0;
|
||||
background-color: #88003300;
|
||||
border: 0px 0px 2px 0px;
|
||||
border-radius: 0px;
|
||||
padding: 5px 10px 5px 35px;
|
||||
background-color: #00330088;
|
||||
color: @black;
|
||||
end: false;
|
||||
}
|
||||
|
||||
separator {
|
||||
background-color: @blue;
|
||||
color: #00000000;
|
||||
}
|
||||
prompt normal.normal {
|
||||
background-color: #00000000;
|
||||
padding: 0px;
|
||||
color: @blue;
|
||||
}
|
||||
entry normal.normal {
|
||||
background-color: #00000000;
|
||||
color: #ffffff;
|
||||
padding: 0px;
|
||||
color: @blue;
|
||||
}
|
||||
case-indicator normal.normal {
|
||||
background-color: #00000000;
|
||||
color: #ffffff;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
message {
|
||||
margin: 30px 30px 30px 30px;
|
||||
padding: 20px 30px 20px 20px;
|
||||
padding: 1px ;
|
||||
border-radius: 10px;
|
||||
border: 5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
|
||||
#textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: ":";
|
||||
margin: 0px 0.3em 0em 0em ;
|
||||
color: #00000000;
|
||||
background-color: #88003300;
|
||||
}
|
141
themes/aniwrapper-flamingo.rasi
Normal file
141
themes/aniwrapper-flamingo.rasi
Normal file
@ -0,0 +1,141 @@
|
||||
/**
|
||||
* User: keystroke3
|
||||
* Copyright: keystroke3
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
sidebar-mode: false;
|
||||
font: "Open Sans 15";
|
||||
}
|
||||
|
||||
* {
|
||||
text-color: @foreground;
|
||||
active-background: rgb(170, 70, 104);
|
||||
active-foreground: @foreground;
|
||||
normal-background: @background;
|
||||
normal-foreground: @foreground;
|
||||
urgent-background: #9E2A5E;
|
||||
urgent-foreground: @foreground;
|
||||
alternate-active-background: @background;
|
||||
alternate-active-foreground: @foreground;
|
||||
alternate-normal-background: @background;
|
||||
alternate-normal-foreground: @foreground;
|
||||
alternate-urgent-background: @background;
|
||||
alternate-urgent-foreground: @foreground;
|
||||
selected-active-background: #9E2A5E;
|
||||
selected-active-foreground: @foreground;
|
||||
selected-normal-background: rgb(170, 70, 104);
|
||||
selected-normal-foreground: #0c0816;
|
||||
selected-urgent-background: #9D596B;
|
||||
selected-urgent-foreground: @foreground;
|
||||
background-color: #0c0816;
|
||||
background: #D03C6E30;
|
||||
foreground: #8fc5c6;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
window {
|
||||
location: west;
|
||||
anchor: west;
|
||||
height: 70%;
|
||||
width: 25%;
|
||||
orientation: vertical;
|
||||
children: [mainbox];
|
||||
border: 2px 2px 2px 0px;
|
||||
border-color: @active-background;
|
||||
hide-scrollbar: true;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
spacing: 0.2em;
|
||||
children: [inputbar, listview];
|
||||
}
|
||||
|
||||
|
||||
|
||||
listview {
|
||||
spacing: 0.6em;
|
||||
dynamic: false;
|
||||
cycle: true;
|
||||
padding: 0px 5px 0px 5px;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
border-radius: 50%;
|
||||
padding: 5px;
|
||||
border-spacing: 5px 0 0 0;
|
||||
border: 1px;
|
||||
spacing: 10px;
|
||||
margin: 5px 0 10px;
|
||||
border-color: @foreground;
|
||||
|
||||
}
|
||||
|
||||
entry{
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
|
||||
prompt{
|
||||
padding: 5px;
|
||||
background-color: @foreground;
|
||||
text-color: @background-color;
|
||||
border: 1px;
|
||||
border-radius: 50%;
|
||||
|
||||
}
|
||||
|
||||
|
||||
element {
|
||||
padding: 10px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
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: #0390fc;
|
||||
text-color: @active-foreground;
|
||||
}
|
||||
|
||||
element selected.normal {
|
||||
background-color: @selected-normal-background;
|
||||
text-color: @selected-normal-foreground;
|
||||
border-color: @active-background;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @selected-urgent-background;
|
||||
text-color: @selected-urgent-foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @selected-normal-background;
|
||||
text-color: #0390fc;
|
||||
/* text-color: @selected-active-foreground; */
|
||||
}
|
||||
|
||||
element alternate.normal {
|
||||
background-color: @normal-background;
|
||||
text-color: @normal-foreground;
|
||||
}
|
||||
|
||||
element alternate.urgent {
|
||||
background-color: @urgent-background;
|
||||
text-color: @urgent-foreground;
|
||||
}
|
||||
|
||||
element alternate.active {
|
||||
/* background-color: @active-background; */
|
||||
background-color: #0390fc;
|
||||
text-color: @active-foreground;
|
||||
}
|
148
themes/aniwrapper-material.rasi
Normal file
148
themes/aniwrapper-material.rasi
Normal file
@ -0,0 +1,148 @@
|
||||
/*
|
||||
* ROFI color theme
|
||||
*
|
||||
* Based on Base16 Material Color Scheme (https://github.com/ntpeters/base16-materialtheme-scheme)
|
||||
*
|
||||
* User: Tomaszal
|
||||
* Copyright: Tomas Zaluckij
|
||||
*/
|
||||
|
||||
* {
|
||||
base00: #263238;
|
||||
base01: #2E3C43;
|
||||
base02: #314549;
|
||||
base03: #546E7A;
|
||||
base04: #B2CCD6;
|
||||
base05: #EEFFFF;
|
||||
base06: #EEFFFF;
|
||||
base07: #FFFFFF;
|
||||
base08: #F07178;
|
||||
base09: #F78C6C;
|
||||
base0A: #FFCB6B;
|
||||
base0B: #C3E88D;
|
||||
base0C: #89DDFF;
|
||||
base0D: #82AAFF;
|
||||
base0E: #C792EA;
|
||||
base0F: #FF5370;
|
||||
|
||||
/*base0D: #00BCD4;*/
|
||||
|
||||
spacing: 0;
|
||||
background-color: transparent;
|
||||
|
||||
font: "Roboto Mono 13";
|
||||
}
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
/*fullscreen: true;*/
|
||||
background-color: #263238CC; /*base00 + CC (80% opacity)*/
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
children: [inputbar, message, mode-switcher, listview];
|
||||
spacing: 30px;
|
||||
/*margin: 20%;*/
|
||||
padding: 30px 0;
|
||||
border: 1px;
|
||||
border-color: @base0D;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
padding: 0 30px;
|
||||
children: [prompt, textbox-prompt-colon, entry, case-indicator];
|
||||
}
|
||||
|
||||
prompt {
|
||||
text-color: @base0D;
|
||||
}
|
||||
|
||||
textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: ":";
|
||||
margin: 0 1ch 0 0;
|
||||
text-color: @base0D;
|
||||
}
|
||||
|
||||
entry {
|
||||
text-color: @base07;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
text-color: @base0F;
|
||||
}
|
||||
|
||||
mode-switcher, message {
|
||||
border: 1px 0;
|
||||
border-color: @base0D;
|
||||
}
|
||||
|
||||
button, textbox {
|
||||
background-color: @base03;
|
||||
text-color: @base07;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
button selected {
|
||||
background-color: @base0D;
|
||||
}
|
||||
|
||||
listview {
|
||||
scrollbar: true;
|
||||
margin: 0 10px 0 30px;
|
||||
}
|
||||
|
||||
scrollbar {
|
||||
background-color: @base03;
|
||||
handle-color: @base0D;
|
||||
handle-width: 10px;
|
||||
border: 0 1px;
|
||||
border-color: @base0D;
|
||||
margin: 0 0 0 20px;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 5px;
|
||||
highlight: bold underline;
|
||||
}
|
||||
|
||||
element normal {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @base0B;
|
||||
text-color: @base0B;
|
||||
}
|
||||
|
||||
element alternate {
|
||||
/*background-color: @base03;*/
|
||||
}
|
||||
|
||||
element normal normal, element normal, element alternate normal {
|
||||
text-color: @base04;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
element.normal {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
element.selected {
|
||||
background-color: @base03;
|
||||
border: 3px;
|
||||
border-color: @base0E;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
element normal urgent, element selected urgent, element alternate urgent {
|
||||
text-color: @base0F;
|
||||
}
|
||||
|
||||
element normal active, element selected active, element alternate active {
|
||||
text-color: @base07;
|
||||
/* background-color: @base04; */
|
||||
background-color: @base0D;
|
||||
}
|
||||
|
105
themes/aniwrapper-onedark.rasi
Normal file
105
themes/aniwrapper-onedark.rasi
Normal file
@ -0,0 +1,105 @@
|
||||
/*
|
||||
* ROFI One Dark
|
||||
*
|
||||
* Based on OneDark.vim (https://github.com/joshdick/onedark.vim)
|
||||
*
|
||||
* Author: Benjamin Stauss
|
||||
* Modified: Kyle Yasuda
|
||||
* User: me-benni, kyle
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
* {
|
||||
black: #000000;
|
||||
red: #eb6e67;
|
||||
green: #95ee8f;
|
||||
yellow: #f8c456;
|
||||
blue: #6eaafb;
|
||||
magenta: #d886f3;
|
||||
cyan: #6cdcf7;
|
||||
emphasis: #50536b;
|
||||
text: #dfdfdf;
|
||||
text-alt: #b2b2b2;
|
||||
fg: #abb2bf;
|
||||
bg: #282c34;
|
||||
|
||||
spacing: 0;
|
||||
background-color: transparent;
|
||||
|
||||
font: "Knack Nerd Font 14";
|
||||
text-color: @text;
|
||||
}
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
fullscreen: false;
|
||||
background-color: #282c34dd;
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
padding: 5%;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
margin: 0px 0px 20px 0px;
|
||||
children: [prompt, textbox-prompt-colon, entry, case-indicator];
|
||||
}
|
||||
|
||||
prompt {
|
||||
text-color: @blue;
|
||||
}
|
||||
|
||||
textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: ":";
|
||||
text-color: @text-alt;
|
||||
}
|
||||
|
||||
entry {
|
||||
margin: 0px 10px;
|
||||
/* search bar text */
|
||||
text-color: @magenta;
|
||||
}
|
||||
|
||||
listview {
|
||||
spacing: 5px;
|
||||
dynamic: true;
|
||||
scrollbar: false;
|
||||
columns: 2;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 5px;
|
||||
text-color: @text-alt;
|
||||
highlight: bold #95ee8f; /* green */
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @emphasis;
|
||||
text-color: @text;
|
||||
}
|
||||
|
||||
element urgent, element selected urgent {
|
||||
text-color: @red;
|
||||
}
|
||||
|
||||
element active, element selected active {
|
||||
text-color: @black;
|
||||
}
|
||||
|
||||
message {
|
||||
padding: 5px;
|
||||
border-radius: 3px;
|
||||
background-color: @emphasis;
|
||||
border: 1px;
|
||||
border-color: @cyan;
|
||||
}
|
||||
|
||||
button selected {
|
||||
padding: 5px;
|
||||
border-radius: 3px;
|
||||
background-color: @emphasis;
|
||||
}
|
132
themes/aniwrapper-sidetab.rasi
Normal file
132
themes/aniwrapper-sidetab.rasi
Normal file
@ -0,0 +1,132 @@
|
||||
/**
|
||||
* User: deadguy
|
||||
* Copyright: deadguy
|
||||
*/
|
||||
|
||||
configuration {
|
||||
display-drun: "Activate";
|
||||
display-run: "Execute";
|
||||
display-window: "Window";
|
||||
show-icons: true;
|
||||
sidebar-mode: true;
|
||||
}
|
||||
|
||||
* {
|
||||
background-color: #282a36;
|
||||
text-color: #d3d7cf;
|
||||
selbg: #215d9c;
|
||||
actbg: #262626;
|
||||
urgbg: #e53935;
|
||||
winbg: #26c6da;
|
||||
|
||||
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: @text-color;
|
||||
selected-active-background: @actbg;
|
||||
active-background: @selbg;
|
||||
|
||||
line-margin: 2;
|
||||
line-padding: 2;
|
||||
separator-style: "none";
|
||||
hide-scrollbar: "true";
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
window {
|
||||
location: west;
|
||||
anchor: west;
|
||||
height: 100%;
|
||||
width: 24%; /* kobe */
|
||||
orientation: horizontal;
|
||||
children: [mainbox];
|
||||
}
|
||||
|
||||
mainbox {
|
||||
spacing: 0.8em;
|
||||
children: [ entry,listview,mode-switcher ];
|
||||
}
|
||||
|
||||
button { padding: 5px 2px; }
|
||||
|
||||
button selected {
|
||||
background-color: @active-background;
|
||||
text-color: @background-color;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
padding: 5px;
|
||||
spacing: 5px;
|
||||
}
|
||||
|
||||
listview {
|
||||
spacing: 0.5em;
|
||||
dynamic: false;
|
||||
cycle: true;
|
||||
columns: 1;
|
||||
}
|
||||
|
||||
element { padding: 10px; }
|
||||
|
||||
entry {
|
||||
expand: false;
|
||||
text-color: @normal-foreground;
|
||||
vertical-align: 1;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
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;
|
||||
border: 0 5px solid 0 0;
|
||||
border-color: @active-background;
|
||||
}
|
||||
|
||||
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: @normal-background;
|
||||
text-color: @normal-foreground;
|
||||
}
|
||||
|
||||
element alternate.urgent {
|
||||
background-color: @urgent-background;
|
||||
text-color: @urgent-foreground;
|
||||
}
|
||||
|
||||
element alternate.active {
|
||||
background-color: @active-background;
|
||||
text-color: @active-foreground;
|
||||
}
|
Loading…
Reference in New Issue
Block a user