From aedf31676a9d67f91b67eb29d8030227740f6068 Mon Sep 17 00:00:00 2001 From: Gabb-c Date: Tue, 10 Aug 2021 01:10:46 -0300 Subject: [PATCH 1/8] feat(themes): add dracula-night theme file --- themes/dracula-night.theme | 91 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 themes/dracula-night.theme diff --git a/themes/dracula-night.theme b/themes/dracula-night.theme new file mode 100644 index 0000000..4c90642 --- /dev/null +++ b/themes/dracula-night.theme @@ -0,0 +1,91 @@ +# Color palette - https://draculatheme.com/contribute + +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="#282a36" + +# Main text color +theme[main_fg]="#BD93F9" + +# 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]="#BD93F9" + +# Cpu box outline color +theme[cpu_box]="#bd93f9" + +# Memory/disks box outline color +theme[mem_box]="#BD93F9" + +# Net up/down box outline color +theme[net_box]="#BD93F9" + +# Processes box outline color +theme[proc_box]="#BD93F9" + +# Box divider line and small boxes line color +theme[div_line]="#BD93F9" + +# 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]="#50fa7b" +theme[process_mid]="#f1fa8c" +theme[process_end]="#ff5555" \ No newline at end of file From 877296835a9e817ee06f0c181ea224c5bad3d9f6 Mon Sep 17 00:00:00 2001 From: Gabb-c Date: Tue, 10 Aug 2021 18:45:59 -0300 Subject: [PATCH 2/8] feat(themes): add Van Helsing theme --- themes/van-helsing.theme | 91 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 themes/van-helsing.theme diff --git a/themes/van-helsing.theme b/themes/van-helsing.theme new file mode 100644 index 0000000..bff5985 --- /dev/null +++ b/themes/van-helsing.theme @@ -0,0 +1,91 @@ +# Color palette - https://draculatheme.com/contribute + +# Main background, empty for terminal default, need to be empty if you want transparent background (default #282a36) +theme[main_bg]="#282a36" + +# Main text color +theme[main_fg]="#8be9fd" + +# Title color for boxes +theme[title]="#f8f8f2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8be9fd" + +# Background color of selected item in processes box +theme[selected_bg]="#44475a" + +# Foreground color of selected item in processes box +theme[selected_fg]="#50fa7b" + +# 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]="#8be9fd" + +# Memory/disks box outline color +theme[mem_box]="#8be9fd" + +# Net up/down box outline color +theme[net_box]="#8be9fd" + +# Processes box outline color +theme[proc_box]="#8be9fd" + +# Box divider line and small boxes line color +theme[div_line]="#8be9fd" + +# Temperature graph colors +theme[temp_start]="#50fa7b" +theme[temp_mid]="#8be9fd" +theme[temp_end]="#f8f8f2" + +# CPU graph colors +theme[cpu_start]="#50fa7b" +theme[cpu_mid]="#8be9fd" +theme[cpu_end]="#f8f8f2" + +# Mem/Disk free meter +theme[free_start]="#f8f8f2" +theme[free_mid]="#8be9fd" +theme[free_end]="#50fa7b" + +# Mem/Disk cached meter +theme[cached_start]="#50fa7b" +theme[cached_mid]="#8be9fd" +theme[cached_end]="#f8f8f2" + +# Mem/Disk available meter +theme[available_start]="#f8f8f2" +theme[available_mid]="#8be9fd" +theme[available_end]="#50fa7b" + +# Mem/Disk used meter +theme[used_start]="#50fa7b" +theme[used_mid]="#8be9fd" +theme[used_end]="#f8f8f2" + +# Download graph colors +theme[download_start]="#f8f8f2" +theme[download_mid]="#8be9fd" +theme[download_end]="#50fa7b" + +# Upload graph colors +theme[upload_start]="#f8f8f2" +theme[upload_mid]="#8be9fd" +theme[upload_end]="#50fa7b" + +# Process box color gradient for threads, mem and cpu usage +theme[process_start]="#50fa7b" +theme[process_mid]="#50fa7b" +theme[process_end]="#50fa7b" \ No newline at end of file From d57ee5a85a5d2c9760ce332febc56ae0714cc00f Mon Sep 17 00:00:00 2001 From: Gabb-c Date: Tue, 10 Aug 2021 23:29:15 -0300 Subject: [PATCH 3/8] 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 From 827fa4028d3c93354d76cd28dbe2400259d7dae3 Mon Sep 17 00:00:00 2001 From: Gabb-c Date: Wed, 11 Aug 2021 00:44:41 -0300 Subject: [PATCH 4/8] fix(themes): bg color --- themes/blade.theme | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/themes/blade.theme b/themes/blade.theme index 6553192..0eca9ec 100644 --- a/themes/blade.theme +++ b/themes/blade.theme @@ -1,5 +1,7 @@ +# Color palette - https://draculatheme.com/contribute + # Main background, empty for terminal default, need to be empty if you want transparent background (default #282a36) -theme[main_bg]="" +theme[main_bg]="#282a36" # Main text color theme[main_fg]="#50fa7b" From 713d60f8eadfcfb91f92bdc9eb1d67eab66b48e5 Mon Sep 17 00:00:00 2001 From: Gabb-c Date: Wed, 11 Aug 2021 12:48:24 -0300 Subject: [PATCH 5/8] feat(themes): add dracula buffy theme --- themes/blade.theme | 1 + themes/buffy.theme | 92 ++++++++++++++++++++++++++++++++++++++ themes/dracula-night.theme | 1 + themes/van-helsing.theme | 1 + 4 files changed, 95 insertions(+) create mode 100644 themes/buffy.theme diff --git a/themes/blade.theme b/themes/blade.theme index 0eca9ec..03df4d2 100644 --- a/themes/blade.theme +++ b/themes/blade.theme @@ -1,4 +1,5 @@ # Color palette - https://draculatheme.com/contribute +# Created by - https://github.com/Gabb-c # Main background, empty for terminal default, need to be empty if you want transparent background (default #282a36) theme[main_bg]="#282a36" diff --git a/themes/buffy.theme b/themes/buffy.theme new file mode 100644 index 0000000..0d805cd --- /dev/null +++ b/themes/buffy.theme @@ -0,0 +1,92 @@ +# Color palette - https://draculatheme.com/contribute +# Created by - https://github.com/Gabb-c + +# Main background, empty for terminal default, need to be empty if you want transparent background (default #282a36) +theme[main_bg]="#282a36" + +# Main text color +theme[main_fg]="#ff79c6" + +# Title color for boxes +theme[title]="#f8f8f2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8be9fd" + +# 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]="#ff79c6" + +# Cpu box outline color +theme[cpu_box]="#ff79c6" + +# Memory/disks box outline color +theme[mem_box]="#ff79c6" + +# Net up/down box outline color +theme[net_box]="#ff79c6" + +# Processes box outline color +theme[proc_box]="#ff79c6" + +# Box divider line and small boxes line color +theme[div_line]="#ff79c6" + +# Temperature graph colors +theme[temp_start]="#50fa7b" +theme[temp_mid]="#f1fa8c" +theme[temp_end]="#ff79c6" + +# CPU graph colors +theme[cpu_start]="#50fa7b" +theme[cpu_mid]="#f1fa8c" +theme[cpu_end]="#ff79c6" + +# Mem/Disk free meter +theme[free_start]="#ffffff" +theme[free_mid]="#FFACDC" +theme[free_end]="#ff79c6" + +# Mem/Disk cached meter +theme[cached_start]="#ff79c6" +theme[cached_mid]="#FFACDC" +theme[cached_end]="#ffffff" + +# Mem/Disk available meter +theme[available_start]="#ffffff" +theme[available_mid]="#FFACDC" +theme[available_end]="#ff79c6" + +# Mem/Disk used meter +theme[used_start]="#ff79c6" +theme[used_mid]="#FFACDC" +theme[used_end]="#ffffff" + +# Download graph colors +theme[download_start]="#50fa7b" +theme[download_mid]="#f1fa8c" +theme[download_end]="#ff79c6" + +# Upload graph colors +theme[upload_start]="#50fa7b" +theme[upload_mid]="#f1fa8c" +theme[upload_end]="#ff79c6" + +# Process box color gradient for threads, mem and cpu usage +theme[process_start]="#50fa7b" +theme[process_mid]="#f1fa8c" +theme[process_end]="#ff5555" \ No newline at end of file diff --git a/themes/dracula-night.theme b/themes/dracula-night.theme index 4c90642..d018860 100644 --- a/themes/dracula-night.theme +++ b/themes/dracula-night.theme @@ -1,4 +1,5 @@ # Color palette - https://draculatheme.com/contribute +# Created by - https://github.com/Gabb-c # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#282a36" diff --git a/themes/van-helsing.theme b/themes/van-helsing.theme index bff5985..dd07348 100644 --- a/themes/van-helsing.theme +++ b/themes/van-helsing.theme @@ -1,4 +1,5 @@ # Color palette - https://draculatheme.com/contribute +# Created by - https://github.com/Gabb-c # Main background, empty for terminal default, need to be empty if you want transparent background (default #282a36) theme[main_bg]="#282a36" From d369ef9db1f83d752e8fafb01fbcc17b6e596726 Mon Sep 17 00:00:00 2001 From: Gabb-c Date: Wed, 11 Aug 2021 13:06:28 -0300 Subject: [PATCH 6/8] fix(themes): van-helsing gradient --- themes/van-helsing.theme | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/themes/van-helsing.theme b/themes/van-helsing.theme index dd07348..65b0106 100644 --- a/themes/van-helsing.theme +++ b/themes/van-helsing.theme @@ -77,14 +77,14 @@ theme[used_mid]="#8be9fd" theme[used_end]="#f8f8f2" # Download graph colors -theme[download_start]="#f8f8f2" +theme[download_start]="#50fa7b" theme[download_mid]="#8be9fd" -theme[download_end]="#50fa7b" +theme[download_end]="#f8f8f2" # Upload graph colors -theme[upload_start]="#f8f8f2" +theme[upload_start]="#50fa7b" theme[upload_mid]="#8be9fd" -theme[upload_end]="#50fa7b" +theme[upload_end]="#f8f8f2" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#50fa7b" From 8e398f66f9036588df319c6838b7f39fae6b7f3d Mon Sep 17 00:00:00 2001 From: Gabb-c Date: Wed, 11 Aug 2021 13:07:32 -0300 Subject: [PATCH 7/8] fix(themes): buffy white color --- themes/buffy.theme | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/themes/buffy.theme b/themes/buffy.theme index 0d805cd..70569bf 100644 --- a/themes/buffy.theme +++ b/themes/buffy.theme @@ -57,24 +57,24 @@ theme[cpu_mid]="#f1fa8c" theme[cpu_end]="#ff79c6" # Mem/Disk free meter -theme[free_start]="#ffffff" +theme[free_start]="#f8f8f2" theme[free_mid]="#FFACDC" theme[free_end]="#ff79c6" # Mem/Disk cached meter theme[cached_start]="#ff79c6" theme[cached_mid]="#FFACDC" -theme[cached_end]="#ffffff" +theme[cached_end]="#f8f8f2" # Mem/Disk available meter -theme[available_start]="#ffffff" +theme[available_start]="#f8f8f2" theme[available_mid]="#FFACDC" theme[available_end]="#ff79c6" # Mem/Disk used meter theme[used_start]="#ff79c6" theme[used_mid]="#FFACDC" -theme[used_end]="#ffffff" +theme[used_end]="#f8f8f2" # Download graph colors theme[download_start]="#50fa7b" From dd4c0330406d402fa18f55b53dcfdcffc605b9d5 Mon Sep 17 00:00:00 2001 From: Gabb-c Date: Tue, 17 Aug 2021 21:38:45 -0300 Subject: [PATCH 8/8] fix(themes): add missing new line --- themes/blade.theme | 2 +- themes/buffy.theme | 2 +- themes/dracula-night.theme | 2 +- themes/van-helsing.theme | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/themes/blade.theme b/themes/blade.theme index 03df4d2..6ef6f20 100644 --- a/themes/blade.theme +++ b/themes/blade.theme @@ -89,4 +89,4 @@ 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 +theme[process_end]="#BD93F9" diff --git a/themes/buffy.theme b/themes/buffy.theme index 70569bf..97cce64 100644 --- a/themes/buffy.theme +++ b/themes/buffy.theme @@ -89,4 +89,4 @@ theme[upload_end]="#ff79c6" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#50fa7b" theme[process_mid]="#f1fa8c" -theme[process_end]="#ff5555" \ No newline at end of file +theme[process_end]="#ff5555" diff --git a/themes/dracula-night.theme b/themes/dracula-night.theme index d018860..f60ade1 100644 --- a/themes/dracula-night.theme +++ b/themes/dracula-night.theme @@ -89,4 +89,4 @@ theme[upload_end]="#ff5555" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#50fa7b" theme[process_mid]="#f1fa8c" -theme[process_end]="#ff5555" \ No newline at end of file +theme[process_end]="#ff5555" diff --git a/themes/van-helsing.theme b/themes/van-helsing.theme index 65b0106..874afef 100644 --- a/themes/van-helsing.theme +++ b/themes/van-helsing.theme @@ -89,4 +89,4 @@ theme[upload_end]="#f8f8f2" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#50fa7b" theme[process_mid]="#50fa7b" -theme[process_end]="#50fa7b" \ No newline at end of file +theme[process_end]="#50fa7b"