mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-28 04:39:25 +00:00
Add different themes
This commit is contained in:
29
themes/tokyo-night/alacritty.toml
Normal file
29
themes/tokyo-night/alacritty.toml
Normal file
@ -0,0 +1,29 @@
|
||||
[colors]
|
||||
[colors.primary]
|
||||
background = '#1a1b26'
|
||||
foreground = '#a9b1d6'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#32344a'
|
||||
red = '#f7768e'
|
||||
green = '#9ece6a'
|
||||
yellow = '#e0af68'
|
||||
blue = '#7aa2f7'
|
||||
magenta = '#ad8ee6'
|
||||
cyan = '#449dab'
|
||||
white = '#787c99'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#444b6a'
|
||||
red = '#ff7a93'
|
||||
green = '#b9f27c'
|
||||
yellow = '#ff9e64'
|
||||
blue = '#7da6ff'
|
||||
magenta = '#bb9af7'
|
||||
cyan = '#0db9d7'
|
||||
white = '#acb0d0'
|
||||
|
||||
[colors.selection]
|
||||
background = '#7aa2f7'
|
8
themes/tokyo-night/backgrounds.sh
Normal file
8
themes/tokyo-night/backgrounds.sh
Normal file
@ -0,0 +1,8 @@
|
||||
BACKGROUNDS_DIR=~/.config/omarchy/backgrounds/tokyo-night
|
||||
|
||||
if [[ -z $BACKGROUNDS_DIR ]]; then
|
||||
mkdir -p $BACKGROUNDS_DIR
|
||||
gum spin --title "Downloading background image..." -- curl -sL -o $BACKGROUNDS_DIR/1-Milad-Fakurian-Abstract-Purple-Blue.jpg https://images.unsplash.com/photo-1620207418302-439b387441b0
|
||||
gum spin --title "Downloading background image..." -- curl -sL -o $BACKGROUNDS_DIR/2-Pawel-Czerwinski-Abstract-Purple-Blue.jpg https://images.unsplash.com/photo-1651870364199-fc5f9f46ac85
|
||||
gum spin --title "Downloading background image..." -- curl -sL -o $BACKGROUNDS_DIR/3-Jr-Korpa-Abstract-Purple-Blue.jpg https://images.unsplash.com/flagged/photo-1567400358593-9e6382752ea2
|
||||
fi
|
8
themes/tokyo-night/neovim.lua
Normal file
8
themes/tokyo-night/neovim.lua
Normal file
@ -0,0 +1,8 @@
|
||||
return {
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "tokyonight",
|
||||
},
|
||||
},
|
||||
}
|
10
themes/tokyo-night/swaync.css
Normal file
10
themes/tokyo-night/swaync.css
Normal file
@ -0,0 +1,10 @@
|
||||
.notification {
|
||||
color: #cdd6f4;
|
||||
background-color: rgba(26, 27, 38, 0.95);
|
||||
border: 2px solid #313244;
|
||||
}
|
||||
|
||||
.body {
|
||||
color: #a6adc8;
|
||||
}
|
||||
|
5
themes/tokyo-night/waybar.css
Normal file
5
themes/tokyo-night/waybar.css
Normal file
@ -0,0 +1,5 @@
|
||||
* {
|
||||
color: #cdd6f4;
|
||||
background-color: #1a1b26;
|
||||
}
|
||||
|
73
themes/tokyo-night/wofi.css
Normal file
73
themes/tokyo-night/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