diff --git a/themes/ristretto/alacritty.toml b/themes/ristretto/alacritty.toml new file mode 100644 index 0000000..9bfae02 --- /dev/null +++ b/themes/ristretto/alacritty.toml @@ -0,0 +1,33 @@ +[colors] + +[colors.normal] +black = "#2c2525" +red = "#fd6883" +green = "#adda78" +yellow = "#f9cc6c" +blue = "#f38d70" +magenta = "#a8a9eb" +cyan = "#85dacc" +white = "#e6d9db" + +[colors.bright] +black = "#463a3a" +red = "#ff8297" +green = "#c8e292" +yellow = "#fcd675" +blue = "#f8a788" +magenta = "#bebffd" +cyan = "#9bf1e1" +white = "#f1e5e7" + +[colors.cursor] +cursor = '#c3b7b8' +text = '#c3b7b8' + +[colors.primary] +background = '#2c2525' +foreground = '#e6d9db' + +[colors.selection] +background = '#403e41' +text = '#e6d9db' diff --git a/themes/ristretto/backgrounds/1-ristretto.jpg b/themes/ristretto/backgrounds/1-ristretto.jpg new file mode 100644 index 0000000..7618e1b Binary files /dev/null and b/themes/ristretto/backgrounds/1-ristretto.jpg differ diff --git a/themes/ristretto/btop.theme b/themes/ristretto/btop.theme new file mode 100644 index 0000000..c241495 --- /dev/null +++ b/themes/ristretto/btop.theme @@ -0,0 +1,82 @@ +#Btop monokai pro ristretto theme +#Reconfigured from monokai theme + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="#2c2421" + +# Main text color +theme[main_fg]="#e6d9db" + +# Title color for boxes +theme[title]="#e6d9db" + +# Higlight color for keyboard shortcuts +theme[hi_fg]="#fd6883" + +# Background color of selected item in processes box +theme[selected_bg]="#3d2f2a" + +# Foreground color of selected item in processes box +theme[selected_fg]="#e6d9db" + +# Color of inactive/disabled text +theme[inactive_fg]="#72696a" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#adda78" + +# Cpu box outline color +theme[cpu_box]="#5b4a45" + +# Memory/disks box outline color +theme[mem_box]="#5b4a45" + +# Net up/down box outline color +theme[net_box]="#5b4a45" + +# Processes box outline color +theme[proc_box]="#5b4a45" + +# Box divider line and small boxes line color +theme[div_line]="#72696a" + +# Temperature graph colors +theme[temp_start]="#a8a9eb" +theme[temp_mid]="#f38d70" +theme[temp_end]="#fd6a85" + +# CPU graph colors +theme[cpu_start]="#adda78" +theme[cpu_mid]="#f9cc6c" +theme[cpu_end]="#fd6883" + +# Mem/Disk free meter +theme[free_start]="#5b4a45" +theme[free_mid]="#adda78" +theme[free_end]="#c5e2a3" + +# Mem/Disk cached meter +theme[cached_start]="#5b4a45" +theme[cached_mid]="#85dacc" +theme[cached_end]="#b3e8dd" + +# Mem/Disk available meter +theme[available_start]="#5b4a45" +theme[available_mid]="#f9cc6c" +theme[available_end]="#fce2a3" + +# Mem/Disk used meter +theme[used_start]="#5b4a45" +theme[used_mid]="#fd6a85" +theme[used_end]="#feb5c7" + +# Download graph colors +theme[download_start]="#3d2f2a" +theme[download_mid]="#a8a9eb" +theme[download_end]="#c5c6f0" + +# Upload graph colors +theme[upload_start]="#3d2f2a" +theme[upload_mid]="#fd6a85" +theme[upload_end]="#feb5c7" + diff --git a/themes/ristretto/hyprland.conf b/themes/ristretto/hyprland.conf new file mode 100644 index 0000000..d81a993 --- /dev/null +++ b/themes/ristretto/hyprland.conf @@ -0,0 +1,4 @@ +general { + # https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors + col.active_border = rgb(e6d9db) +} diff --git a/themes/ristretto/hyprlock.conf b/themes/ristretto/hyprlock.conf new file mode 100644 index 0000000..71c8b78 --- /dev/null +++ b/themes/ristretto/hyprlock.conf @@ -0,0 +1,5 @@ +$color = rgba(44,37,37,1.0) +$inner_color = rgba(44,37,37,0.8) +$outer_color = rgba(230,217,219,1.0) +$font_color = rgba(230,217,219,1.0) +$check_color = rgba(253,104,131,1.0) diff --git a/themes/ristretto/mako.ini b/themes/ristretto/mako.ini new file mode 100644 index 0000000..036d9b3 --- /dev/null +++ b/themes/ristretto/mako.ini @@ -0,0 +1,21 @@ +text-color=#e6d9db +border-color=#e6d9db +background-color=#2c2525 +width=420 +height=110 +padding=10 +border-size=2 +font=Liberation Sans 11 +anchor=top-right +outer-margin=20 +default-timeout=5000 +max-icon-size=32 + +[app-name=Spotify] +invisible=1 + +[mode=do-not-disturb] +invisible=true + +[mode=do-not-disturb app-name=notify-send] +invisible=false diff --git a/themes/ristretto/neovim.lua b/themes/ristretto/neovim.lua new file mode 100644 index 0000000..8fae3b8 --- /dev/null +++ b/themes/ristretto/neovim.lua @@ -0,0 +1,22 @@ +return { + { + "gthelding/monokai-pro.nvim", + config = function() + require("monokai-pro").setup({ + filter = "ristretto", + override = function() + return { + NonText = { fg = "#948a8b" }, + } + end, + }) + vim.cmd([[colorscheme monokai-pro]]) + end, + }, + { + "LazyVim/LazyVim", + opts = { + colorscheme = "monokai-pro", + }, + }, +} diff --git a/themes/ristretto/swayosd.css b/themes/ristretto/swayosd.css new file mode 100644 index 0000000..cd9c576 --- /dev/null +++ b/themes/ristretto/swayosd.css @@ -0,0 +1,5 @@ +@define-color background-color #2c2525; +@define-color border-color #c3b7b8; +@define-color label #c3b7b8; +@define-color image #c3b7b8; +@define-color progress #c3b7b8; diff --git a/themes/ristretto/walker.css b/themes/ristretto/walker.css new file mode 100644 index 0000000..ab2cfd8 --- /dev/null +++ b/themes/ristretto/walker.css @@ -0,0 +1,6 @@ +@define-color selected-text #fabd2f; +@define-color text #e6d9db; +@define-color base #2c2525; +@define-color border #e6d9db; +@define-color foreground #e6d9db; +@define-color background #2c2525; diff --git a/themes/ristretto/waybar.css b/themes/ristretto/waybar.css new file mode 100644 index 0000000..a6be70a --- /dev/null +++ b/themes/ristretto/waybar.css @@ -0,0 +1,2 @@ +@define-color foreground #e6d9db; +@define-color background #2c2525;