mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 12:19:24 +00:00
Add more themes
This commit is contained in:
24
themes/everforest/alacritty.toml
Normal file
24
themes/everforest/alacritty.toml
Normal file
@ -0,0 +1,24 @@
|
||||
[colors]
|
||||
[colors.primary]
|
||||
background = '#2d353b'
|
||||
foreground = '#d3c6aa'
|
||||
|
||||
[colors.normal]
|
||||
black = '#475258'
|
||||
red = '#e67e80'
|
||||
green = '#a7c080'
|
||||
yellow = '#dbbc7f'
|
||||
blue = '#7fbbb3'
|
||||
magenta = '#d699b6'
|
||||
cyan = '#83c092'
|
||||
white = '#d3c6aa'
|
||||
|
||||
[colors.bright]
|
||||
black = '#475258'
|
||||
red = '#e67e80'
|
||||
green = '#a7c080'
|
||||
yellow = '#dbbc7f'
|
||||
blue = '#7fbbb3'
|
||||
magenta = '#d699b6'
|
||||
cyan = '#83c092'
|
||||
white = '#d3c6aa'
|
6
themes/everforest/backgrounds.sh
Normal file
6
themes/everforest/backgrounds.sh
Normal file
@ -0,0 +1,6 @@
|
||||
BACKGROUNDS_DIR=~/.config/omarchy/backgrounds/everforest
|
||||
|
||||
if [[ ! -d $BACKGROUNDS_DIR ]]; then
|
||||
mkdir -p $BACKGROUNDS_DIR
|
||||
gum spin --title "Downloading background image..." -- curl -sL -o $BACKGROUNDS_DIR/1-everforest.jpg https://github.com/basecamp/omakub/raw/refs/heads/master/themes/everforest/background.jpg
|
||||
fi
|
10
themes/everforest/neovim.lua
Normal file
10
themes/everforest/neovim.lua
Normal file
@ -0,0 +1,10 @@
|
||||
return {
|
||||
{ "neanias/everforest-nvim" },
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "everforest",
|
||||
background = "soft",
|
||||
},
|
||||
},
|
||||
}
|
10
themes/everforest/swaync.css
Normal file
10
themes/everforest/swaync.css
Normal file
@ -0,0 +1,10 @@
|
||||
.notification {
|
||||
color: #cdd6f4;
|
||||
background-color: rgba(30, 30, 46, 0.95);
|
||||
border: 2px solid #313244;
|
||||
}
|
||||
|
||||
.body {
|
||||
color: #a6adc8;
|
||||
}
|
||||
|
5
themes/everforest/waybar.css
Normal file
5
themes/everforest/waybar.css
Normal file
@ -0,0 +1,5 @@
|
||||
* {
|
||||
color: #cdd6f4;
|
||||
background-color: #181824;
|
||||
}
|
||||
|
73
themes/everforest/wofi.css
Normal file
73
themes/everforest/wofi.css
Normal file
@ -0,0 +1,73 @@
|
||||
@define-color selected-text #cba6f7;
|
||||
@define-color text #cdd6f4;
|
||||
@define-color base #1e1e2e;
|
||||
|
||||
* {
|
||||
font-family: 'CaskaydiaMono Nerd Font', monospace;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
window {
|
||||
margin: 0px;
|
||||
padding: 20px;
|
||||
background-color: @base;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
#inner-box {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
background-color: @base;
|
||||
}
|
||||
|
||||
#outer-box {
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
border: none;
|
||||
background-color: @base;
|
||||
}
|
||||
|
||||
#scroll {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
background-color: @base;
|
||||
}
|
||||
|
||||
#input {
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
border: none;
|
||||
background-color: @base;
|
||||
color: @text;
|
||||
}
|
||||
|
||||
#input:focus {
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#text {
|
||||
margin: 5px;
|
||||
border: none;
|
||||
color: @text;
|
||||
}
|
||||
|
||||
#entry {
|
||||
background-color: @base;
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
outline: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#entry:selected #text {
|
||||
color: @selected-text;
|
||||
}
|
||||
|
||||
#entry image {
|
||||
-gtk-icon-transform: scale(0.7);
|
||||
}
|
Reference in New Issue
Block a user