From 2ced5ae86fe1556d74a0f6d7cf37c125a1e3f286 Mon Sep 17 00:00:00 2001 From: oluceps Date: Mon, 21 Oct 2024 01:48:16 +0800 Subject: [PATCH] + --- home/btop/themes/catppuccin.theme | 125 ++++++++++++++++++++---------- 1 file changed, 83 insertions(+), 42 deletions(-) diff --git a/home/btop/themes/catppuccin.theme b/home/btop/themes/catppuccin.theme index 768f90f19..82ac1d06e 100755 --- a/home/btop/themes/catppuccin.theme +++ b/home/btop/themes/catppuccin.theme @@ -1,42 +1,83 @@ -theme[main_bg]="#303446" -theme[main_fg]="#C6D0F5" -theme[title]="#C6D0F5" -theme[hi_fg]="#8CAAEE" -theme[selected_bg]="#51576D" -theme[selected_fg]="#8CAAEE" -theme[inactive_fg]="#838BA7" -theme[graph_text]="#F2D5CF" -theme[meter_bg]="#51576D" -theme[proc_misc]="#F2D5CF" -theme[cpu_box]="#85C1DC" -theme[mem_box]="#A6D189" -theme[net_box]="#CA9EE6" -theme[proc_box]="#EEBEBE" -theme[div_line]="#737994" -theme[temp_start]="#E5C890" -theme[temp_mid]="#EF9F76" -theme[temp_end]="#E78284" -theme[cpu_start]="#85C1DC" -theme[cpu_mid]="#99D1DB" -theme[cpu_end]="#81C8BE" -theme[free_start]="#81C8BE" -theme[free_mid]="#81C8BE" -theme[free_end]="#A6D189" -theme[cached_start]="#F4B8E4" -theme[cached_mid]="#F4B8E4" -theme[cached_end]="#CA9EE6" -theme[available_start]="#F2D5CF" -theme[available_mid]="#EEBEBE" -theme[available_end]="#EEBEBE" -theme[used_start]="#EF9F76" -theme[used_mid]="#EF9F76" -theme[used_end]="#E78284" -theme[download_start]="#BABBF1" -theme[download_mid]="#BABBF1" -theme[download_end]="#CA9EE6" -theme[upload_start]="#BABBF1" -theme[upload_mid]="#BABBF1" -theme[upload_end]="#CA9EE6" -theme[process_start]="#85C1DC" -theme[process_mid]="#99D1DB" -theme[process_end]="#81C8BE" +# 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"