This commit is contained in:
vibikim 2021-03-23 10:06:18 +02:00
parent 0ae69871e8
commit ca13101e90
323 changed files with 22014 additions and 0 deletions

29
rofi/launchers/text/launcher.sh Executable file
View file

@ -0,0 +1,29 @@
#!/usr/bin/env bash
## Author : Aditya Shakya
## Mail : adi1090x@gmail.com
## Github : @adi1090x
## Twitter : @adi1090x
# Available Styles
# >> Created and tested on : rofi 1.6.0-1
#
# style_1 style_2 style_3 style_4 style_5 style_6 style_7
theme="style_2"
dir="$HOME/.config/rofi/launchers/text"
styles=($(ls -p --hide="colors.rasi" $dir/styles))
color="${styles[$(( $RANDOM % 10 ))]}"
# comment this line to disable random colors
sed -i -e "s/@import .*/@import \"$color\"/g" $dir/styles/colors.rasi
# comment these lines to disable random style
themes=($(ls -p --hide="launcher.sh" --hide="styles" $dir))
theme="${themes[$(( $RANDOM % 7 ))]}"
rofi -no-lazy-grab -show drun \
-modi run,drun,window \
-theme $dir/"$theme"

View file

@ -0,0 +1,176 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
lines: 10;
columns: 2;
font: "Iosevka Nerd Font 12";
bw: 0;
location: 0;
padding: 0;
fixed-num-lines: true;
show-icons: false;
sidebar-mode: true;
separator-style: "none";
hide-scrollbar: true;
fullscreen: false;
fake-transparency: false;
scroll-method: 1;
window-format: "[{w}] ··· {c} ··· {t}";
click-to-exit: true;
show-match: false;
combi-hide-mode-prefix: false;
display-window: "";
display-windowcd: "";
display-run: "";
display-ssh: "";
display-drun: "";
display-combi: "";
}
@import "styles/colors.rasi"
* {
background-color: @bg;
}
window {
border: 0px;
border-color: @ac;
border-radius: 12px;
padding: 40;
width: 50%;
height: 50%;
}
prompt {
spacing: 0;
border: 0;
text-color: @fg;
}
textbox-prompt-colon {
expand: false;
str: " ";
margin: 0px 4px 0px 0px;
text-color: inherit;
}
entry {
spacing: 0;
text-color: @fg;
}
case-indicator {
spacing: 0;
text-color: @fg;
}
inputbar {
spacing: 0px;
text-color: @fg;
padding: 1px;
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
mainbox {
border: 0px;
border-color: @ac;
padding: 6;
}
listview {
fixed-height: 0;
border: 0px;
border-color: @ac;
spacing: 4px;
scrollbar: false;
padding: 4px 0px 0px;
}
element {
border: 0px;
padding: 1px;
}
element normal.normal {
background-color: @bg;
text-color: @fg;
}
element normal.urgent {
background-color: @bg;
text-color: @red;
}
element normal.active {
background-color: @bg;
text-color: @green;
}
element selected.normal {
background-color: @bg;
text-color: @ac;
}
element selected.urgent {
background-color: @bg;
text-color: @red;
}
element selected.active {
background-color: @bg;
text-color: @ac;
}
element alternate.normal {
background-color: @bg;
text-color: @fg;
}
element alternate.urgent {
background-color: @bg;
text-color: @fg;
}
element alternate.active {
background-color: @bg;
text-color: @fg;
}
sidebar {
border: 0px;
border-color: @ac;
border-radius: 20px;
}
button {
margin: 5px;
padding: 5px;
text-color: @fg;
border: 0px;
border-radius: 20px;
border-color: @fg;
}
button selected {
text-color: @fg;
border: 3px;
border-radius: 20px;
border-color: @ac;
}
scrollbar {
width: 4px;
border: 0px;
handle-color: @fg;
handle-width: 8px;
padding: 0;
}
message {
border: 0px;
border-color: @ac;
padding: 1px;
}
textbox {
text-color: @fg;
}

View file

@ -0,0 +1,178 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
lines: 15;
columns: 1;
font: "Iosevka Nerd Font 12";
bw: 0;
location: 0;
padding: 0;
fixed-num-lines: true;
show-icons: false;
sidebar-mode: true;
separator-style: "none";
hide-scrollbar: true;
fullscreen: false;
fake-transparency: false;
scroll-method: 0;
window-format: "[{w}] ··· {c} ··· {t}";
click-to-exit: true;
show-match: false;
combi-hide-mode-prefix: false;
display-window: "";
display-windowcd: "";
display-run: "";
display-ssh: "";
display-drun: "";
display-combi: "";
}
@import "styles/colors.rasi"
* {
background-color: @bg;
}
window {
border: 0px;
border-color: @ac;
border-radius: 6px;
padding: 30;
width: 20%;
}
prompt {
spacing: 0;
border: 0;
text-color: @fg;
}
textbox-prompt-colon {
expand: false;
str: " ";
margin: 0px 4px 0px 0px;
text-color: inherit;
}
entry {
spacing: 0;
text-color: @fg;
}
case-indicator {
spacing: 0;
text-color: @fg;
}
inputbar {
spacing: 0px;
text-color: @fg;
padding: 1px;
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
mainbox {
border: 0px;
border-color: @ac;
padding: 6;
}
listview {
fixed-height: 0;
border: 0px;
border-color: @ac;
spacing: 4px;
scrollbar: false;
padding: 5px 5px 0px 5px;
}
element {
border: 0px;
border-radius: 4px;
padding: 5px;
}
element normal.normal {
background-color: @bg;
text-color: @fg;
}
element normal.urgent {
background-color: @bg;
text-color: @red;
}
element normal.active {
background-color: @green;
text-color: @bg;
}
element selected.normal {
background-color: @fg;
text-color: @bg;
}
element selected.urgent {
background-color: @bg;
text-color: @red;
}
element selected.active {
background-color: @fg;
text-color: @bg;
}
element alternate.normal {
background-color: @bg;
text-color: @fg;
}
element alternate.urgent {
background-color: @bg;
text-color: @fg;
}
element alternate.active {
background-color: @bg;
text-color: @fg;
}
sidebar {
border: 0px;
border-color: @ac;
border-radius: 0px;
}
button {
background-color: @fg;
margin: 5px;
padding: 5px;
text-color: @bg;
border: 0px;
border-radius: 4px;
border-color: @fg;
}
button selected {
background-color: @ac;
text-color: @fg;
border: 0px;
border-radius: 4px;
border-color: @fg;
}
scrollbar {
width: 4px;
border: 0px;
handle-color: @fg;
handle-width: 8px;
padding: 0;
}
message {
border: 0px;
border-color: @ac;
padding: 1px;
}
textbox {
text-color: @fg;
}

View file

@ -0,0 +1,178 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
lines: 6;
columns: 1;
font: "Iosevka Nerd Font 12";
bw: 0;
location: 0;
padding: 0;
fixed-num-lines: true;
show-icons: false;
sidebar-mode: true;
separator-style: "none";
hide-scrollbar: true;
fullscreen: false;
fake-transparency: false;
scroll-method: 0;
window-format: "[{w}] ··· {c} ··· {t}";
click-to-exit: true;
show-match: false;
combi-hide-mode-prefix: false;
display-window: "";
display-windowcd: "";
display-run: "";
display-ssh: "";
display-drun: "";
display-combi: "";
}
@import "styles/colors.rasi"
* {
background-color: @bg;
}
window {
border: 0px;
border-color: @ac;
border-radius: 6px;
padding: 15;
width: 20%;
}
prompt {
spacing: 0;
border: 0;
text-color: @fg;
}
textbox-prompt-colon {
expand: false;
str: " ";
margin: 0px 4px 0px 0px;
text-color: inherit;
}
entry {
spacing: 0;
text-color: @fg;
}
case-indicator {
spacing: 0;
text-color: @fg;
}
inputbar {
spacing: 0px;
text-color: @fg;
padding: 1px;
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
mainbox {
border: 0px;
border-color: @ac;
padding: 6;
}
listview {
fixed-height: 0;
border: 0px;
border-color: @ac;
spacing: 4px;
scrollbar: false;
padding: 5px 5px 0px 5px;
}
element {
border: 0px;
border-radius: 4px;
padding: 5px;
}
element normal.normal {
background-color: @bg;
text-color: @fg;
}
element normal.urgent {
background-color: @bg;
text-color: @red;
}
element normal.active {
background-color: @green;
text-color: @bg;
}
element selected.normal {
background-color: @fg;
text-color: @bg;
}
element selected.urgent {
background-color: @bg;
text-color: @red;
}
element selected.active {
background-color: @fg;
text-color: @bg;
}
element alternate.normal {
background-color: @bg;
text-color: @fg;
}
element alternate.urgent {
background-color: @bg;
text-color: @fg;
}
element alternate.active {
background-color: @bg;
text-color: @fg;
}
sidebar {
border: 0px;
border-color: @ac;
border-radius: 0px;
}
button {
background-color: @fg;
margin: 5px;
padding: 5px;
text-color: @bg;
border: 0px;
border-radius: 4px;
border-color: @fg;
}
button selected {
background-color: @ac;
text-color: @fg;
border: 0px;
border-radius: 4px;
border-color: @fg;
}
scrollbar {
width: 4px;
border: 0px;
handle-color: @fg;
handle-width: 8px;
padding: 0;
}
message {
border: 0px;
border-color: @ac;
padding: 1px;
}
textbox {
text-color: @fg;
}

View file

@ -0,0 +1,179 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
lines: 15;
columns: 1;
font: "Iosevka Nerd Font 12";
bw: 0;
location: 1;
padding: 0;
fixed-num-lines: true;
show-icons: false;
sidebar-mode: true;
separator-style: "none";
hide-scrollbar: true;
fullscreen: false;
fake-transparency: false;
scroll-method: 0;
window-format: "[{w}] ··· {c} ··· {t}";
click-to-exit: true;
show-match: false;
combi-hide-mode-prefix: false;
display-window: "";
display-windowcd: "";
display-run: "";
display-ssh: "";
display-drun: "";
display-combi: "";
}
@import "styles/colors.rasi"
* {
background-color: @bg;
}
window {
border: 0px;
border-color: @ac;
border-radius: 0px;
padding: 30;
width: 20%;
height: 100%;
}
prompt {
spacing: 0;
border: 0;
text-color: @fg;
}
textbox-prompt-colon {
expand: false;
str: " ";
margin: 0px 4px 0px 0px;
text-color: inherit;
}
entry {
spacing: 0;
text-color: @fg;
}
case-indicator {
spacing: 0;
text-color: @fg;
}
inputbar {
spacing: 0px;
text-color: @fg;
padding: 1px;
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
mainbox {
border: 0px;
border-color: @ac;
padding: 6;
}
listview {
fixed-height: 0;
border: 0px;
border-color: @ac;
spacing: 4px;
scrollbar: false;
padding: 15px 5px 0px 5px;
}
element {
border: 0px;
border-radius: 4px;
padding: 5px;
}
element normal.normal {
background-color: @bg;
text-color: @fg;
}
element normal.urgent {
background-color: @bg;
text-color: @red;
}
element normal.active {
background-color: @green;
text-color: @bg;
}
element selected.normal {
background-color: @ac;
text-color: @bg;
}
element selected.urgent {
background-color: @bg;
text-color: @red;
}
element selected.active {
background-color: @ac;
text-color: @bg;
}
element alternate.normal {
background-color: @bg;
text-color: @fg;
}
element alternate.urgent {
background-color: @bg;
text-color: @fg;
}
element alternate.active {
background-color: @bg;
text-color: @fg;
}
sidebar {
border: 0px;
border-color: @ac;
border-radius: 0px;
}
button {
background-color: @red;
margin: 5px;
padding: 5px;
text-color: @fg;
border: 0px;
border-radius: 4px;
border-color: @fg;
}
button selected {
background-color: @green;
text-color: @fg;
border: 0px;
border-radius: 4px;
border-color: @fg;
}
scrollbar {
width: 4px;
border: 0px;
handle-color: @fg;
handle-width: 8px;
padding: 0;
}
message {
border: 0px;
border-color: @ac;
padding: 1px;
}
textbox {
text-color: @fg;
}

View file

@ -0,0 +1,181 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
lines: 5;
columns: 3;
font: "Iosevka Nerd Font 12";
bw: 0;
location: 0;
padding: 0;
fixed-num-lines: true;
show-icons: false;
sidebar-mode: true;
separator-style: "none";
hide-scrollbar: true;
fullscreen: true;
fake-transparency: false;
scroll-method: 0;
window-format: "[{w}] ··· {c} ··· {t}";
click-to-exit: true;
show-match: false;
combi-hide-mode-prefix: false;
display-window: "";
display-windowcd: "";
display-run: "";
display-ssh: "";
display-drun: "";
display-combi: "";
}
@import "styles/colors.rasi"
* {
background-color: @bg;
}
window {
border: 0px;
border-color: @ac;
border-radius: 0px;
padding: 300px;
width: 100%;
}
prompt {
spacing: 0;
border: 0;
text-color: @fg;
}
textbox-prompt-colon {
expand: false;
str: " ";
margin: 0px 4px 0px 0px;
text-color: inherit;
}
entry {
spacing: 0;
text-color: @fg;
}
case-indicator {
spacing: 0;
text-color: @fg;
}
inputbar {
spacing: 0px;
text-color: @fg;
padding: 1px;
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
mainbox {
border: 0px;
border-color: @ac;
padding: 6;
}
listview {
fixed-height: 0;
border: 0px;
border-color: @ac;
spacing: 5px;
scrollbar: false;
padding: 25px 5px -20px 5px;
}
element {
border: 4px;
border-radius: 4px;
padding: 15px;
}
element normal.normal {
background-color: @bg;
text-color: @fg;
}
element normal.urgent {
background-color: @bg;
text-color: @red;
}
element normal.active {
background-color: @bg;
text-color: @fg;
border-color: @green;
}
element selected.normal {
background-color: @bg;
text-color: @fg;
border-color: @fg;
}
element selected.urgent {
background-color: @bg;
text-color: @red;
}
element selected.active {
background-color: @bg;
text-color: @fg;
border-color: @fg;
}
element alternate.normal {
background-color: @bg;
text-color: @fg;
}
element alternate.urgent {
background-color: @bg;
text-color: @fg;
}
element alternate.active {
background-color: @bg;
text-color: @fg;
}
sidebar {
border: 0px;
border-color: @ac;
border-radius: 0px;
}
button {
background-color: @se;
margin: 5px;
padding: 15px;
text-color: @fg;
border: 0px;
border-radius: 4px;
border-color: @fg;
}
button selected {
background-color: @bg;
text-color: @fg;
border: 4px;
border-radius: 4px;
border-color: @fg;
}
scrollbar {
width: 4px;
border: 0px;
handle-color: @fg;
handle-width: 8px;
padding: 0;
}
message {
border: 0px;
border-color: @ac;
padding: 1px;
}
textbox {
text-color: @fg;
}

View file

@ -0,0 +1,178 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
lines: 10;
columns: 1;
font: "Iosevka Nerd Font 12";
bw: 0;
location: 0;
padding: 0;
fixed-num-lines: true;
show-icons: false;
sidebar-mode: true;
separator-style: "none";
hide-scrollbar: true;
fullscreen: true;
fake-transparency: false;
scroll-method: 0;
window-format: "[{w}] ··· {c} ··· {t}";
click-to-exit: true;
show-match: false;
combi-hide-mode-prefix: false;
display-window: "";
display-windowcd: "";
display-run: "";
display-ssh: "";
display-drun: "";
display-combi: "";
}
@import "styles/colors.rasi"
* {
background-color: @bg;
}
window {
border: 0px;
border-color: @ac;
border-radius: 0px;
padding: 30%;
width: 100%;
}
prompt {
spacing: 0;
border: 0;
text-color: @fg;
}
textbox-prompt-colon {
expand: false;
str: " ";
margin: 0px 4px 0px 0px;
text-color: inherit;
}
entry {
spacing: 0;
text-color: @fg;
}
case-indicator {
spacing: 0;
text-color: @fg;
}
inputbar {
spacing: 0px;
text-color: @fg;
padding: 1px;
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
mainbox {
border: 0px;
border-color: @ac;
padding: 6;
}
listview {
fixed-height: 0;
border: 0px;
border-color: @ac;
spacing: 5px;
scrollbar: false;
padding: 35px 5px 25px 5px;
}
element {
border: 0px;
border-radius: 100%;
padding: 15px;
}
element normal.normal {
background-color: @bg;
text-color: @fg;
}
element normal.urgent {
background-color: @bg;
text-color: @red;
}
element normal.active {
background-color: @green;
text-color: @bg;
}
element selected.normal {
background-color: @fg;
text-color: @bg;
}
element selected.urgent {
background-color: @bg;
text-color: @red;
}
element selected.active {
background-color: @fg;
text-color: @bg;
}
element alternate.normal {
background-color: @bg;
text-color: @fg;
}
element alternate.urgent {
background-color: @bg;
text-color: @fg;
}
element alternate.active {
background-color: @bg;
text-color: @fg;
}
sidebar {
border: 0px;
border-color: @ac;
border-radius: 0px;
}
button {
background-color: @fg;
margin: 5px;
padding: 15px;
text-color: @bg;
border: 0px;
border-radius: 100%;
border-color: @fg;
}
button selected {
background-color: @ac;
text-color: @fg;
border: 0px;
border-radius: 100%;
border-color: @fg;
}
scrollbar {
width: 4px;
border: 0px;
handle-color: @fg;
handle-width: 8px;
padding: 0;
}
message {
border: 0px;
border-color: @ac;
padding: 1px;
}
textbox {
text-color: @fg;
}

View file

@ -0,0 +1,178 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
lines: 10;
columns: 2;
font: "Iosevka Nerd Font 12";
bw: 0;
location: 0;
padding: 0;
fixed-num-lines: true;
show-icons: false;
sidebar-mode: true;
separator-style: "none";
hide-scrollbar: true;
fullscreen: false;
fake-transparency: false;
scroll-method: 1;
window-format: "[{w}] ··· {c} ··· {t}";
click-to-exit: true;
show-match: false;
combi-hide-mode-prefix: false;
display-window: "";
display-windowcd: "";
display-run: "";
display-ssh: "";
display-drun: "";
display-combi: "";
}
@import "styles/colors.rasi"
* {
background-color: @bg;
}
window {
border: 0px;
border-color: @ac;
border-radius: 20px;
padding: 30;
width: 40%;
}
prompt {
spacing: 0;
border: 0;
text-color: @fg;
}
textbox-prompt-colon {
expand: false;
str: " ";
margin: 0px 4px 0px 0px;
text-color: inherit;
}
entry {
spacing: 0;
text-color: @fg;
}
case-indicator {
spacing: 0;
text-color: @fg;
}
inputbar {
spacing: 0px;
text-color: @fg;
padding: 1px;
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
mainbox {
border: 0px;
border-color: @ac;
padding: 6;
}
listview {
fixed-height: 0;
border: 0px;
border-color: @ac;
spacing: 4px;
scrollbar: false;
padding: 5px 5px 0px 5px;
}
element {
border: 0px;
border-radius: 100%;
padding: 5px;
}
element normal.normal {
background-color: @bg;
text-color: @fg;
}
element normal.urgent {
background-color: @bg;
text-color: @red;
}
element normal.active {
background-color: @green;
text-color: @bg;
}
element selected.normal {
background-color: @ac;
text-color: @bg;
}
element selected.urgent {
background-color: @bg;
text-color: @red;
}
element selected.active {
background-color: @ac;
text-color: @bg;
}
element alternate.normal {
background-color: @bg;
text-color: @fg;
}
element alternate.urgent {
background-color: @bg;
text-color: @fg;
}
element alternate.active {
background-color: @bg;
text-color: @fg;
}
sidebar {
border: 0px;
border-color: @ac;
border-radius: 0px;
}
button {
background-color: @red;
margin: 5px;
padding: 5px;
text-color: @fg;
border: 0px;
border-radius: 100%;
border-color: @fg;
}
button selected {
background-color: @green;
text-color: @fg;
border: 0px;
border-radius: 100%;
border-color: @fg;
}
scrollbar {
width: 4px;
border: 0px;
handle-color: @fg;
handle-width: 8px;
padding: 0;
}
message {
border: 0px;
border-color: @ac;
padding: 1px;
}
textbox {
text-color: @fg;
}

View file

@ -0,0 +1,15 @@
/* colors */
* {
al: #00000000;
bg: #280F28ff;
se: #2D142Cff;
fg: #ffffffA6;
ac: #EE4540ff;
red: #EC7875ff;
green: #61C766ff;
yellow: #FDD835ff;
blue: #42A5F5ff;
purple: #BA68C8ff;
cyan: #4DD0E1ff;
}

View file

@ -0,0 +1,15 @@
/* colors */
* {
al: #00000000;
bg: #101010ff;
se: #151515ff;
fg: #f5f5f5ff;
ac: #42A5F5ff;
red: #EC7875ff;
green: #61C766ff;
yellow: #FDD835ff;
blue: #42A5F5ff;
purple: #BA68C8ff;
cyan: #4DD0E1ff;
}

View file

@ -0,0 +1,15 @@
/* colors */
* {
al: #00000000;
bg: #EFF0F1FF;
se: #E3E3E3FF;
fg: #000000A6;
ac: #000B83FF;
red: #EC7875ff;
green: #61C766ff;
yellow: #FDD835ff;
blue: #42A5F5ff;
purple: #BA68C8ff;
cyan: #4DD0E1ff;
}

View file

@ -0,0 +1,15 @@
/* colors */
* {
al: #00000000;
bg: #3C3945FF;
se: #413E4Aff;
fg: #F7C7B2ff;
ac: #B38184ff;
red: #EC7875ff;
green: #61C766ff;
yellow: #FDD835ff;
blue: #42A5F5ff;
purple: #BA68C8ff;
cyan: #4DD0E1ff;
}

View file

@ -0,0 +1,11 @@
/*
* Change the colorscheme for every menu simply by editing this file...
*
* Available Color Schemes
*
* bluish berry nordic nightly gotham mask faded cocoa
* black white
*
*/
@import "berry.rasi"

View file

@ -0,0 +1,15 @@
/* colors */
* {
al: #00000000;
bg: #57678CFF;
se: #5E6C91ff;
fg: #FFFCFFff;
ac: #FF83A7ff;
red: #EC7875ff;
green: #61C766ff;
yellow: #FDD835ff;
blue: #42A5F5ff;
purple: #BA68C8ff;
cyan: #4DD0E1ff;
}

View file

@ -0,0 +1,15 @@
/* colors */
* {
al: #00000000;
bg: #24334Aff;
se: #29384Fff;
fg: #FEFFF1ff;
ac: #3A6081ff;
red: #EC7875ff;
green: #61C766ff;
yellow: #FDD835ff;
blue: #42A5F5ff;
purple: #BA68C8ff;
cyan: #4DD0E1ff;
}

View file

@ -0,0 +1,15 @@
/* colors */
* {
al: #00000000;
bg: #3E4667ff;
se: #434C6Dff;
fg: #FAF7CCff;
ac: #CA8CA5ff;
red: #EC7875ff;
green: #61C766ff;
yellow: #FDD835ff;
blue: #42A5F5ff;
purple: #BA68C8ff;
cyan: #4DD0E1ff;
}

View file

@ -0,0 +1,15 @@
/* colors */
* {
al: #00000000;
bg: #25344Bff;
se: #2A3950ff;
fg: #FEFFF1ff;
ac: #A162F7ff;
red: #EC7875ff;
green: #61C766ff;
yellow: #FDD835ff;
blue: #42A5F5ff;
purple: #BA68C8ff;
cyan: #4DD0E1ff;
}

View file

@ -0,0 +1,15 @@
/* colors */
* {
al: #00000000;
bg: #425775ff;
se: #475C7Bff;
fg: #ffffffcc;
ac: #FDBB6Dff;
red: #EC7875ff;
green: #61C766ff;
yellow: #FDD835ff;
blue: #42A5F5ff;
purple: #BA68C8ff;
cyan: #4DD0E1ff;
}

View file

@ -0,0 +1,15 @@
/* colors */
* {
al: #00000000;
bg: #ffffffff;
se: #f5f5f5ff;
fg: #000000ff;
ac: #2900D0ff;
red: #EC7875ff;
green: #61C766ff;
yellow: #FDD835ff;
blue: #42A5F5ff;
purple: #BA68C8ff;
cyan: #4DD0E1ff;
}