diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-10-20 22:21:34 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-10-20 22:21:34 +0200 |
| commit | 5592ea0256cf0739c671a0f477684e7a6a847990 (patch) | |
| tree | d34c3b3ed652f05ac0c373e02c7fa7bc996e1252 /config/btop/themes | |
| parent | 34eb520236eeeb4eb5417c184541bfb9d0d5efee (diff) | |
Light mode color improvement
Diffstat (limited to 'config/btop/themes')
| -rw-r--r-- | config/btop/themes/tranquil-light.theme | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/config/btop/themes/tranquil-light.theme b/config/btop/themes/tranquil-light.theme new file mode 100644 index 0000000..60c5b1c --- /dev/null +++ b/config/btop/themes/tranquil-light.theme @@ -0,0 +1,124 @@ +#Bashtop "tranquil-light" theme +#by rbdr + +# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" +# example for white: "#FFFFFF", "#ff" or "255 255 255". + +# All graphs and meters can be gradients +# For single color graphs leave "mid" and "end" variable empty. +# Use "start" and "end" variables for two color gradient +# Use "start", "mid" and "end" for three color gradient + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="" + +# Main text color +# Deep Slate Green +theme[main_fg]="#0F261F" + +# Title color for boxes +# rbdr Blue +theme[title]="#0000F1" + +# Highlight color for keyboard shortcuts +# Eosine Pink +theme[hi_fg]="#FF5EC4" + +# Background color of selected item in processes box +# Light Porcelain Green +theme[selected_bg]="#23C17C" + +# Foreground color of selected item in processes box +# Light Porcelain Green +theme[selected_fg]="#FFFFFF" + +# Color of inactive/disabled text +# Dark Neutral Gray +theme[inactive_fg]="#90A6A2" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#FF00FF" + +# Cpu box outline color +# Deep Slate Green +theme[cpu_box]="#0F261F" + +# Memory/disks box outline color +# Deep Slate Green +theme[mem_box]="#0F261F" + +# Net up/down box outline color +# Deep Slate Green +theme[net_box]="#0F261F" + +# Processes box outline color +# Deep Slate Green +theme[proc_box]="#0F261F" + +# Box divider line and small boxes line color +# Deep Slate Green +theme[div_line]="#0F261F" + +# Temperature graph colors +# Light Porcelain Green +theme[temp_start]="#23C17C" +# Golden Yellow +theme[temp_mid]="#FFAB00" +# Jasper Red +theme[temp_end]="#FA2B00" + +# CPU graph colors +# Light Porcelain Green +theme[cpu_start]="#23C17C" +# Golden Yellow +theme[cpu_mid]="#FFAB00" +# Jasper Red +theme[cpu_end]="#FA2B00" + +# Mem/Disk free meter +# Light Porcelain Green +theme[free_start]="#23C17C" +# Golden Yellow +theme[free_mid]="#FFAB00" +# Jasper Red +theme[free_end]="#FA2B00" + +# Mem/Disk cached meter +# Light Porcelain Green +theme[cached_start]="#23C17C" +# Golden Yellow +theme[cached_mid]="#FFAB00" +# Jasper Red +theme[cached_end]="#FA2B00" + +# Mem/Disk available meter +# Light Porcelain Green +theme[available_start]="#23C17C" +# Golden Yellow +theme[available_mid]="#FFAB00" +# Jasper Red +theme[available_end]="#FA2B00" + +# Mem/Disk used meter +# Light Porcelain Green +theme[used_start]="#23C17C" +# Golden Yellow +theme[used_mid]="#FFAB00" +# Jasper Red +theme[used_end]="#FA2B00" + +# Download graph colors +# Light Porcelain Green +theme[download_start]="#23C17C" +# Golden Yellow +theme[download_mid]="#FFAB00" +# Jasper Red +theme[download_end]="#FA2B00" + +# Upload graph colors +# Light Porcelain Green +theme[upload_start]="#23C17C" +# Golden Yellow +theme[upload_mid]="#FFAB00" +# Jasper Red +theme[upload_end]="#FA2B00" |