From d57ee5a85a5d2c9760ce332febc56ae0714cc00f Mon Sep 17 00:00:00 2001 From: Gabb-c Date: Tue, 10 Aug 2021 23:29:15 -0300 Subject: [PATCH] feat(themes): add dracula blade theme --- themes/blade.theme | 89 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 themes/blade.theme diff --git a/themes/blade.theme b/themes/blade.theme new file mode 100644 index 0000000..6553192 --- /dev/null +++ b/themes/blade.theme @@ -0,0 +1,89 @@ +# Main background, empty for terminal default, need to be empty if you want transparent background (default #282a36) +theme[main_bg]="" + +# Main text color +theme[main_fg]="#50fa7b" + +# Title color for boxes +theme[title]="#f8f8f2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#ff79c6" + +# Background color of selected item in processes box +theme[selected_bg]="#44475A" + +# Foreground color of selected item in processes box +theme[selected_fg]="#8be9fd" + +# Color of inactive/disabled text +theme[inactive_fg]="#6272a4" + +# Color of text appearing on top of graphs, i.e uptime and current network graph scaling +theme[graph_text]="#f8f8f2" + +# Background color of the percentage meters +theme[meter_bg]="#44475a" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#50fa7b" + +# Cpu box outline color +theme[cpu_box]="#50fa7b" + +# Memory/disks box outline color +theme[mem_box]="#50fa7b" + +# Net up/down box outline color +theme[net_box]="#50fa7b" + +# Processes box outline color +theme[proc_box]="#50fa7b" + +# Box divider line and small boxes line color +theme[div_line]="#50fa7b" + +# Temperature graph colors +theme[temp_start]="#50fa7b" +theme[temp_mid]="#f1fa8c" +theme[temp_end]="#ff5555" + +# CPU graph colors +theme[cpu_start]="#50fa7b" +theme[cpu_mid]="#f1fa8c" +theme[cpu_end]="#ff5555" + +# Mem/Disk free meter +theme[free_start]="#ff5555" +theme[free_mid]="#f1fa8c" +theme[free_end]="#50fa7b" + +# Mem/Disk cached meter +theme[cached_start]="#50fa7b" +theme[cached_mid]="#f1fa8c" +theme[cached_end]="#ff5555" + +# Mem/Disk available meter +theme[available_start]="#ff5555" +theme[available_mid]="#f1fa8c" +theme[available_end]="#50fa7b" + +# Mem/Disk used meter +theme[used_start]="#50fa7b" +theme[used_mid]="#f1fa8c" +theme[used_end]="#ff5555" + +# Download graph colors +theme[download_start]="#50fa7b" +theme[download_mid]="#f1fa8c" +theme[download_end]="#ff5555" + +# Upload graph colors +theme[upload_start]="#50fa7b" +theme[upload_mid]="#f1fa8c" +theme[upload_end]="#ff5555" + +# Process box color gradient for threads, mem and cpu usage +theme[process_start]="#8be9fd" +theme[process_mid]="#50fa7b" +theme[process_end]="#BD93F9" \ No newline at end of file