Skip to content
Open
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
67 changes: 67 additions & 0 deletions themes/catppuccin-latte/alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# https://raw.githubusercontent.com/catppuccin/alacritty/main/catppuccin-latte.toml

[colors.primary]
background = "#eff1f5"
foreground = "#4c4f69"
dim_foreground = "#8c8fa1"
bright_foreground = "#4c4f69"

[colors.cursor]
text = "#eff1f5"
cursor = "#dc8a78"

[colors.vi_mode_cursor]
text = "#eff1f5"
cursor = "#7287fd"

[colors.search.matches]
foreground = "#eff1f5"
background = "#6c6f85"

[colors.search.focused_match]
foreground = "#eff1f5"
background = "#40a02b"

[colors.footer_bar]
foreground = "#eff1f5"
background = "#6c6f85"

[colors.hints.start]
foreground = "#eff1f5"
background = "#df8e1d"

[colors.hints.end]
foreground = "#eff1f5"
background = "#6c6f85"

[colors.selection]
text = "#eff1f5"
background = "#dc8a78"

[colors.normal]
black = "#bcc0cc"
red = "#d20f39"
green = "#40a02b"
yellow = "#df8e1d"
blue = "#1e66f5"
magenta = "#ea76cb"
cyan = "#179299"
white = "#5c5f77"

[colors.bright]
black = "#acb0be"
red = "#d20f39"
green = "#40a02b"
yellow = "#df8e1d"
blue = "#1e66f5"
magenta = "#ea76cb"
cyan = "#179299"
white = "#6c6f85"

[[colors.indexed_colors]]
index = 16
color = "#fe640b"

[[colors.indexed_colors]]
index = 17
color = "#dc8a78"
Binary file added themes/catppuccin-latte/background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
84 changes: 84 additions & 0 deletions themes/catppuccin-latte/btop.theme
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# https://github.com/catppuccin/btop/blob/main/themes/catppuccin_latte.theme
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#eff1f5"

# Main text color
theme[main_fg]="#4c4f69"

# Title color for boxes
theme[title]="#4c4f69"

# Highlight color for keyboard shortcuts
theme[hi_fg]="#1e66f5"

# Background color of selected item in processes box
theme[selected_bg]="#bcc0cc"

# Foreground color of selected item in processes box
theme[selected_fg]="#1e66f5"

# Color of inactive/disabled text
theme[inactive_fg]="#8c8fa1"

# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#dc8a78"

# Background color of the percentage meters
theme[meter_bg]="#bcc0cc"

# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#dc8a78"

# CPU, Memory, Network, Proc box outline colors
theme[cpu_box]="#8839ef" #Mauve
theme[mem_box]="#40a02b" #Green
theme[net_box]="#e64553" #Maroon
theme[proc_box]="#1e66f5" #Blue

# Box divider line and small boxes line color
theme[div_line]="#9ca0b0"

# Temperature graph color (Green -> Yellow -> Red)
theme[temp_start]="#40a02b"
theme[temp_mid]="#df8e1d"
theme[temp_end]="#d20f39"

# CPU graph colors (Teal -> Lavender)
theme[cpu_start]="#179299"
theme[cpu_mid]="#209fb5"
theme[cpu_end]="#7287fd"

# Mem/Disk free meter (Mauve -> Lavender -> Blue)
theme[free_start]="#8839ef"
theme[free_mid]="#7287fd"
theme[free_end]="#1e66f5"

# Mem/Disk cached meter (Sapphire -> Lavender)
theme[cached_start]="#209fb5"
theme[cached_mid]="#1e66f5"
theme[cached_end]="#7287fd"

# Mem/Disk available meter (Peach -> Red)
theme[available_start]="#fe640b"
theme[available_mid]="#e64553"
theme[available_end]="#d20f39"

# Mem/Disk used meter (Green -> Sky)
theme[used_start]="#40a02b"
theme[used_mid]="#179299"
theme[used_end]="#04a5e5"

# Download graph colors (Peach -> Red)
theme[download_start]="#fe640b"
theme[download_mid]="#e64553"
theme[download_end]="#d20f39"

# Upload graph colors (Green -> Sky)
theme[upload_start]="#40a02b"
theme[upload_mid]="#179299"
theme[upload_end]="#04a5e5"

# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
theme[process_start]="#209fb5"
theme[process_mid]="#7287fd"
theme[process_end]="#8839ef"
6 changes: 6 additions & 0 deletions themes/catppuccin-latte/gnome.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

