Skip to content
This repository was archived by the owner on Aug 30, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/omakub-sub/theme.sh

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think there's a " missing at the end, it doesn't close properly.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, my bad, checked and fixed and tested

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
THEME_NAMES=("Tokyo Night" "Catppuccin" "Nord" "Everforest" "Gruvbox" "Kanagawa" "Rose Pine")
THEME_NAMES=("Tokyo Night" "Catppuccin" "Nord" "Everforest" "Gruvbox" "Kanagawa" "Rose Pine" "Rose Pine Moon")
THEME=$(gum choose "${THEME_NAMES[@]}" "<< Back" --header "Choose your theme" --height 10 | tr '[:upper:]' '[:lower:]' | sed 's/ /-/g')

if [ -n "$THEME" ] && [ "$THEME" != "<<-back" ]; then
Expand Down
71 changes: 71 additions & 0 deletions themes/rose-pine-moon/alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
[colors.primary]
foreground = "#e0def4"
background = "#232136"
dim_foreground = "#908caa"
bright_foreground = "#e0def4"

[colors.cursor]
text = "#232136"
cursor = "#e0def4"

[colors.vi_mode_cursor]
text = "#232136"
cursor = "#e0def4"

[colors.search.matches]
foreground = "#232136"
background = "#ea9a97"

[colors.search.focused_match]
foreground = "#232136"
background = "#f6c177"

[colors.hints.start]
foreground = "#232136"
background = "#9ccfd8"

[colors.hints.end]
foreground = "#232136"
background = "#c4a7e7"

[colors.line_indicator]
foreground = "None"
background = "None"

[colors.footer_bar]
foreground = "#e0def4"
background = "#393552"

[colors.selection]
text = "#232136"
background = "#393552"

[colors.normal]
black = "#393552"
red = "#eb6f92"
green = "#9ccfd8"
yellow = "#f6c177"
blue = "#3e8fb0"
magenta = "#c4a7e7"
cyan = "#ea9a97"
white = "#e0def4"

[colors.bright]
black = "#6e6a86"
red = "#eb6f92"
green = "#9ccfd8"
yellow = "#f6c177"
blue = "#3e8fb0"
magenta = "#c4a7e7"
cyan = "#ea9a97"
white = "#e0def4"

[colors.dim]
black = "#2a273f"
red = "#eb6f92"
green = "#9ccfd8"
yellow = "#f6c177"
blue = "#3e8fb0"
magenta = "#c4a7e7"
cyan = "#ea9a97"
white = "#e0def4"
Binary file added themes/rose-pine-moon/background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions themes/rose-pine-moon/chrome.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CHROME_COLOR="-14252553"
CHROME_COLOR_SCHEME=1
CHROME_COLOR_VARIANT=1
CHROME_BACKGROUND="rose-pine-moon/background.jpg"
source $OMAKUB_PATH/themes/set-chrome-theme.sh
4 changes: 4 additions & 0 deletions themes/rose-pine-moon/gnome.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
OMAKUB_THEME_COLOR="red"
OMAKUB_THEME_BACKGROUND="rose-pine-moon/background.jpg"
source $OMAKUB_PATH/themes/set-gnome-theme.sh
gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
9 changes: 9 additions & 0 deletions themes/rose-pine-moon/neovim.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
return {
{ "rose-pine/neovim", name = "rose-pine" },
{
"LazyVim/LazyVim",
opts = {
colorscheme = "rose-pine-moon",
},
},
}
1 change: 1 addition & 0 deletions themes/rose-pine-moon/tophat.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gsettings set org.gnome.shell.extensions.tophat meter-fg-color "#9ccfd8"
3 changes: 3 additions & 0 deletions themes/rose-pine-moon/vscode.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
VSC_THEME="Rosé Pine Moon"
VSC_EXTENSION="mvllow.rose-pine"
source $OMAKUB_PATH/themes/set-vscode-theme.sh
15 changes: 15 additions & 0 deletions themes/rose-pine-moon/zellij.kdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
themes {
rose-pine-moon {
bg "#44415a"
fg "#e0def4"
red "#eb6f92"
green "#3e8fb0"
blue "#9ccfd8"
yellow "#f6c177"
magenta "#c4a7e7"
orange "#fe640b"
cyan "#ea9a97"
black "#393552"
white "#e0def4"
}
}