diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-10-30 19:01:51 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-10-30 19:01:51 +0100 |
| commit | 8350aa04f51882f11bd40a51eacd4a0c47bafc02 (patch) | |
| tree | 69e94b2e26ca370108c476eade15150c34b307d1 /config/btop/themes | |
| parent | 1cb7eb48c4e81626d3df6736fd0e2a866674def5 (diff) | |
| parent | 2b09251962f4b80eeee1c6e11bde8d29536915e6 (diff) | |
Merge branch 'main' of git.sr.ht:~rbdr/dotfiles
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" |