OMAKUB_THEME_COLOR="blue"
OMAKUB_THEME_BACKGROUND="catppuccin-latte/background.png"
source $OMAKUB_PATH/themes/set-gnome-theme.sh
gsettings set org.gnome.desktop.interface color-scheme 'prefer-light'
19 changes: 19 additions & 0 deletions themes/catppuccin-latte/neovim.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
return {
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
config = function()
require("catppuccin").setup({
flavour = "latte",
})
vim.cmd.colorscheme("catppuccin-latte")
end,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin-latte",
},
},
}
3 changes: 3 additions & 0 deletions themes/catppuccin-latte/tophat.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

gsettings set org.gnome.shell.extensions.tophat meter-fg-color "#1e66f5"
5 changes: 5 additions & 0 deletions themes/catppuccin-latte/vscode.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

VSC_THEME="Catppuccin Latte"
VSC_EXTENSION="Catppuccin.catppuccin-vsc"
source $OMAKUB_PATH/themes/set-vscode-theme.sh
120 changes: 120 additions & 0 deletions themes/catppuccin-latte/zellij.kdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
themes {
catppuccin-latte {
text_unselected {
base 76 79 105
background 220 224 232
emphasis_0 254 100 11
emphasis_1 4 165 229
emphasis_2 64 160 43
emphasis_3 210 15 57
}
text_selected {
base 76 79 105
background 172 176 190
emphasis_0 254 100 11
emphasis_1 4 165 229
emphasis_2 64 160 43
emphasis_3 234 118 203
}
ribbon_selected {
base 220 224 232
background 64 160 43
emphasis_0 210 15 57
emphasis_1 254 100 11
emphasis_2 234 118 203
emphasis_3 30 102 245
}
ribbon_unselected {
base 220 224 232
background 92 95 119
emphasis_0 234 118 203
emphasis_1 76 79 105
emphasis_2 30 102 245
emphasis_3 234 118 203
}
table_title {
base 64 160 43
background 0
emphasis_0 254 100 11
emphasis_1 4 165 229
emphasis_2 64 160 43
emphasis_3 234 118 203
}
table_cell_selected {
base 76 79 105
background 172 176 190
emphasis_0 254 100 11
emphasis_1 4 165 229
emphasis_2 64 160 43
emphasis_3 234 118 203
}
table_cell_unselected {
base 76 79 105
background 220 224 232
emphasis_0 254 100 11
emphasis_1 4 165 229
emphasis_2 64 160 43
emphasis_3 234 118 203
}
list_selected {
base 76 79 105
background 172 176 190
emphasis_0 254 100 11
emphasis_1 4 165 229
emphasis_2 64 160 43
emphasis_3 234 118 203
}
list_unselected {
base 76 79 105
background 220 224 232
emphasis_0 254 100 11
emphasis_1 4 165 229
emphasis_2 64 160 43
emphasis_3 234 118 203
}
frame_selected {
base 64 160 43
background 0
emphasis_0 254 100 11
emphasis_1 4 165 229
emphasis_2 234 118 203
emphasis_3 0
}
frame_highlight {
base 254 100 11
background 0
emphasis_0 210 15 57
emphasis_1 136 57 239
emphasis_2 254 100 11
emphasis_3 254 100 11
}
exit_code_success {
base 64 160 43
background 0
emphasis_0 4 165 229
emphasis_1 220 224 232
emphasis_2 234 118 203
emphasis_3 30 102 245
}
exit_code_error {
base 210 15 57
background 0
emphasis_0 223 142 29
emphasis_1 0
emphasis_2 0
emphasis_3 0
}
multiplayer_user_colors {
player_1 234 118 203
player_2 30 102 245
player_3 0
player_4 223 142 29
player_5 4 165 229
player_6 0
player_7 210 15 57
player_8 0
player_9 0
player_10 0
}
}
}
39 changes: 39 additions & 0 deletions themes/flexoki-light/alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[colors.bright]
black = "#100F0F"
blue = "#205EA6"
cyan = "#3AA99F"
green = "#879A39"
magenta = "#CE5D97"
red = "#D14D41"
white = "#FFFCF0"
yellow = "#D0A215"

[colors.cursor]
cursor = "#100F0F"
text = "#FFFCF0"

[colors.dim]
black = "#100F0F"
blue = "#205EA6"
cyan = "#3AA99F"
green = "#879A39"
magenta = "#CE5D97"
red = "#D14D41"
white = "#FFFCF0"
yellow = "#D0A215"

[colors.normal]
black = "#100F0F"
blue = "#205EA6"
cyan = "#3AA99F"
green = "#879A39"
magenta = "#CE5D97"
red = "#D14D41"
white = "#FFFCF0"
yellow = "#D0A215"

[colors.primary]
background = "#FFFCF0"
bright_foreground = "#100F0F"
dim_foreground = "#100F0F"
foreground = "#100F0F"
Binary file added themes/flexoki-light/background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading