diff options
279 files changed, 24677 insertions, 0 deletions
@@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Aleksey Stepanov + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..ef140b2 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# base16-btop + +<!-- markdownlint-disable MD013 --> + +This repo provides templates for using [Base16](https://github.com/tinted-theming/home) color schemes with [btop](https://github.com/aristocratos/btop), a monitor of resources. + +All files in `colors` directory generated by [lustache](https://luarocks.org/modules/olivine-labs/lustache) and [lustache-cli](https://github.com/djmattyg007/lustache-cli). + +## Examples + +### base16-onedark + + + +### base16-google-light + + + +## Usage + +You can find an example config in `examples/onedark.theme`. + +> User created themes should be placed in $XDG_CONFIG_HOME/btop/themes or $HOME/.config/btop/themes. + +[Read More](https://github.com/aristocratos/btop?tab=readme-ov-file#themes) + +## License + +MIT diff --git a/builder.sh b/builder.sh new file mode 100755 index 0000000..dcaa271 --- /dev/null +++ b/builder.sh @@ -0,0 +1,145 @@ +#!/bin/bash + +declare -g configFile="./templates/config.yaml" +declare -g fileName +declare -g headFileTemplate="./templates/head.mustache" +declare -g headJson +declare -g bodyFileTemplate="./templates/body.mustache" +declare -g bodyJson +declare -g tmpBodyJson + +declare -g schemesPath="$HOME/projects/schemes/base16/" +declare -g schemeSystem +declare -g schemeSlug +declare -g schemeSlugUnderscored +declare -g schemeName +declare -g schemeAuthor +declare -g schemeVariant + +declare -g tokenHex +declare -g tokenBgr +declare -g tokenHexR +declare -g tokenHexG +declare -g tokenHexB +declare -g tokenRgbR +declare -g tokenRgbG +declare -g tokenRgbB +declare -g tokenRgb16R +declare -g tokenRgb16G +declare -g tokenRgb16B +declare -g tokenDecR +declare -g tokenDecG +declare -g tokenDecB + +readarray -t schemesFiles < <(find "$schemesPath" -type f -iname '*.yaml') +readarray -t necessaryTokensPaletteList < <(grep -oP '\{\{\K[^}]+(?=\}\})' "$bodyFileTemplate" | awk -F'-' '{print $1}' | sort -u) + +function getProperty() { + yq -oy "$schemeFile" | yq -o=json -r ".$1" +} + +function createFile() { + # Extract filename entry from config + yq '.default.filename' "$configFile" >"/tmp/filename-base16-nwg-dock.txt" + + fileName=$(lustache-cli -i "/tmp/filename-base16-nwg-dock.txt" --json-data "$headJson") + + if [[ -e ./"$fileName" ]]; then + return + else + touch ./"$fileName" + fi +} + +for schemeFile in "${schemesFiles[@]}"; do + schemeName=$(getProperty "name") + schemeAuthor=$(getProperty "author") + schemeSlug=$(basename "$schemeFile" .yaml) + schemeSlugUnderscored="${schemeSlug//-/_}" + schemeSystem=$(yq '.default.supported-systems[0]' "$configFile") + schemeVariant=$(getProperty "variant") + + headJson=$( + jq \ + --null-input \ + --arg schemeName "$schemeName" \ + --arg schemeAuthor "$schemeAuthor" \ + --arg schemeSlug "$schemeSlug" \ + --arg schemeSlugUnderscored "$schemeSlugUnderscored" \ + --arg schemeSystem "$schemeSystem" \ + --arg schemeVariant "$schemeVariant" \ + '{ + "scheme-name": $schemeName, + "scheme-author": $schemeAuthor, + "scheme-slug": $schemeSlug, + "scheme-slug-underscored": $schemeSlugUnderscored, + "scheme-system": $schemeSystem, + "scheme-variant": $schemeVariant, + "hasVariant": (if $schemeVariant != "" then "true" else "false" end) + }' + ) + + for tokenName in "${necessaryTokensPaletteList[@]}"; do + tokenHex=$(yq -oy "$schemeFile" | yq -o=json -r ".palette.$tokenName") + tokenBgr=$(echo "$tokenHex" | rev) + tokenHexR=${tokenHex:0:2} + tokenHexG=${tokenHex:2:2} + tokenHexB=${tokenHex: -2} + tokenRgbR=$((16#$tokenHexR)) + tokenRgbG=$((16#$tokenHexG)) + tokenRgbB=$((16#$tokenHexB)) + tokenRgb16R=$(echo "($tokenRgbR / 255) * 65535" | bc -l | awk '{print int($1)}') + tokenRgb16G=$(echo "($tokenRgbG / 255) * 65535" | bc -l | awk '{print int($1)}') + tokenRgb16B=$(echo "($tokenRgbB / 255) * 65535" | bc -l | awk '{print int($1)}') + tokenDecR=$(echo "scale=4; $tokenRgbR / 255" | bc) + tokenDecG=$(echo "scale=4; $tokenRgbG / 255" | bc) + tokenDecB=$(echo "scale=4; $tokenRgbB / 255" | bc) + + tmpBodyJson=$( + jq \ + --null-input \ + --arg tokenName "$tokenName" \ + --arg tokenHex "$tokenHex" \ + --arg tokenBgr "$tokenBgr" \ + --arg tokenHexR "$tokenHexR" \ + --arg tokenHexG "$tokenHexG" \ + --arg tokenHexB "$tokenHexB" \ + --arg tokenRgbR "$tokenRgbR" \ + --arg tokenRgbG "$tokenRgbG" \ + --arg tokenRgbB "$tokenRgbB" \ + --arg tokenRgb16R "$tokenRgb16R" \ + --arg tokenRgb16G "$tokenRgb16G" \ + --arg tokenRgb16B "$tokenRgb16B" \ + --arg tokenDecR "$tokenDecR" \ + --arg tokenDecG "$tokenDecG" \ + --arg tokenDecB "$tokenDecB" \ + '{ + ($tokenName + "-hex"): $tokenHex, + ($tokenName + "-bgr"): $tokenBgr, + ($tokenName + "-hex-r"): $tokenHexR, + ($tokenName + "-hex-g"): $tokenHexG, + ($tokenName + "-hex-b"): $tokenHexB, + ($tokenName + "-rgb-r"): $tokenRgbR, + ($tokenName + "-rgb-g"): $tokenRgbG, + ($tokenName + "-rgb-b"): $tokenRgbB, + ($tokenName + "-rgb16-r"): $tokenRgb16R, + ($tokenName + "-rgb16-g"): $tokenRgb16G, + ($tokenName + "-rgb16-b"): $tokenRgb16B, + ($tokenName + "-dec-r"): $tokenDecR, + ($tokenName + "-dec-g"): $tokenDecG, + ($tokenName + "-dec-b"): $tokenDecB + }' + ) + + bodyJson=$(echo "$bodyJson" "$tmpBodyJson" | jq -s 'add') + done + + createFile + + lustache-cli -i "$headFileTemplate" --json-data "$headJson" >./"$fileName" + + echo >>./"$fileName" + + lustache-cli -i "$bodyFileTemplate" --json-data "$bodyJson" >>./"$fileName" + +done diff --git a/colors/base16-3024.theme b/colors/base16-3024.theme new file mode 100644 index 0000000..b73f5aa --- /dev/null +++ b/colors/base16-3024.theme @@ -0,0 +1,90 @@ +# +# +# name: 3024 +# author: Jan T. Sott (http://github.com/idleberg) +# slug: 3024 +# slug-underscored: 3024 +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#090300" + +# Main text color +theme[main_fg]="#a5a2a2" + +# Title color for boxes +theme[title]="#a5a2a2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#01a0e4" + +# Background color of selected item in processes box +theme[selected_bg]="#3a3432" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a5a2a2" + +# Color of inactive/disabled text +theme[inactive_fg]="#807d7c" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#01a0e4" + +# Cpu box outline color +theme[cpu_box]="#807d7c" + +# Memory/disks box outline color +theme[mem_box]="#807d7c" + +# Net up/down box outline color +theme[net_box]="#807d7c" + +# Processes box outline color +theme[proc_box]="#807d7c" + +# Box divider line and small boxes line color +theme[div_line]="#807d7c" + +# Temperature graph colors +theme[temp_start]="#01a252" +theme[temp_mid]="#fded02" +theme[temp_end]="#db2d20" + +# CPU graph colors +theme[cpu_start]="#01a252" +theme[cpu_mid]="#fded02" +theme[cpu_end]="#db2d20" + +# Mem/Disk free meter +theme[free_start]="#01a252" +theme[free_mid]="#fded02" +theme[free_end]="#db2d20" + +# Mem/Disk cached meter +theme[cached_start]="#01a252" +theme[cached_mid]="#fded02" +theme[cached_end]="#db2d20" + +# Mem/Disk available meter +theme[available_start]="#01a252" +theme[available_mid]="#fded02" +theme[available_end]="#db2d20" + +# Mem/Disk used meter +theme[used_start]="#01a252" +theme[used_mid]="#fded02" +theme[used_end]="#db2d20" + +# Download graph colors +theme[download_start]="#01a252" +theme[download_mid]="#fded02" +theme[download_end]="#db2d20" + +# Upload graph colors +theme[upload_start]="#01a252" +theme[upload_mid]="#fded02" +theme[upload_end]="#db2d20" diff --git a/colors/base16-apathy.theme b/colors/base16-apathy.theme new file mode 100644 index 0000000..3e87088 --- /dev/null +++ b/colors/base16-apathy.theme @@ -0,0 +1,90 @@ +# +# +# name: Apathy +# author: Jannik Siebert (https://github.com/janniks) +# slug: apathy +# slug-underscored: apathy +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#031A16" + +# Main text color +theme[main_fg]="#81B5AC" + +# Title color for boxes +theme[title]="#81B5AC" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#96883E" + +# Background color of selected item in processes box +theme[selected_bg]="#0B342D" + +# Foreground color of selected item in processes box +theme[selected_fg]="#81B5AC" + +# Color of inactive/disabled text +theme[inactive_fg]="#5F9C92" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#96883E" + +# Cpu box outline color +theme[cpu_box]="#5F9C92" + +# Memory/disks box outline color +theme[mem_box]="#5F9C92" + +# Net up/down box outline color +theme[net_box]="#5F9C92" + +# Processes box outline color +theme[proc_box]="#5F9C92" + +# Box divider line and small boxes line color +theme[div_line]="#5F9C92" + +# Temperature graph colors +theme[temp_start]="#883E96" +theme[temp_mid]="#3E4C96" +theme[temp_end]="#3E9688" + +# CPU graph colors +theme[cpu_start]="#883E96" +theme[cpu_mid]="#3E4C96" +theme[cpu_end]="#3E9688" + +# Mem/Disk free meter +theme[free_start]="#883E96" +theme[free_mid]="#3E4C96" +theme[free_end]="#3E9688" + +# Mem/Disk cached meter +theme[cached_start]="#883E96" +theme[cached_mid]="#3E4C96" +theme[cached_end]="#3E9688" + +# Mem/Disk available meter +theme[available_start]="#883E96" +theme[available_mid]="#3E4C96" +theme[available_end]="#3E9688" + +# Mem/Disk used meter +theme[used_start]="#883E96" +theme[used_mid]="#3E4C96" +theme[used_end]="#3E9688" + +# Download graph colors +theme[download_start]="#883E96" +theme[download_mid]="#3E4C96" +theme[download_end]="#3E9688" + +# Upload graph colors +theme[upload_start]="#883E96" +theme[upload_mid]="#3E4C96" +theme[upload_end]="#3E9688" diff --git a/colors/base16-apprentice.theme b/colors/base16-apprentice.theme new file mode 100644 index 0000000..38f9598 --- /dev/null +++ b/colors/base16-apprentice.theme @@ -0,0 +1,90 @@ +# +# +# name: Apprentice +# author: romainl +# slug: apprentice +# slug-underscored: apprentice +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#262626" + +# Main text color +theme[main_fg]="#5F5F87" + +# Title color for boxes +theme[title]="#5F5F87" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8787AF" + +# Background color of selected item in processes box +theme[selected_bg]="#AF5F5F" + +# Foreground color of selected item in processes box +theme[selected_fg]="#5F5F87" + +# Color of inactive/disabled text +theme[inactive_fg]="#5F87AF" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8787AF" + +# Cpu box outline color +theme[cpu_box]="#5F87AF" + +# Memory/disks box outline color +theme[mem_box]="#5F87AF" + +# Net up/down box outline color +theme[net_box]="#5F87AF" + +# Processes box outline color +theme[proc_box]="#5F87AF" + +# Box divider line and small boxes line color +theme[div_line]="#5F87AF" + +# Temperature graph colors +theme[temp_start]="#FFFFAF" +theme[temp_mid]="#87AF87" +theme[temp_end]="#444444" + +# CPU graph colors +theme[cpu_start]="#FFFFAF" +theme[cpu_mid]="#87AF87" +theme[cpu_end]="#444444" + +# Mem/Disk free meter +theme[free_start]="#FFFFAF" +theme[free_mid]="#87AF87" +theme[free_end]="#444444" + +# Mem/Disk cached meter +theme[cached_start]="#FFFFAF" +theme[cached_mid]="#87AF87" +theme[cached_end]="#444444" + +# Mem/Disk available meter +theme[available_start]="#FFFFAF" +theme[available_mid]="#87AF87" +theme[available_end]="#444444" + +# Mem/Disk used meter +theme[used_start]="#FFFFAF" +theme[used_mid]="#87AF87" +theme[used_end]="#444444" + +# Download graph colors +theme[download_start]="#FFFFAF" +theme[download_mid]="#87AF87" +theme[download_end]="#444444" + +# Upload graph colors +theme[upload_start]="#FFFFAF" +theme[upload_mid]="#87AF87" +theme[upload_end]="#444444" diff --git a/colors/base16-ashes.theme b/colors/base16-ashes.theme new file mode 100644 index 0000000..fc00e08 --- /dev/null +++ b/colors/base16-ashes.theme @@ -0,0 +1,90 @@ +# +# +# name: Ashes +# author: Jannik Siebert (https://github.com/janniks) +# slug: ashes +# slug-underscored: ashes +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1C2023" + +# Main text color +theme[main_fg]="#C7CCD1" + +# Title color for boxes +theme[title]="#C7CCD1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#AE95C7" + +# Background color of selected item in processes box +theme[selected_bg]="#393F45" + +# Foreground color of selected item in processes box +theme[selected_fg]="#C7CCD1" + +# Color of inactive/disabled text +theme[inactive_fg]="#ADB3BA" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#AE95C7" + +# Cpu box outline color +theme[cpu_box]="#ADB3BA" + +# Memory/disks box outline color +theme[mem_box]="#ADB3BA" + +# Net up/down box outline color +theme[net_box]="#ADB3BA" + +# Processes box outline color +theme[proc_box]="#ADB3BA" + +# Box divider line and small boxes line color +theme[div_line]="#ADB3BA" + +# Temperature graph colors +theme[temp_start]="#95C7AE" +theme[temp_mid]="#AEC795" +theme[temp_end]="#C7AE95" + +# CPU graph colors +theme[cpu_start]="#95C7AE" +theme[cpu_mid]="#AEC795" +theme[cpu_end]="#C7AE95" + +# Mem/Disk free meter +theme[free_start]="#95C7AE" +theme[free_mid]="#AEC795" +theme[free_end]="#C7AE95" + +# Mem/Disk cached meter +theme[cached_start]="#95C7AE" +theme[cached_mid]="#AEC795" +theme[cached_end]="#C7AE95" + +# Mem/Disk available meter +theme[available_start]="#95C7AE" +theme[available_mid]="#AEC795" +theme[available_end]="#C7AE95" + +# Mem/Disk used meter +theme[used_start]="#95C7AE" +theme[used_mid]="#AEC795" +theme[used_end]="#C7AE95" + +# Download graph colors +theme[download_start]="#95C7AE" +theme[download_mid]="#AEC795" +theme[download_end]="#C7AE95" + +# Upload graph colors +theme[upload_start]="#95C7AE" +theme[upload_mid]="#AEC795" +theme[upload_end]="#C7AE95" diff --git a/colors/base16-atelier-cave-light.theme b/colors/base16-atelier-cave-light.theme new file mode 100644 index 0000000..396b05e --- /dev/null +++ b/colors/base16-atelier-cave-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Cave Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-cave-light +# slug-underscored: atelier_cave_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#efecf4" + +# Main text color +theme[main_fg]="#585260" + +# Title color for boxes +theme[title]="#585260" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#576ddb" + +# Background color of selected item in processes box +theme[selected_bg]="#e2dfe7" + +# Foreground color of selected item in processes box +theme[selected_fg]="#585260" + +# Color of inactive/disabled text +theme[inactive_fg]="#655f6d" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#576ddb" + +# Cpu box outline color +theme[cpu_box]="#655f6d" + +# Memory/disks box outline color +theme[mem_box]="#655f6d" + +# Net up/down box outline color +theme[net_box]="#655f6d" + +# Processes box outline color +theme[proc_box]="#655f6d" + +# Box divider line and small boxes line color +theme[div_line]="#655f6d" + +# Temperature graph colors +theme[temp_start]="#2a9292" +theme[temp_mid]="#a06e3b" +theme[temp_end]="#be4678" + +# CPU graph colors +theme[cpu_start]="#2a9292" +theme[cpu_mid]="#a06e3b" +theme[cpu_end]="#be4678" + +# Mem/Disk free meter +theme[free_start]="#2a9292" +theme[free_mid]="#a06e3b" +theme[free_end]="#be4678" + +# Mem/Disk cached meter +theme[cached_start]="#2a9292" +theme[cached_mid]="#a06e3b" +theme[cached_end]="#be4678" + +# Mem/Disk available meter +theme[available_start]="#2a9292" +theme[available_mid]="#a06e3b" +theme[available_end]="#be4678" + +# Mem/Disk used meter +theme[used_start]="#2a9292" +theme[used_mid]="#a06e3b" +theme[used_end]="#be4678" + +# Download graph colors +theme[download_start]="#2a9292" +theme[download_mid]="#a06e3b" +theme[download_end]="#be4678" + +# Upload graph colors +theme[upload_start]="#2a9292" +theme[upload_mid]="#a06e3b" +theme[upload_end]="#be4678" diff --git a/colors/base16-atelier-cave.theme b/colors/base16-atelier-cave.theme new file mode 100644 index 0000000..d6ae588 --- /dev/null +++ b/colors/base16-atelier-cave.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Cave +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-cave +# slug-underscored: atelier_cave +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#19171c" + +# Main text color +theme[main_fg]="#8b8792" + +# Title color for boxes +theme[title]="#8b8792" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#576ddb" + +# Background color of selected item in processes box +theme[selected_bg]="#26232a" + +# Foreground color of selected item in processes box +theme[selected_fg]="#8b8792" + +# Color of inactive/disabled text +theme[inactive_fg]="#7e7887" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#576ddb" + +# Cpu box outline color +theme[cpu_box]="#7e7887" + +# Memory/disks box outline color +theme[mem_box]="#7e7887" + +# Net up/down box outline color +theme[net_box]="#7e7887" + +# Processes box outline color +theme[proc_box]="#7e7887" + +# Box divider line and small boxes line color +theme[div_line]="#7e7887" + +# Temperature graph colors +theme[temp_start]="#2a9292" +theme[temp_mid]="#a06e3b" +theme[temp_end]="#be4678" + +# CPU graph colors +theme[cpu_start]="#2a9292" +theme[cpu_mid]="#a06e3b" +theme[cpu_end]="#be4678" + +# Mem/Disk free meter +theme[free_start]="#2a9292" +theme[free_mid]="#a06e3b" +theme[free_end]="#be4678" + +# Mem/Disk cached meter +theme[cached_start]="#2a9292" +theme[cached_mid]="#a06e3b" +theme[cached_end]="#be4678" + +# Mem/Disk available meter +theme[available_start]="#2a9292" +theme[available_mid]="#a06e3b" +theme[available_end]="#be4678" + +# Mem/Disk used meter +theme[used_start]="#2a9292" +theme[used_mid]="#a06e3b" +theme[used_end]="#be4678" + +# Download graph colors +theme[download_start]="#2a9292" +theme[download_mid]="#a06e3b" +theme[download_end]="#be4678" + +# Upload graph colors +theme[upload_start]="#2a9292" +theme[upload_mid]="#a06e3b" +theme[upload_end]="#be4678" diff --git a/colors/base16-atelier-dune-light.theme b/colors/base16-atelier-dune-light.theme new file mode 100644 index 0000000..2e8b58c --- /dev/null +++ b/colors/base16-atelier-dune-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Dune Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-dune-light +# slug-underscored: atelier_dune_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fefbec" + +# Main text color +theme[main_fg]="#6e6b5e" + +# Title color for boxes +theme[title]="#6e6b5e" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6684e1" + +# Background color of selected item in processes box +theme[selected_bg]="#e8e4cf" + +# Foreground color of selected item in processes box +theme[selected_fg]="#6e6b5e" + +# Color of inactive/disabled text +theme[inactive_fg]="#7d7a68" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6684e1" + +# Cpu box outline color +theme[cpu_box]="#7d7a68" + +# Memory/disks box outline color +theme[mem_box]="#7d7a68" + +# Net up/down box outline color +theme[net_box]="#7d7a68" + +# Processes box outline color +theme[proc_box]="#7d7a68" + +# Box divider line and small boxes line color +theme[div_line]="#7d7a68" + +# Temperature graph colors +theme[temp_start]="#60ac39" +theme[temp_mid]="#ae9513" +theme[temp_end]="#d73737" + +# CPU graph colors +theme[cpu_start]="#60ac39" +theme[cpu_mid]="#ae9513" +theme[cpu_end]="#d73737" + +# Mem/Disk free meter +theme[free_start]="#60ac39" +theme[free_mid]="#ae9513" +theme[free_end]="#d73737" + +# Mem/Disk cached meter +theme[cached_start]="#60ac39" +theme[cached_mid]="#ae9513" +theme[cached_end]="#d73737" + +# Mem/Disk available meter +theme[available_start]="#60ac39" +theme[available_mid]="#ae9513" +theme[available_end]="#d73737" + +# Mem/Disk used meter +theme[used_start]="#60ac39" +theme[used_mid]="#ae9513" +theme[used_end]="#d73737" + +# Download graph colors +theme[download_start]="#60ac39" +theme[download_mid]="#ae9513" +theme[download_end]="#d73737" + +# Upload graph colors +theme[upload_start]="#60ac39" +theme[upload_mid]="#ae9513" +theme[upload_end]="#d73737" diff --git a/colors/base16-atelier-dune.theme b/colors/base16-atelier-dune.theme new file mode 100644 index 0000000..7a5d42c --- /dev/null +++ b/colors/base16-atelier-dune.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Dune +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-dune +# slug-underscored: atelier_dune +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#20201d" + +# Main text color +theme[main_fg]="#a6a28c" + +# Title color for boxes +theme[title]="#a6a28c" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6684e1" + +# Background color of selected item in processes box +theme[selected_bg]="#292824" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a6a28c" + +# Color of inactive/disabled text +theme[inactive_fg]="#999580" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6684e1" + +# Cpu box outline color +theme[cpu_box]="#999580" + +# Memory/disks box outline color +theme[mem_box]="#999580" + +# Net up/down box outline color +theme[net_box]="#999580" + +# Processes box outline color +theme[proc_box]="#999580" + +# Box divider line and small boxes line color +theme[div_line]="#999580" + +# Temperature graph colors +theme[temp_start]="#60ac39" +theme[temp_mid]="#ae9513" +theme[temp_end]="#d73737" + +# CPU graph colors +theme[cpu_start]="#60ac39" +theme[cpu_mid]="#ae9513" +theme[cpu_end]="#d73737" + +# Mem/Disk free meter +theme[free_start]="#60ac39" +theme[free_mid]="#ae9513" +theme[free_end]="#d73737" + +# Mem/Disk cached meter +theme[cached_start]="#60ac39" +theme[cached_mid]="#ae9513" +theme[cached_end]="#d73737" + +# Mem/Disk available meter +theme[available_start]="#60ac39" +theme[available_mid]="#ae9513" +theme[available_end]="#d73737" + +# Mem/Disk used meter +theme[used_start]="#60ac39" +theme[used_mid]="#ae9513" +theme[used_end]="#d73737" + +# Download graph colors +theme[download_start]="#60ac39" +theme[download_mid]="#ae9513" +theme[download_end]="#d73737" + +# Upload graph colors +theme[upload_start]="#60ac39" +theme[upload_mid]="#ae9513" +theme[upload_end]="#d73737" diff --git a/colors/base16-atelier-estuary-light.theme b/colors/base16-atelier-estuary-light.theme new file mode 100644 index 0000000..8ff5cb0 --- /dev/null +++ b/colors/base16-atelier-estuary-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Estuary Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-estuary-light +# slug-underscored: atelier_estuary_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f4f3ec" + +# Main text color +theme[main_fg]="#5f5e4e" + +# Title color for boxes +theme[title]="#5f5e4e" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#36a166" + +# Background color of selected item in processes box +theme[selected_bg]="#e7e6df" + +# Foreground color of selected item in processes box +theme[selected_fg]="#5f5e4e" + +# Color of inactive/disabled text +theme[inactive_fg]="#6c6b5a" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#36a166" + +# Cpu box outline color +theme[cpu_box]="#6c6b5a" + +# Memory/disks box outline color +theme[mem_box]="#6c6b5a" + +# Net up/down box outline color +theme[net_box]="#6c6b5a" + +# Processes box outline color +theme[proc_box]="#6c6b5a" + +# Box divider line and small boxes line color +theme[div_line]="#6c6b5a" + +# Temperature graph colors +theme[temp_start]="#7d9726" +theme[temp_mid]="#a5980d" +theme[temp_end]="#ba6236" + +# CPU graph colors +theme[cpu_start]="#7d9726" +theme[cpu_mid]="#a5980d" +theme[cpu_end]="#ba6236" + +# Mem/Disk free meter +theme[free_start]="#7d9726" +theme[free_mid]="#a5980d" +theme[free_end]="#ba6236" + +# Mem/Disk cached meter +theme[cached_start]="#7d9726" +theme[cached_mid]="#a5980d" +theme[cached_end]="#ba6236" + +# Mem/Disk available meter +theme[available_start]="#7d9726" +theme[available_mid]="#a5980d" +theme[available_end]="#ba6236" + +# Mem/Disk used meter +theme[used_start]="#7d9726" +theme[used_mid]="#a5980d" +theme[used_end]="#ba6236" + +# Download graph colors +theme[download_start]="#7d9726" +theme[download_mid]="#a5980d" +theme[download_end]="#ba6236" + +# Upload graph colors +theme[upload_start]="#7d9726" +theme[upload_mid]="#a5980d" +theme[upload_end]="#ba6236" diff --git a/colors/base16-atelier-estuary.theme b/colors/base16-atelier-estuary.theme new file mode 100644 index 0000000..7c0173e --- /dev/null +++ b/colors/base16-atelier-estuary.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Estuary +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-estuary +# slug-underscored: atelier_estuary +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#22221b" + +# Main text color +theme[main_fg]="#929181" + +# Title color for boxes +theme[title]="#929181" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#36a166" + +# Background color of selected item in processes box +theme[selected_bg]="#302f27" + +# Foreground color of selected item in processes box +theme[selected_fg]="#929181" + +# Color of inactive/disabled text +theme[inactive_fg]="#878573" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#36a166" + +# Cpu box outline color +theme[cpu_box]="#878573" + +# Memory/disks box outline color +theme[mem_box]="#878573" + +# Net up/down box outline color +theme[net_box]="#878573" + +# Processes box outline color +theme[proc_box]="#878573" + +# Box divider line and small boxes line color +theme[div_line]="#878573" + +# Temperature graph colors +theme[temp_start]="#7d9726" +theme[temp_mid]="#a5980d" +theme[temp_end]="#ba6236" + +# CPU graph colors +theme[cpu_start]="#7d9726" +theme[cpu_mid]="#a5980d" +theme[cpu_end]="#ba6236" + +# Mem/Disk free meter +theme[free_start]="#7d9726" +theme[free_mid]="#a5980d" +theme[free_end]="#ba6236" + +# Mem/Disk cached meter +theme[cached_start]="#7d9726" +theme[cached_mid]="#a5980d" +theme[cached_end]="#ba6236" + +# Mem/Disk available meter +theme[available_start]="#7d9726" +theme[available_mid]="#a5980d" +theme[available_end]="#ba6236" + +# Mem/Disk used meter +theme[used_start]="#7d9726" +theme[used_mid]="#a5980d" +theme[used_end]="#ba6236" + +# Download graph colors +theme[download_start]="#7d9726" +theme[download_mid]="#a5980d" +theme[download_end]="#ba6236" + +# Upload graph colors +theme[upload_start]="#7d9726" +theme[upload_mid]="#a5980d" +theme[upload_end]="#ba6236" diff --git a/colors/base16-atelier-forest-light.theme b/colors/base16-atelier-forest-light.theme new file mode 100644 index 0000000..82f2634 --- /dev/null +++ b/colors/base16-atelier-forest-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Forest Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-forest-light +# slug-underscored: atelier_forest_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f1efee" + +# Main text color +theme[main_fg]="#68615e" + +# Title color for boxes +theme[title]="#68615e" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#407ee7" + +# Background color of selected item in processes box +theme[selected_bg]="#e6e2e0" + +# Foreground color of selected item in processes box +theme[selected_fg]="#68615e" + +# Color of inactive/disabled text +theme[inactive_fg]="#766e6b" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#407ee7" + +# Cpu box outline color +theme[cpu_box]="#766e6b" + +# Memory/disks box outline color +theme[mem_box]="#766e6b" + +# Net up/down box outline color +theme[net_box]="#766e6b" + +# Processes box outline color +theme[proc_box]="#766e6b" + +# Box divider line and small boxes line color +theme[div_line]="#766e6b" + +# Temperature graph colors +theme[temp_start]="#7b9726" +theme[temp_mid]="#c38418" +theme[temp_end]="#f22c40" + +# CPU graph colors +theme[cpu_start]="#7b9726" +theme[cpu_mid]="#c38418" +theme[cpu_end]="#f22c40" + +# Mem/Disk free meter +theme[free_start]="#7b9726" +theme[free_mid]="#c38418" +theme[free_end]="#f22c40" + +# Mem/Disk cached meter +theme[cached_start]="#7b9726" +theme[cached_mid]="#c38418" +theme[cached_end]="#f22c40" + +# Mem/Disk available meter +theme[available_start]="#7b9726" +theme[available_mid]="#c38418" +theme[available_end]="#f22c40" + +# Mem/Disk used meter +theme[used_start]="#7b9726" +theme[used_mid]="#c38418" +theme[used_end]="#f22c40" + +# Download graph colors +theme[download_start]="#7b9726" +theme[download_mid]="#c38418" +theme[download_end]="#f22c40" + +# Upload graph colors +theme[upload_start]="#7b9726" +theme[upload_mid]="#c38418" +theme[upload_end]="#f22c40" diff --git a/colors/base16-atelier-forest.theme b/colors/base16-atelier-forest.theme new file mode 100644 index 0000000..15dd579 --- /dev/null +++ b/colors/base16-atelier-forest.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Forest +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-forest +# slug-underscored: atelier_forest +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1b1918" + +# Main text color +theme[main_fg]="#a8a19f" + +# Title color for boxes +theme[title]="#a8a19f" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#407ee7" + +# Background color of selected item in processes box +theme[selected_bg]="#2c2421" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a8a19f" + +# Color of inactive/disabled text +theme[inactive_fg]="#9c9491" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#407ee7" + +# Cpu box outline color +theme[cpu_box]="#9c9491" + +# Memory/disks box outline color +theme[mem_box]="#9c9491" + +# Net up/down box outline color +theme[net_box]="#9c9491" + +# Processes box outline color +theme[proc_box]="#9c9491" + +# Box divider line and small boxes line color +theme[div_line]="#9c9491" + +# Temperature graph colors +theme[temp_start]="#7b9726" +theme[temp_mid]="#c38418" +theme[temp_end]="#f22c40" + +# CPU graph colors +theme[cpu_start]="#7b9726" +theme[cpu_mid]="#c38418" +theme[cpu_end]="#f22c40" + +# Mem/Disk free meter +theme[free_start]="#7b9726" +theme[free_mid]="#c38418" +theme[free_end]="#f22c40" + +# Mem/Disk cached meter +theme[cached_start]="#7b9726" +theme[cached_mid]="#c38418" +theme[cached_end]="#f22c40" + +# Mem/Disk available meter +theme[available_start]="#7b9726" +theme[available_mid]="#c38418" +theme[available_end]="#f22c40" + +# Mem/Disk used meter +theme[used_start]="#7b9726" +theme[used_mid]="#c38418" +theme[used_end]="#f22c40" + +# Download graph colors +theme[download_start]="#7b9726" +theme[download_mid]="#c38418" +theme[download_end]="#f22c40" + +# Upload graph colors +theme[upload_start]="#7b9726" +theme[upload_mid]="#c38418" +theme[upload_end]="#f22c40" diff --git a/colors/base16-atelier-heath-light.theme b/colors/base16-atelier-heath-light.theme new file mode 100644 index 0000000..a04f058 --- /dev/null +++ b/colors/base16-atelier-heath-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Heath Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-heath-light +# slug-underscored: atelier_heath_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f7f3f7" + +# Main text color +theme[main_fg]="#695d69" + +# Title color for boxes +theme[title]="#695d69" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#516aec" + +# Background color of selected item in processes box +theme[selected_bg]="#d8cad8" + +# Foreground color of selected item in processes box +theme[selected_fg]="#695d69" + +# Color of inactive/disabled text +theme[inactive_fg]="#776977" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#516aec" + +# Cpu box outline color +theme[cpu_box]="#776977" + +# Memory/disks box outline color +theme[mem_box]="#776977" + +# Net up/down box outline color +theme[net_box]="#776977" + +# Processes box outline color +theme[proc_box]="#776977" + +# Box divider line and small boxes line color +theme[div_line]="#776977" + +# Temperature graph colors +theme[temp_start]="#918b3b" +theme[temp_mid]="#bb8a35" +theme[temp_end]="#ca402b" + +# CPU graph colors +theme[cpu_start]="#918b3b" +theme[cpu_mid]="#bb8a35" +theme[cpu_end]="#ca402b" + +# Mem/Disk free meter +theme[free_start]="#918b3b" +theme[free_mid]="#bb8a35" +theme[free_end]="#ca402b" + +# Mem/Disk cached meter +theme[cached_start]="#918b3b" +theme[cached_mid]="#bb8a35" +theme[cached_end]="#ca402b" + +# Mem/Disk available meter +theme[available_start]="#918b3b" +theme[available_mid]="#bb8a35" +theme[available_end]="#ca402b" + +# Mem/Disk used meter +theme[used_start]="#918b3b" +theme[used_mid]="#bb8a35" +theme[used_end]="#ca402b" + +# Download graph colors +theme[download_start]="#918b3b" +theme[download_mid]="#bb8a35" +theme[download_end]="#ca402b" + +# Upload graph colors +theme[upload_start]="#918b3b" +theme[upload_mid]="#bb8a35" +theme[upload_end]="#ca402b" diff --git a/colors/base16-atelier-heath.theme b/colors/base16-atelier-heath.theme new file mode 100644 index 0000000..c7657b4 --- /dev/null +++ b/colors/base16-atelier-heath.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Heath +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-heath +# slug-underscored: atelier_heath +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1b181b" + +# Main text color +theme[main_fg]="#ab9bab" + +# Title color for boxes +theme[title]="#ab9bab" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#516aec" + +# Background color of selected item in processes box +theme[selected_bg]="#292329" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ab9bab" + +# Color of inactive/disabled text +theme[inactive_fg]="#9e8f9e" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#516aec" + +# Cpu box outline color +theme[cpu_box]="#9e8f9e" + +# Memory/disks box outline color +theme[mem_box]="#9e8f9e" + +# Net up/down box outline color +theme[net_box]="#9e8f9e" + +# Processes box outline color +theme[proc_box]="#9e8f9e" + +# Box divider line and small boxes line color +theme[div_line]="#9e8f9e" + +# Temperature graph colors +theme[temp_start]="#918b3b" +theme[temp_mid]="#bb8a35" +theme[temp_end]="#ca402b" + +# CPU graph colors +theme[cpu_start]="#918b3b" +theme[cpu_mid]="#bb8a35" +theme[cpu_end]="#ca402b" + +# Mem/Disk free meter +theme[free_start]="#918b3b" +theme[free_mid]="#bb8a35" +theme[free_end]="#ca402b" + +# Mem/Disk cached meter +theme[cached_start]="#918b3b" +theme[cached_mid]="#bb8a35" +theme[cached_end]="#ca402b" + +# Mem/Disk available meter +theme[available_start]="#918b3b" +theme[available_mid]="#bb8a35" +theme[available_end]="#ca402b" + +# Mem/Disk used meter +theme[used_start]="#918b3b" +theme[used_mid]="#bb8a35" +theme[used_end]="#ca402b" + +# Download graph colors +theme[download_start]="#918b3b" +theme[download_mid]="#bb8a35" +theme[download_end]="#ca402b" + +# Upload graph colors +theme[upload_start]="#918b3b" +theme[upload_mid]="#bb8a35" +theme[upload_end]="#ca402b" diff --git a/colors/base16-atelier-lakeside-light.theme b/colors/base16-atelier-lakeside-light.theme new file mode 100644 index 0000000..8e21ef5 --- /dev/null +++ b/colors/base16-atelier-lakeside-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Lakeside Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-lakeside-light +# slug-underscored: atelier_lakeside_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ebf8ff" + +# Main text color +theme[main_fg]="#516d7b" + +# Title color for boxes +theme[title]="#516d7b" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#257fad" + +# Background color of selected item in processes box +theme[selected_bg]="#c1e4f6" + +# Foreground color of selected item in processes box +theme[selected_fg]="#516d7b" + +# Color of inactive/disabled text +theme[inactive_fg]="#5a7b8c" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#257fad" + +# Cpu box outline color +theme[cpu_box]="#5a7b8c" + +# Memory/disks box outline color +theme[mem_box]="#5a7b8c" + +# Net up/down box outline color +theme[net_box]="#5a7b8c" + +# Processes box outline color +theme[proc_box]="#5a7b8c" + +# Box divider line and small boxes line color +theme[div_line]="#5a7b8c" + +# Temperature graph colors +theme[temp_start]="#568c3b" +theme[temp_mid]="#8a8a0f" +theme[temp_end]="#d22d72" + +# CPU graph colors +theme[cpu_start]="#568c3b" +theme[cpu_mid]="#8a8a0f" +theme[cpu_end]="#d22d72" + +# Mem/Disk free meter +theme[free_start]="#568c3b" +theme[free_mid]="#8a8a0f" +theme[free_end]="#d22d72" + +# Mem/Disk cached meter +theme[cached_start]="#568c3b" +theme[cached_mid]="#8a8a0f" +theme[cached_end]="#d22d72" + +# Mem/Disk available meter +theme[available_start]="#568c3b" +theme[available_mid]="#8a8a0f" +theme[available_end]="#d22d72" + +# Mem/Disk used meter +theme[used_start]="#568c3b" +theme[used_mid]="#8a8a0f" +theme[used_end]="#d22d72" + +# Download graph colors +theme[download_start]="#568c3b" +theme[download_mid]="#8a8a0f" +theme[download_end]="#d22d72" + +# Upload graph colors +theme[upload_start]="#568c3b" +theme[upload_mid]="#8a8a0f" +theme[upload_end]="#d22d72" diff --git a/colors/base16-atelier-lakeside.theme b/colors/base16-atelier-lakeside.theme new file mode 100644 index 0000000..adb88cd --- /dev/null +++ b/colors/base16-atelier-lakeside.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Lakeside +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-lakeside +# slug-underscored: atelier_lakeside +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#161b1d" + +# Main text color +theme[main_fg]="#7ea2b4" + +# Title color for boxes +theme[title]="#7ea2b4" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#257fad" + +# Background color of selected item in processes box +theme[selected_bg]="#1f292e" + +# Foreground color of selected item in processes box +theme[selected_fg]="#7ea2b4" + +# Color of inactive/disabled text +theme[inactive_fg]="#7195a8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#257fad" + +# Cpu box outline color +theme[cpu_box]="#7195a8" + +# Memory/disks box outline color +theme[mem_box]="#7195a8" + +# Net up/down box outline color +theme[net_box]="#7195a8" + +# Processes box outline color +theme[proc_box]="#7195a8" + +# Box divider line and small boxes line color +theme[div_line]="#7195a8" + +# Temperature graph colors +theme[temp_start]="#568c3b" +theme[temp_mid]="#8a8a0f" +theme[temp_end]="#d22d72" + +# CPU graph colors +theme[cpu_start]="#568c3b" +theme[cpu_mid]="#8a8a0f" +theme[cpu_end]="#d22d72" + +# Mem/Disk free meter +theme[free_start]="#568c3b" +theme[free_mid]="#8a8a0f" +theme[free_end]="#d22d72" + +# Mem/Disk cached meter +theme[cached_start]="#568c3b" +theme[cached_mid]="#8a8a0f" +theme[cached_end]="#d22d72" + +# Mem/Disk available meter +theme[available_start]="#568c3b" +theme[available_mid]="#8a8a0f" +theme[available_end]="#d22d72" + +# Mem/Disk used meter +theme[used_start]="#568c3b" +theme[used_mid]="#8a8a0f" +theme[used_end]="#d22d72" + +# Download graph colors +theme[download_start]="#568c3b" +theme[download_mid]="#8a8a0f" +theme[download_end]="#d22d72" + +# Upload graph colors +theme[upload_start]="#568c3b" +theme[upload_mid]="#8a8a0f" +theme[upload_end]="#d22d72" diff --git a/colors/base16-atelier-plateau-light.theme b/colors/base16-atelier-plateau-light.theme new file mode 100644 index 0000000..856994c --- /dev/null +++ b/colors/base16-atelier-plateau-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Plateau Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-plateau-light +# slug-underscored: atelier_plateau_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f4ecec" + +# Main text color +theme[main_fg]="#585050" + +# Title color for boxes +theme[title]="#585050" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7272ca" + +# Background color of selected item in processes box +theme[selected_bg]="#e7dfdf" + +# Foreground color of selected item in processes box +theme[selected_fg]="#585050" + +# Color of inactive/disabled text +theme[inactive_fg]="#655d5d" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7272ca" + +# Cpu box outline color +theme[cpu_box]="#655d5d" + +# Memory/disks box outline color +theme[mem_box]="#655d5d" + +# Net up/down box outline color +theme[net_box]="#655d5d" + +# Processes box outline color +theme[proc_box]="#655d5d" + +# Box divider line and small boxes line color +theme[div_line]="#655d5d" + +# Temperature graph colors +theme[temp_start]="#4b8b8b" +theme[temp_mid]="#a06e3b" +theme[temp_end]="#ca4949" + +# CPU graph colors +theme[cpu_start]="#4b8b8b" +theme[cpu_mid]="#a06e3b" +theme[cpu_end]="#ca4949" + +# Mem/Disk free meter +theme[free_start]="#4b8b8b" +theme[free_mid]="#a06e3b" +theme[free_end]="#ca4949" + +# Mem/Disk cached meter +theme[cached_start]="#4b8b8b" +theme[cached_mid]="#a06e3b" +theme[cached_end]="#ca4949" + +# Mem/Disk available meter +theme[available_start]="#4b8b8b" +theme[available_mid]="#a06e3b" +theme[available_end]="#ca4949" + +# Mem/Disk used meter +theme[used_start]="#4b8b8b" +theme[used_mid]="#a06e3b" +theme[used_end]="#ca4949" + +# Download graph colors +theme[download_start]="#4b8b8b" +theme[download_mid]="#a06e3b" +theme[download_end]="#ca4949" + +# Upload graph colors +theme[upload_start]="#4b8b8b" +theme[upload_mid]="#a06e3b" +theme[upload_end]="#ca4949" diff --git a/colors/base16-atelier-plateau.theme b/colors/base16-atelier-plateau.theme new file mode 100644 index 0000000..1e036ad --- /dev/null +++ b/colors/base16-atelier-plateau.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Plateau +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-plateau +# slug-underscored: atelier_plateau +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1b1818" + +# Main text color +theme[main_fg]="#8a8585" + +# Title color for boxes +theme[title]="#8a8585" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7272ca" + +# Background color of selected item in processes box +theme[selected_bg]="#292424" + +# Foreground color of selected item in processes box +theme[selected_fg]="#8a8585" + +# Color of inactive/disabled text +theme[inactive_fg]="#7e7777" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7272ca" + +# Cpu box outline color +theme[cpu_box]="#7e7777" + +# Memory/disks box outline color +theme[mem_box]="#7e7777" + +# Net up/down box outline color +theme[net_box]="#7e7777" + +# Processes box outline color +theme[proc_box]="#7e7777" + +# Box divider line and small boxes line color +theme[div_line]="#7e7777" + +# Temperature graph colors +theme[temp_start]="#4b8b8b" +theme[temp_mid]="#a06e3b" +theme[temp_end]="#ca4949" + +# CPU graph colors +theme[cpu_start]="#4b8b8b" +theme[cpu_mid]="#a06e3b" +theme[cpu_end]="#ca4949" + +# Mem/Disk free meter +theme[free_start]="#4b8b8b" +theme[free_mid]="#a06e3b" +theme[free_end]="#ca4949" + +# Mem/Disk cached meter +theme[cached_start]="#4b8b8b" +theme[cached_mid]="#a06e3b" +theme[cached_end]="#ca4949" + +# Mem/Disk available meter +theme[available_start]="#4b8b8b" +theme[available_mid]="#a06e3b" +theme[available_end]="#ca4949" + +# Mem/Disk used meter +theme[used_start]="#4b8b8b" +theme[used_mid]="#a06e3b" +theme[used_end]="#ca4949" + +# Download graph colors +theme[download_start]="#4b8b8b" +theme[download_mid]="#a06e3b" +theme[download_end]="#ca4949" + +# Upload graph colors +theme[upload_start]="#4b8b8b" +theme[upload_mid]="#a06e3b" +theme[upload_end]="#ca4949" diff --git a/colors/base16-atelier-savanna-light.theme b/colors/base16-atelier-savanna-light.theme new file mode 100644 index 0000000..badaf65 --- /dev/null +++ b/colors/base16-atelier-savanna-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Savanna Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-savanna-light +# slug-underscored: atelier_savanna_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ecf4ee" + +# Main text color +theme[main_fg]="#526057" + +# Title color for boxes +theme[title]="#526057" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#478c90" + +# Background color of selected item in processes box +theme[selected_bg]="#dfe7e2" + +# Foreground color of selected item in processes box +theme[selected_fg]="#526057" + +# Color of inactive/disabled text +theme[inactive_fg]="#5f6d64" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#478c90" + +# Cpu box outline color +theme[cpu_box]="#5f6d64" + +# Memory/disks box outline color +theme[mem_box]="#5f6d64" + +# Net up/down box outline color +theme[net_box]="#5f6d64" + +# Processes box outline color +theme[proc_box]="#5f6d64" + +# Box divider line and small boxes line color +theme[div_line]="#5f6d64" + +# Temperature graph colors +theme[temp_start]="#489963" +theme[temp_mid]="#a07e3b" +theme[temp_end]="#b16139" + +# CPU graph colors +theme[cpu_start]="#489963" +theme[cpu_mid]="#a07e3b" +theme[cpu_end]="#b16139" + +# Mem/Disk free meter +theme[free_start]="#489963" +theme[free_mid]="#a07e3b" +theme[free_end]="#b16139" + +# Mem/Disk cached meter +theme[cached_start]="#489963" +theme[cached_mid]="#a07e3b" +theme[cached_end]="#b16139" + +# Mem/Disk available meter +theme[available_start]="#489963" +theme[available_mid]="#a07e3b" +theme[available_end]="#b16139" + +# Mem/Disk used meter +theme[used_start]="#489963" +theme[used_mid]="#a07e3b" +theme[used_end]="#b16139" + +# Download graph colors +theme[download_start]="#489963" +theme[download_mid]="#a07e3b" +theme[download_end]="#b16139" + +# Upload graph colors +theme[upload_start]="#489963" +theme[upload_mid]="#a07e3b" +theme[upload_end]="#b16139" diff --git a/colors/base16-atelier-savanna.theme b/colors/base16-atelier-savanna.theme new file mode 100644 index 0000000..c7253ed --- /dev/null +++ b/colors/base16-atelier-savanna.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Savanna +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-savanna +# slug-underscored: atelier_savanna +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#171c19" + +# Main text color +theme[main_fg]="#87928a" + +# Title color for boxes +theme[title]="#87928a" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#478c90" + +# Background color of selected item in processes box +theme[selected_bg]="#232a25" + +# Foreground color of selected item in processes box +theme[selected_fg]="#87928a" + +# Color of inactive/disabled text +theme[inactive_fg]="#78877d" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#478c90" + +# Cpu box outline color +theme[cpu_box]="#78877d" + +# Memory/disks box outline color +theme[mem_box]="#78877d" + +# Net up/down box outline color +theme[net_box]="#78877d" + +# Processes box outline color +theme[proc_box]="#78877d" + +# Box divider line and small boxes line color +theme[div_line]="#78877d" + +# Temperature graph colors +theme[temp_start]="#489963" +theme[temp_mid]="#a07e3b" +theme[temp_end]="#b16139" + +# CPU graph colors +theme[cpu_start]="#489963" +theme[cpu_mid]="#a07e3b" +theme[cpu_end]="#b16139" + +# Mem/Disk free meter +theme[free_start]="#489963" +theme[free_mid]="#a07e3b" +theme[free_end]="#b16139" + +# Mem/Disk cached meter +theme[cached_start]="#489963" +theme[cached_mid]="#a07e3b" +theme[cached_end]="#b16139" + +# Mem/Disk available meter +theme[available_start]="#489963" +theme[available_mid]="#a07e3b" +theme[available_end]="#b16139" + +# Mem/Disk used meter +theme[used_start]="#489963" +theme[used_mid]="#a07e3b" +theme[used_end]="#b16139" + +# Download graph colors +theme[download_start]="#489963" +theme[download_mid]="#a07e3b" +theme[download_end]="#b16139" + +# Upload graph colors +theme[upload_start]="#489963" +theme[upload_mid]="#a07e3b" +theme[upload_end]="#b16139" diff --git a/colors/base16-atelier-seaside-light.theme b/colors/base16-atelier-seaside-light.theme new file mode 100644 index 0000000..32f2d82 --- /dev/null +++ b/colors/base16-atelier-seaside-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Seaside Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-seaside-light +# slug-underscored: atelier_seaside_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f4fbf4" + +# Main text color +theme[main_fg]="#5e6e5e" + +# Title color for boxes +theme[title]="#5e6e5e" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3d62f5" + +# Background color of selected item in processes box +theme[selected_bg]="#cfe8cf" + +# Foreground color of selected item in processes box +theme[selected_fg]="#5e6e5e" + +# Color of inactive/disabled text +theme[inactive_fg]="#687d68" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3d62f5" + +# Cpu box outline color +theme[cpu_box]="#687d68" + +# Memory/disks box outline color +theme[mem_box]="#687d68" + +# Net up/down box outline color +theme[net_box]="#687d68" + +# Processes box outline color +theme[proc_box]="#687d68" + +# Box divider line and small boxes line color +theme[div_line]="#687d68" + +# Temperature graph colors +theme[temp_start]="#29a329" +theme[temp_mid]="#98981b" +theme[temp_end]="#e6193c" + +# CPU graph colors +theme[cpu_start]="#29a329" +theme[cpu_mid]="#98981b" +theme[cpu_end]="#e6193c" + +# Mem/Disk free meter +theme[free_start]="#29a329" +theme[free_mid]="#98981b" +theme[free_end]="#e6193c" + +# Mem/Disk cached meter +theme[cached_start]="#29a329" +theme[cached_mid]="#98981b" +theme[cached_end]="#e6193c" + +# Mem/Disk available meter +theme[available_start]="#29a329" +theme[available_mid]="#98981b" +theme[available_end]="#e6193c" + +# Mem/Disk used meter +theme[used_start]="#29a329" +theme[used_mid]="#98981b" +theme[used_end]="#e6193c" + +# Download graph colors +theme[download_start]="#29a329" +theme[download_mid]="#98981b" +theme[download_end]="#e6193c" + +# Upload graph colors +theme[upload_start]="#29a329" +theme[upload_mid]="#98981b" +theme[upload_end]="#e6193c" diff --git a/colors/base16-atelier-seaside.theme b/colors/base16-atelier-seaside.theme new file mode 100644 index 0000000..70754cf --- /dev/null +++ b/colors/base16-atelier-seaside.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Seaside +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-seaside +# slug-underscored: atelier_seaside +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#131513" + +# Main text color +theme[main_fg]="#8ca68c" + +# Title color for boxes +theme[title]="#8ca68c" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3d62f5" + +# Background color of selected item in processes box +theme[selected_bg]="#242924" + +# Foreground color of selected item in processes box +theme[selected_fg]="#8ca68c" + +# Color of inactive/disabled text +theme[inactive_fg]="#809980" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3d62f5" + +# Cpu box outline color +theme[cpu_box]="#809980" + +# Memory/disks box outline color +theme[mem_box]="#809980" + +# Net up/down box outline color +theme[net_box]="#809980" + +# Processes box outline color +theme[proc_box]="#809980" + +# Box divider line and small boxes line color +theme[div_line]="#809980" + +# Temperature graph colors +theme[temp_start]="#29a329" +theme[temp_mid]="#98981b" +theme[temp_end]="#e6193c" + +# CPU graph colors +theme[cpu_start]="#29a329" +theme[cpu_mid]="#98981b" +theme[cpu_end]="#e6193c" + +# Mem/Disk free meter +theme[free_start]="#29a329" +theme[free_mid]="#98981b" +theme[free_end]="#e6193c" + +# Mem/Disk cached meter +theme[cached_start]="#29a329" +theme[cached_mid]="#98981b" +theme[cached_end]="#e6193c" + +# Mem/Disk available meter +theme[available_start]="#29a329" +theme[available_mid]="#98981b" +theme[available_end]="#e6193c" + +# Mem/Disk used meter +theme[used_start]="#29a329" +theme[used_mid]="#98981b" +theme[used_end]="#e6193c" + +# Download graph colors +theme[download_start]="#29a329" +theme[download_mid]="#98981b" +theme[download_end]="#e6193c" + +# Upload graph colors +theme[upload_start]="#29a329" +theme[upload_mid]="#98981b" +theme[upload_end]="#e6193c" diff --git a/colors/base16-atelier-sulphurpool-light.theme b/colors/base16-atelier-sulphurpool-light.theme new file mode 100644 index 0000000..1e87512 --- /dev/null +++ b/colors/base16-atelier-sulphurpool-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Sulphurpool Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-sulphurpool-light +# slug-underscored: atelier_sulphurpool_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f5f7ff" + +# Main text color +theme[main_fg]="#5e6687" + +# Title color for boxes +theme[title]="#5e6687" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3d8fd1" + +# Background color of selected item in processes box +theme[selected_bg]="#dfe2f1" + +# Foreground color of selected item in processes box +theme[selected_fg]="#5e6687" + +# Color of inactive/disabled text +theme[inactive_fg]="#6b7394" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3d8fd1" + +# Cpu box outline color +theme[cpu_box]="#6b7394" + +# Memory/disks box outline color +theme[mem_box]="#6b7394" + +# Net up/down box outline color +theme[net_box]="#6b7394" + +# Processes box outline color +theme[proc_box]="#6b7394" + +# Box divider line and small boxes line color +theme[div_line]="#6b7394" + +# Temperature graph colors +theme[temp_start]="#ac9739" +theme[temp_mid]="#c08b30" +theme[temp_end]="#c94922" + +# CPU graph colors +theme[cpu_start]="#ac9739" +theme[cpu_mid]="#c08b30" +theme[cpu_end]="#c94922" + +# Mem/Disk free meter +theme[free_start]="#ac9739" +theme[free_mid]="#c08b30" +theme[free_end]="#c94922" + +# Mem/Disk cached meter +theme[cached_start]="#ac9739" +theme[cached_mid]="#c08b30" +theme[cached_end]="#c94922" + +# Mem/Disk available meter +theme[available_start]="#ac9739" +theme[available_mid]="#c08b30" +theme[available_end]="#c94922" + +# Mem/Disk used meter +theme[used_start]="#ac9739" +theme[used_mid]="#c08b30" +theme[used_end]="#c94922" + +# Download graph colors +theme[download_start]="#ac9739" +theme[download_mid]="#c08b30" +theme[download_end]="#c94922" + +# Upload graph colors +theme[upload_start]="#ac9739" +theme[upload_mid]="#c08b30" +theme[upload_end]="#c94922" diff --git a/colors/base16-atelier-sulphurpool.theme b/colors/base16-atelier-sulphurpool.theme new file mode 100644 index 0000000..5142b37 --- /dev/null +++ b/colors/base16-atelier-sulphurpool.theme @@ -0,0 +1,90 @@ +# +# +# name: Atelier Sulphurpool +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-sulphurpool +# slug-underscored: atelier_sulphurpool +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#202746" + +# Main text color +theme[main_fg]="#979db4" + +# Title color for boxes +theme[title]="#979db4" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3d8fd1" + +# Background color of selected item in processes box +theme[selected_bg]="#293256" + +# Foreground color of selected item in processes box +theme[selected_fg]="#979db4" + +# Color of inactive/disabled text +theme[inactive_fg]="#898ea4" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3d8fd1" + +# Cpu box outline color +theme[cpu_box]="#898ea4" + +# Memory/disks box outline color +theme[mem_box]="#898ea4" + +# Net up/down box outline color +theme[net_box]="#898ea4" + +# Processes box outline color +theme[proc_box]="#898ea4" + +# Box divider line and small boxes line color +theme[div_line]="#898ea4" + +# Temperature graph colors +theme[temp_start]="#ac9739" +theme[temp_mid]="#c08b30" +theme[temp_end]="#c94922" + +# CPU graph colors +theme[cpu_start]="#ac9739" +theme[cpu_mid]="#c08b30" +theme[cpu_end]="#c94922" + +# Mem/Disk free meter +theme[free_start]="#ac9739" +theme[free_mid]="#c08b30" +theme[free_end]="#c94922" + +# Mem/Disk cached meter +theme[cached_start]="#ac9739" +theme[cached_mid]="#c08b30" +theme[cached_end]="#c94922" + +# Mem/Disk available meter +theme[available_start]="#ac9739" +theme[available_mid]="#c08b30" +theme[available_end]="#c94922" + +# Mem/Disk used meter +theme[used_start]="#ac9739" +theme[used_mid]="#c08b30" +theme[used_end]="#c94922" + +# Download graph colors +theme[download_start]="#ac9739" +theme[download_mid]="#c08b30" +theme[download_end]="#c94922" + +# Upload graph colors +theme[upload_start]="#ac9739" +theme[upload_mid]="#c08b30" +theme[upload_end]="#c94922" diff --git a/colors/base16-atlas.theme b/colors/base16-atlas.theme new file mode 100644 index 0000000..bcd4f7d --- /dev/null +++ b/colors/base16-atlas.theme @@ -0,0 +1,90 @@ +# +# +# name: Atlas +# author: Alex Lende (https://ajlende.com) +# slug: atlas +# slug-underscored: atlas +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#002635" + +# Main text color +theme[main_fg]="#a1a19a" + +# Title color for boxes +theme[title]="#a1a19a" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#14747e" + +# Background color of selected item in processes box +theme[selected_bg]="#00384d" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a1a19a" + +# Color of inactive/disabled text +theme[inactive_fg]="#869696" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#14747e" + +# Cpu box outline color +theme[cpu_box]="#869696" + +# Memory/disks box outline color +theme[mem_box]="#869696" + +# Net up/down box outline color +theme[net_box]="#869696" + +# Processes box outline color +theme[proc_box]="#869696" + +# Box divider line and small boxes line color +theme[div_line]="#869696" + +# Temperature graph colors +theme[temp_start]="#7fc06e" +theme[temp_mid]="#ffcc1b" +theme[temp_end]="#ff5a67" + +# CPU graph colors +theme[cpu_start]="#7fc06e" +theme[cpu_mid]="#ffcc1b" +theme[cpu_end]="#ff5a67" + +# Mem/Disk free meter +theme[free_start]="#7fc06e" +theme[free_mid]="#ffcc1b" +theme[free_end]="#ff5a67" + +# Mem/Disk cached meter +theme[cached_start]="#7fc06e" +theme[cached_mid]="#ffcc1b" +theme[cached_end]="#ff5a67" + +# Mem/Disk available meter +theme[available_start]="#7fc06e" +theme[available_mid]="#ffcc1b" +theme[available_end]="#ff5a67" + +# Mem/Disk used meter +theme[used_start]="#7fc06e" +theme[used_mid]="#ffcc1b" +theme[used_end]="#ff5a67" + +# Download graph colors +theme[download_start]="#7fc06e" +theme[download_mid]="#ffcc1b" +theme[download_end]="#ff5a67" + +# Upload graph colors +theme[upload_start]="#7fc06e" +theme[upload_mid]="#ffcc1b" +theme[upload_end]="#ff5a67" diff --git a/colors/base16-ayu-dark.theme b/colors/base16-ayu-dark.theme new file mode 100644 index 0000000..7ce8962 --- /dev/null +++ b/colors/base16-ayu-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Ayu Dark +# author: Khue Nguyen <Z5483Y@gmail.com> +# slug: ayu-dark +# slug-underscored: ayu_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#0F1419" + +# Main text color +theme[main_fg]="#E6E1CF" + +# Title color for boxes +theme[title]="#E6E1CF" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#59C2FF" + +# Background color of selected item in processes box +theme[selected_bg]="#131721" + +# Foreground color of selected item in processes box +theme[selected_fg]="#E6E1CF" + +# Color of inactive/disabled text +theme[inactive_fg]="#BFBDB6" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#59C2FF" + +# Cpu box outline color +theme[cpu_box]="#BFBDB6" + +# Memory/disks box outline color +theme[mem_box]="#BFBDB6" + +# Net up/down box outline color +theme[net_box]="#BFBDB6" + +# Processes box outline color +theme[proc_box]="#BFBDB6" + +# Box divider line and small boxes line color +theme[div_line]="#BFBDB6" + +# Temperature graph colors +theme[temp_start]="#B8CC52" +theme[temp_mid]="#FFB454" +theme[temp_end]="#F07178" + +# CPU graph colors +theme[cpu_start]="#B8CC52" +theme[cpu_mid]="#FFB454" +theme[cpu_end]="#F07178" + +# Mem/Disk free meter +theme[free_start]="#B8CC52" +theme[free_mid]="#FFB454" +theme[free_end]="#F07178" + +# Mem/Disk cached meter +theme[cached_start]="#B8CC52" +theme[cached_mid]="#FFB454" +theme[cached_end]="#F07178" + +# Mem/Disk available meter +theme[available_start]="#B8CC52" +theme[available_mid]="#FFB454" +theme[available_end]="#F07178" + +# Mem/Disk used meter +theme[used_start]="#B8CC52" +theme[used_mid]="#FFB454" +theme[used_end]="#F07178" + +# Download graph colors +theme[download_start]="#B8CC52" +theme[download_mid]="#FFB454" +theme[download_end]="#F07178" + +# Upload graph colors +theme[upload_start]="#B8CC52" +theme[upload_mid]="#FFB454" +theme[upload_end]="#F07178" diff --git a/colors/base16-ayu-light.theme b/colors/base16-ayu-light.theme new file mode 100644 index 0000000..407c388 --- /dev/null +++ b/colors/base16-ayu-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Ayu Light +# author: Khue Nguyen <Z5483Y@gmail.com> +# slug: ayu-light +# slug-underscored: ayu_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#FAFAFA" + +# Main text color +theme[main_fg]="#5C6773" + +# Title color for boxes +theme[title]="#5C6773" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#36A3D9" + +# Background color of selected item in processes box +theme[selected_bg]="#F3F4F5" + +# Foreground color of selected item in processes box +theme[selected_fg]="#5C6773" + +# Color of inactive/disabled text +theme[inactive_fg]="#828C99" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#36A3D9" + +# Cpu box outline color +theme[cpu_box]="#828C99" + +# Memory/disks box outline color +theme[mem_box]="#828C99" + +# Net up/down box outline color +theme[net_box]="#828C99" + +# Processes box outline color +theme[proc_box]="#828C99" + +# Box divider line and small boxes line color +theme[div_line]="#828C99" + +# Temperature graph colors +theme[temp_start]="#86B300" +theme[temp_mid]="#F2AE49" +theme[temp_end]="#F07178" + +# CPU graph colors +theme[cpu_start]="#86B300" +theme[cpu_mid]="#F2AE49" +theme[cpu_end]="#F07178" + +# Mem/Disk free meter +theme[free_start]="#86B300" +theme[free_mid]="#F2AE49" +theme[free_end]="#F07178" + +# Mem/Disk cached meter +theme[cached_start]="#86B300" +theme[cached_mid]="#F2AE49" +theme[cached_end]="#F07178" + +# Mem/Disk available meter +theme[available_start]="#86B300" +theme[available_mid]="#F2AE49" +theme[available_end]="#F07178" + +# Mem/Disk used meter +theme[used_start]="#86B300" +theme[used_mid]="#F2AE49" +theme[used_end]="#F07178" + +# Download graph colors +theme[download_start]="#86B300" +theme[download_mid]="#F2AE49" +theme[download_end]="#F07178" + +# Upload graph colors +theme[upload_start]="#86B300" +theme[upload_mid]="#F2AE49" +theme[upload_end]="#F07178" diff --git a/colors/base16-ayu-mirage.theme b/colors/base16-ayu-mirage.theme new file mode 100644 index 0000000..d6193ca --- /dev/null +++ b/colors/base16-ayu-mirage.theme @@ -0,0 +1,90 @@ +# +# +# name: Ayu Mirage +# author: Khue Nguyen <Z5483Y@gmail.com> +# slug: ayu-mirage +# slug-underscored: ayu_mirage +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#171B24" + +# Main text color +theme[main_fg]="#CCCAC2" + +# Title color for boxes +theme[title]="#CCCAC2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#5CCFE6" + +# Background color of selected item in processes box +theme[selected_bg]="#1F2430" + +# Foreground color of selected item in processes box +theme[selected_fg]="#CCCAC2" + +# Color of inactive/disabled text +theme[inactive_fg]="#8A9199" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#5CCFE6" + +# Cpu box outline color +theme[cpu_box]="#8A9199" + +# Memory/disks box outline color +theme[mem_box]="#8A9199" + +# Net up/down box outline color +theme[net_box]="#8A9199" + +# Processes box outline color +theme[proc_box]="#8A9199" + +# Box divider line and small boxes line color +theme[div_line]="#8A9199" + +# Temperature graph colors +theme[temp_start]="#D5FF80" +theme[temp_mid]="#FFD173" +theme[temp_end]="#F28779" + +# CPU graph colors +theme[cpu_start]="#D5FF80" +theme[cpu_mid]="#FFD173" +theme[cpu_end]="#F28779" + +# Mem/Disk free meter +theme[free_start]="#D5FF80" +theme[free_mid]="#FFD173" +theme[free_end]="#F28779" + +# Mem/Disk cached meter +theme[cached_start]="#D5FF80" +theme[cached_mid]="#FFD173" +theme[cached_end]="#F28779" + +# Mem/Disk available meter +theme[available_start]="#D5FF80" +theme[available_mid]="#FFD173" +theme[available_end]="#F28779" + +# Mem/Disk used meter +theme[used_start]="#D5FF80" +theme[used_mid]="#FFD173" +theme[used_end]="#F28779" + +# Download graph colors +theme[download_start]="#D5FF80" +theme[download_mid]="#FFD173" +theme[download_end]="#F28779" + +# Upload graph colors +theme[upload_start]="#D5FF80" +theme[upload_mid]="#FFD173" +theme[upload_end]="#F28779" diff --git a/colors/base16-aztec.theme b/colors/base16-aztec.theme new file mode 100644 index 0000000..d4484fa --- /dev/null +++ b/colors/base16-aztec.theme @@ -0,0 +1,90 @@ +# +# +# name: Aztec +# author: TheNeverMan (github.com/TheNeverMan) +# slug: aztec +# slug-underscored: aztec +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#101600" + +# Main text color +theme[main_fg]="#FFDA51" + +# Title color for boxes +theme[title]="#FFDA51" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#5B4A9F" + +# Background color of selected item in processes box +theme[selected_bg]="#1A1E01" + +# Foreground color of selected item in processes box +theme[selected_fg]="#FFDA51" + +# Color of inactive/disabled text +theme[inactive_fg]="#FFD129" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#5B4A9F" + +# Cpu box outline color +theme[cpu_box]="#FFD129" + +# Memory/disks box outline color +theme[mem_box]="#FFD129" + +# Net up/down box outline color +theme[net_box]="#FFD129" + +# Processes box outline color +theme[proc_box]="#FFD129" + +# Box divider line and small boxes line color +theme[div_line]="#FFD129" + +# Temperature graph colors +theme[temp_start]="#63D932" +theme[temp_mid]="#EEBB00" +theme[temp_end]="#EE2E00" + +# CPU graph colors +theme[cpu_start]="#63D932" +theme[cpu_mid]="#EEBB00" +theme[cpu_end]="#EE2E00" + +# Mem/Disk free meter +theme[free_start]="#63D932" +theme[free_mid]="#EEBB00" +theme[free_end]="#EE2E00" + +# Mem/Disk cached meter +theme[cached_start]="#63D932" +theme[cached_mid]="#EEBB00" +theme[cached_end]="#EE2E00" + +# Mem/Disk available meter +theme[available_start]="#63D932" +theme[available_mid]="#EEBB00" +theme[available_end]="#EE2E00" + +# Mem/Disk used meter +theme[used_start]="#63D932" +theme[used_mid]="#EEBB00" +theme[used_end]="#EE2E00" + +# Download graph colors +theme[download_start]="#63D932" +theme[download_mid]="#EEBB00" +theme[download_end]="#EE2E00" + +# Upload graph colors +theme[upload_start]="#63D932" +theme[upload_mid]="#EEBB00" +theme[upload_end]="#EE2E00" diff --git a/colors/base16-bespin.theme b/colors/base16-bespin.theme new file mode 100644 index 0000000..27165fe --- /dev/null +++ b/colors/base16-bespin.theme @@ -0,0 +1,90 @@ +# +# +# name: Bespin +# author: Jan T. Sott +# slug: bespin +# slug-underscored: bespin +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#28211c" + +# Main text color +theme[main_fg]="#8a8986" + +# Title color for boxes +theme[title]="#8a8986" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#5ea6ea" + +# Background color of selected item in processes box +theme[selected_bg]="#36312e" + +# Foreground color of selected item in processes box +theme[selected_fg]="#8a8986" + +# Color of inactive/disabled text +theme[inactive_fg]="#797977" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#5ea6ea" + +# Cpu box outline color +theme[cpu_box]="#797977" + +# Memory/disks box outline color +theme[mem_box]="#797977" + +# Net up/down box outline color +theme[net_box]="#797977" + +# Processes box outline color +theme[proc_box]="#797977" + +# Box divider line and small boxes line color +theme[div_line]="#797977" + +# Temperature graph colors +theme[temp_start]="#54be0d" +theme[temp_mid]="#f9ee98" +theme[temp_end]="#cf6a4c" + +# CPU graph colors +theme[cpu_start]="#54be0d" +theme[cpu_mid]="#f9ee98" +theme[cpu_end]="#cf6a4c" + +# Mem/Disk free meter +theme[free_start]="#54be0d" +theme[free_mid]="#f9ee98" +theme[free_end]="#cf6a4c" + +# Mem/Disk cached meter +theme[cached_start]="#54be0d" +theme[cached_mid]="#f9ee98" +theme[cached_end]="#cf6a4c" + +# Mem/Disk available meter +theme[available_start]="#54be0d" +theme[available_mid]="#f9ee98" +theme[available_end]="#cf6a4c" + +# Mem/Disk used meter +theme[used_start]="#54be0d" +theme[used_mid]="#f9ee98" +theme[used_end]="#cf6a4c" + +# Download graph colors +theme[download_start]="#54be0d" +theme[download_mid]="#f9ee98" +theme[download_end]="#cf6a4c" + +# Upload graph colors +theme[upload_start]="#54be0d" +theme[upload_mid]="#f9ee98" +theme[upload_end]="#cf6a4c" diff --git a/colors/base16-black-metal-bathory.theme b/colors/base16-black-metal-bathory.theme new file mode 100644 index 0000000..4f5a4ed --- /dev/null +++ b/colors/base16-black-metal-bathory.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal (Bathory) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-bathory +# slug-underscored: black_metal_bathory +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#fbcb97" +theme[temp_mid]="#e78a53" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#fbcb97" +theme[cpu_mid]="#e78a53" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#fbcb97" +theme[free_mid]="#e78a53" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#fbcb97" +theme[cached_mid]="#e78a53" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#fbcb97" +theme[available_mid]="#e78a53" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#fbcb97" +theme[used_mid]="#e78a53" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#fbcb97" +theme[download_mid]="#e78a53" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#fbcb97" +theme[upload_mid]="#e78a53" +theme[upload_end]="#5f8787" diff --git a/colors/base16-black-metal-burzum.theme b/colors/base16-black-metal-burzum.theme new file mode 100644 index 0000000..6b82016 --- /dev/null +++ b/colors/base16-black-metal-burzum.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal (Burzum) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-burzum +# slug-underscored: black_metal_burzum +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#ddeecc" +theme[temp_mid]="#99bbaa" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#ddeecc" +theme[cpu_mid]="#99bbaa" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#ddeecc" +theme[free_mid]="#99bbaa" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#ddeecc" +theme[cached_mid]="#99bbaa" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#ddeecc" +theme[available_mid]="#99bbaa" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#ddeecc" +theme[used_mid]="#99bbaa" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#ddeecc" +theme[download_mid]="#99bbaa" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#ddeecc" +theme[upload_mid]="#99bbaa" +theme[upload_end]="#5f8787" diff --git a/colors/base16-black-metal-dark-funeral.theme b/colors/base16-black-metal-dark-funeral.theme new file mode 100644 index 0000000..ea91b23 --- /dev/null +++ b/colors/base16-black-metal-dark-funeral.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal (Dark Funeral) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-dark-funeral +# slug-underscored: black_metal_dark_funeral +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#d0dfee" +theme[temp_mid]="#5f81a5" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#d0dfee" +theme[cpu_mid]="#5f81a5" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#d0dfee" +theme[free_mid]="#5f81a5" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#d0dfee" +theme[cached_mid]="#5f81a5" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#d0dfee" +theme[available_mid]="#5f81a5" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#d0dfee" +theme[used_mid]="#5f81a5" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#d0dfee" +theme[download_mid]="#5f81a5" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#d0dfee" +theme[upload_mid]="#5f81a5" +theme[upload_end]="#5f8787" diff --git a/colors/base16-black-metal-gorgoroth.theme b/colors/base16-black-metal-gorgoroth.theme new file mode 100644 index 0000000..36111a1 --- /dev/null +++ b/colors/base16-black-metal-gorgoroth.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal (Gorgoroth) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-gorgoroth +# slug-underscored: black_metal_gorgoroth +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#9b8d7f" +theme[temp_mid]="#8c7f70" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#9b8d7f" +theme[cpu_mid]="#8c7f70" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#9b8d7f" +theme[free_mid]="#8c7f70" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#9b8d7f" +theme[cached_mid]="#8c7f70" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#9b8d7f" +theme[available_mid]="#8c7f70" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#9b8d7f" +theme[used_mid]="#8c7f70" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#9b8d7f" +theme[download_mid]="#8c7f70" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#9b8d7f" +theme[upload_mid]="#8c7f70" +theme[upload_end]="#5f8787" diff --git a/colors/base16-black-metal-immortal.theme b/colors/base16-black-metal-immortal.theme new file mode 100644 index 0000000..df7580d --- /dev/null +++ b/colors/base16-black-metal-immortal.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal (Immortal) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-immortal +# slug-underscored: black_metal_immortal +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#7799bb" +theme[temp_mid]="#556677" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#7799bb" +theme[cpu_mid]="#556677" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#7799bb" +theme[free_mid]="#556677" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#7799bb" +theme[cached_mid]="#556677" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#7799bb" +theme[available_mid]="#556677" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#7799bb" +theme[used_mid]="#556677" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#7799bb" +theme[download_mid]="#556677" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#7799bb" +theme[upload_mid]="#556677" +theme[upload_end]="#5f8787" diff --git a/colors/base16-black-metal-khold.theme b/colors/base16-black-metal-khold.theme new file mode 100644 index 0000000..2b24a98 --- /dev/null +++ b/colors/base16-black-metal-khold.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal (Khold) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-khold +# slug-underscored: black_metal_khold +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#eceee3" +theme[temp_mid]="#974b46" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#eceee3" +theme[cpu_mid]="#974b46" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#eceee3" +theme[free_mid]="#974b46" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#eceee3" +theme[cached_mid]="#974b46" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#eceee3" +theme[available_mid]="#974b46" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#eceee3" +theme[used_mid]="#974b46" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#eceee3" +theme[download_mid]="#974b46" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#eceee3" +theme[upload_mid]="#974b46" +theme[upload_end]="#5f8787" diff --git a/colors/base16-black-metal-marduk.theme b/colors/base16-black-metal-marduk.theme new file mode 100644 index 0000000..ce61abf --- /dev/null +++ b/colors/base16-black-metal-marduk.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal (Marduk) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-marduk +# slug-underscored: black_metal_marduk +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#a5aaa7" +theme[temp_mid]="#626b67" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#a5aaa7" +theme[cpu_mid]="#626b67" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#a5aaa7" +theme[free_mid]="#626b67" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#a5aaa7" +theme[cached_mid]="#626b67" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#a5aaa7" +theme[available_mid]="#626b67" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#a5aaa7" +theme[used_mid]="#626b67" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#a5aaa7" +theme[download_mid]="#626b67" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#a5aaa7" +theme[upload_mid]="#626b67" +theme[upload_end]="#5f8787" diff --git a/colors/base16-black-metal-mayhem.theme b/colors/base16-black-metal-mayhem.theme new file mode 100644 index 0000000..7ac871e --- /dev/null +++ b/colors/base16-black-metal-mayhem.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal (Mayhem) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-mayhem +# slug-underscored: black_metal_mayhem +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#f3ecd4" +theme[temp_mid]="#eecc6c" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#f3ecd4" +theme[cpu_mid]="#eecc6c" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#f3ecd4" +theme[free_mid]="#eecc6c" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#f3ecd4" +theme[cached_mid]="#eecc6c" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#f3ecd4" +theme[available_mid]="#eecc6c" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#f3ecd4" +theme[used_mid]="#eecc6c" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#f3ecd4" +theme[download_mid]="#eecc6c" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#f3ecd4" +theme[upload_mid]="#eecc6c" +theme[upload_end]="#5f8787" diff --git a/colors/base16-black-metal-nile.theme b/colors/base16-black-metal-nile.theme new file mode 100644 index 0000000..a75832e --- /dev/null +++ b/colors/base16-black-metal-nile.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal (Nile) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-nile +# slug-underscored: black_metal_nile +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#aa9988" +theme[temp_mid]="#777755" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#aa9988" +theme[cpu_mid]="#777755" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#aa9988" +theme[free_mid]="#777755" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#aa9988" +theme[cached_mid]="#777755" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#aa9988" +theme[available_mid]="#777755" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#aa9988" +theme[used_mid]="#777755" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#aa9988" +theme[download_mid]="#777755" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#aa9988" +theme[upload_mid]="#777755" +theme[upload_end]="#5f8787" diff --git a/colors/base16-black-metal-venom.theme b/colors/base16-black-metal-venom.theme new file mode 100644 index 0000000..c09c2ff --- /dev/null +++ b/colors/base16-black-metal-venom.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal (Venom) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-venom +# slug-underscored: black_metal_venom +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#f8f7f2" +theme[temp_mid]="#79241f" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#f8f7f2" +theme[cpu_mid]="#79241f" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#f8f7f2" +theme[free_mid]="#79241f" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#f8f7f2" +theme[cached_mid]="#79241f" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#f8f7f2" +theme[available_mid]="#79241f" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#f8f7f2" +theme[used_mid]="#79241f" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#f8f7f2" +theme[download_mid]="#79241f" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#f8f7f2" +theme[upload_mid]="#79241f" +theme[upload_end]="#5f8787" diff --git a/colors/base16-black-metal.theme b/colors/base16-black-metal.theme new file mode 100644 index 0000000..349ea6e --- /dev/null +++ b/colors/base16-black-metal.theme @@ -0,0 +1,90 @@ +# +# +# name: Black Metal +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal +# slug-underscored: black_metal +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c1c1c1" + +# Title color for boxes +theme[title]="#c1c1c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#888888" + +# Background color of selected item in processes box +theme[selected_bg]="#121212" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c1c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#888888" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#dd9999" +theme[temp_mid]="#a06666" +theme[temp_end]="#5f8787" + +# CPU graph colors +theme[cpu_start]="#dd9999" +theme[cpu_mid]="#a06666" +theme[cpu_end]="#5f8787" + +# Mem/Disk free meter +theme[free_start]="#dd9999" +theme[free_mid]="#a06666" +theme[free_end]="#5f8787" + +# Mem/Disk cached meter +theme[cached_start]="#dd9999" +theme[cached_mid]="#a06666" +theme[cached_end]="#5f8787" + +# Mem/Disk available meter +theme[available_start]="#dd9999" +theme[available_mid]="#a06666" +theme[available_end]="#5f8787" + +# Mem/Disk used meter +theme[used_start]="#dd9999" +theme[used_mid]="#a06666" +theme[used_end]="#5f8787" + +# Download graph colors +theme[download_start]="#dd9999" +theme[download_mid]="#a06666" +theme[download_end]="#5f8787" + +# Upload graph colors +theme[upload_start]="#dd9999" +theme[upload_mid]="#a06666" +theme[upload_end]="#5f8787" diff --git a/colors/base16-blueforest.theme b/colors/base16-blueforest.theme new file mode 100644 index 0000000..a05b6a7 --- /dev/null +++ b/colors/base16-blueforest.theme @@ -0,0 +1,90 @@ +# +# +# name: Blue Forest +# author: alonsodomin (https://github.com/alonsodomin) +# slug: blueforest +# slug-underscored: blueforest +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#141F2E" + +# Main text color +theme[main_fg]="#FFCC33" + +# Title color for boxes +theme[title]="#FFCC33" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#a2cff5" + +# Background color of selected item in processes box +theme[selected_bg]="#1e5c1e" + +# Foreground color of selected item in processes box +theme[selected_fg]="#FFCC33" + +# Color of inactive/disabled text +theme[inactive_fg]="#1e5c1e" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#a2cff5" + +# Cpu box outline color +theme[cpu_box]="#1e5c1e" + +# Memory/disks box outline color +theme[mem_box]="#1e5c1e" + +# Net up/down box outline color +theme[net_box]="#1e5c1e" + +# Processes box outline color +theme[proc_box]="#1e5c1e" + +# Box divider line and small boxes line color +theme[div_line]="#1e5c1e" + +# Temperature graph colors +theme[temp_start]="#80ff80" +theme[temp_mid]="#91CCFF" +theme[temp_end]="#fffab1" + +# CPU graph colors +theme[cpu_start]="#80ff80" +theme[cpu_mid]="#91CCFF" +theme[cpu_end]="#fffab1" + +# Mem/Disk free meter +theme[free_start]="#80ff80" +theme[free_mid]="#91CCFF" +theme[free_end]="#fffab1" + +# Mem/Disk cached meter +theme[cached_start]="#80ff80" +theme[cached_mid]="#91CCFF" +theme[cached_end]="#fffab1" + +# Mem/Disk available meter +theme[available_start]="#80ff80" +theme[available_mid]="#91CCFF" +theme[available_end]="#fffab1" + +# Mem/Disk used meter +theme[used_start]="#80ff80" +theme[used_mid]="#91CCFF" +theme[used_end]="#fffab1" + +# Download graph colors +theme[download_start]="#80ff80" +theme[download_mid]="#91CCFF" +theme[download_end]="#fffab1" + +# Upload graph colors +theme[upload_start]="#80ff80" +theme[upload_mid]="#91CCFF" +theme[upload_end]="#fffab1" diff --git a/colors/base16-blueish.theme b/colors/base16-blueish.theme new file mode 100644 index 0000000..b586a19 --- /dev/null +++ b/colors/base16-blueish.theme @@ -0,0 +1,90 @@ +# +# +# name: Blueish +# author: Ben Mayoras +# slug: blueish +# slug-underscored: blueish +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#182430" + +# Main text color +theme[main_fg]="#C8E1F8" + +# Title color for boxes +theme[title]="#C8E1F8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#82AAFF" + +# Background color of selected item in processes box +theme[selected_bg]="#243C54" + +# Foreground color of selected item in processes box +theme[selected_fg]="#C8E1F8" + +# Color of inactive/disabled text +theme[inactive_fg]="#74AFE7" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#82AAFF" + +# Cpu box outline color +theme[cpu_box]="#74AFE7" + +# Memory/disks box outline color +theme[mem_box]="#74AFE7" + +# Net up/down box outline color +theme[net_box]="#74AFE7" + +# Processes box outline color +theme[proc_box]="#74AFE7" + +# Box divider line and small boxes line color +theme[div_line]="#74AFE7" + +# Temperature graph colors +theme[temp_start]="#C3E88D" +theme[temp_mid]="#82AAFF" +theme[temp_end]="#4CE587" + +# CPU graph colors +theme[cpu_start]="#C3E88D" +theme[cpu_mid]="#82AAFF" +theme[cpu_end]="#4CE587" + +# Mem/Disk free meter +theme[free_start]="#C3E88D" +theme[free_mid]="#82AAFF" +theme[free_end]="#4CE587" + +# Mem/Disk cached meter +theme[cached_start]="#C3E88D" +theme[cached_mid]="#82AAFF" +theme[cached_end]="#4CE587" + +# Mem/Disk available meter +theme[available_start]="#C3E88D" +theme[available_mid]="#82AAFF" +theme[available_end]="#4CE587" + +# Mem/Disk used meter +theme[used_start]="#C3E88D" +theme[used_mid]="#82AAFF" +theme[used_end]="#4CE587" + +# Download graph colors +theme[download_start]="#C3E88D" +theme[download_mid]="#82AAFF" +theme[download_end]="#4CE587" + +# Upload graph colors +theme[upload_start]="#C3E88D" +theme[upload_mid]="#82AAFF" +theme[upload_end]="#4CE587" diff --git a/colors/base16-brewer.theme b/colors/base16-brewer.theme new file mode 100644 index 0000000..4d396d4 --- /dev/null +++ b/colors/base16-brewer.theme @@ -0,0 +1,90 @@ +# +# +# name: Brewer +# author: Timothée Poisot (http://github.com/tpoisot) +# slug: brewer +# slug-underscored: brewer +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#0c0d0e" + +# Main text color +theme[main_fg]="#b7b8b9" + +# Title color for boxes +theme[title]="#b7b8b9" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3182bd" + +# Background color of selected item in processes box +theme[selected_bg]="#2e2f30" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b7b8b9" + +# Color of inactive/disabled text +theme[inactive_fg]="#959697" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3182bd" + +# Cpu box outline color +theme[cpu_box]="#959697" + +# Memory/disks box outline color +theme[mem_box]="#959697" + +# Net up/down box outline color +theme[net_box]="#959697" + +# Processes box outline color +theme[proc_box]="#959697" + +# Box divider line and small boxes line color +theme[div_line]="#959697" + +# Temperature graph colors +theme[temp_start]="#31a354" +theme[temp_mid]="#dca060" +theme[temp_end]="#e31a1c" + +# CPU graph colors +theme[cpu_start]="#31a354" +theme[cpu_mid]="#dca060" +theme[cpu_end]="#e31a1c" + +# Mem/Disk free meter +theme[free_start]="#31a354" +theme[free_mid]="#dca060" +theme[free_end]="#e31a1c" + +# Mem/Disk cached meter +theme[cached_start]="#31a354" +theme[cached_mid]="#dca060" +theme[cached_end]="#e31a1c" + +# Mem/Disk available meter +theme[available_start]="#31a354" +theme[available_mid]="#dca060" +theme[available_end]="#e31a1c" + +# Mem/Disk used meter +theme[used_start]="#31a354" +theme[used_mid]="#dca060" +theme[used_end]="#e31a1c" + +# Download graph colors +theme[download_start]="#31a354" +theme[download_mid]="#dca060" +theme[download_end]="#e31a1c" + +# Upload graph colors +theme[upload_start]="#31a354" +theme[upload_mid]="#dca060" +theme[upload_end]="#e31a1c" diff --git a/colors/base16-bright.theme b/colors/base16-bright.theme new file mode 100644 index 0000000..b07a98f --- /dev/null +++ b/colors/base16-bright.theme @@ -0,0 +1,90 @@ +# +# +# name: Bright +# author: Chris Kempson (http://chriskempson.com) +# slug: bright +# slug-underscored: bright +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#e0e0e0" + +# Title color for boxes +theme[title]="#e0e0e0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6fb3d2" + +# Background color of selected item in processes box +theme[selected_bg]="#303030" + +# Foreground color of selected item in processes box +theme[selected_fg]="#e0e0e0" + +# Color of inactive/disabled text +theme[inactive_fg]="#d0d0d0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6fb3d2" + +# Cpu box outline color +theme[cpu_box]="#d0d0d0" + +# Memory/disks box outline color +theme[mem_box]="#d0d0d0" + +# Net up/down box outline color +theme[net_box]="#d0d0d0" + +# Processes box outline color +theme[proc_box]="#d0d0d0" + +# Box divider line and small boxes line color +theme[div_line]="#d0d0d0" + +# Temperature graph colors +theme[temp_start]="#a1c659" +theme[temp_mid]="#fda331" +theme[temp_end]="#fb0120" + +# CPU graph colors +theme[cpu_start]="#a1c659" +theme[cpu_mid]="#fda331" +theme[cpu_end]="#fb0120" + +# Mem/Disk free meter +theme[free_start]="#a1c659" +theme[free_mid]="#fda331" +theme[free_end]="#fb0120" + +# Mem/Disk cached meter +theme[cached_start]="#a1c659" +theme[cached_mid]="#fda331" +theme[cached_end]="#fb0120" + +# Mem/Disk available meter +theme[available_start]="#a1c659" +theme[available_mid]="#fda331" +theme[available_end]="#fb0120" + +# Mem/Disk used meter +theme[used_start]="#a1c659" +theme[used_mid]="#fda331" +theme[used_end]="#fb0120" + +# Download graph colors +theme[download_start]="#a1c659" +theme[download_mid]="#fda331" +theme[download_end]="#fb0120" + +# Upload graph colors +theme[upload_start]="#a1c659" +theme[upload_mid]="#fda331" +theme[upload_end]="#fb0120" diff --git a/colors/base16-brogrammer.theme b/colors/base16-brogrammer.theme new file mode 100644 index 0000000..c851760 --- /dev/null +++ b/colors/base16-brogrammer.theme @@ -0,0 +1,90 @@ +# +# +# name: Brogrammer +# author: Vik Ramanujam (http://github.com/piggyslasher) +# slug: brogrammer +# slug-underscored: brogrammer +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1f1f1f" + +# Main text color +theme[main_fg]="#4e5ab7" + +# Title color for boxes +theme[title]="#4e5ab7" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#5350b9" + +# Background color of selected item in processes box +theme[selected_bg]="#f81118" + +# Foreground color of selected item in processes box +theme[selected_fg]="#4e5ab7" + +# Color of inactive/disabled text +theme[inactive_fg]="#2a84d2" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#5350b9" + +# Cpu box outline color +theme[cpu_box]="#2a84d2" + +# Memory/disks box outline color +theme[mem_box]="#2a84d2" + +# Net up/down box outline color +theme[net_box]="#2a84d2" + +# Processes box outline color +theme[proc_box]="#2a84d2" + +# Box divider line and small boxes line color +theme[div_line]="#2a84d2" + +# Temperature graph colors +theme[temp_start]="#f3bd09" +theme[temp_mid]="#1dd361" +theme[temp_end]="#d6dbe5" + +# CPU graph colors +theme[cpu_start]="#f3bd09" +theme[cpu_mid]="#1dd361" +theme[cpu_end]="#d6dbe5" + +# Mem/Disk free meter +theme[free_start]="#f3bd09" +theme[free_mid]="#1dd361" +theme[free_end]="#d6dbe5" + +# Mem/Disk cached meter +theme[cached_start]="#f3bd09" +theme[cached_mid]="#1dd361" +theme[cached_end]="#d6dbe5" + +# Mem/Disk available meter +theme[available_start]="#f3bd09" +theme[available_mid]="#1dd361" +theme[available_end]="#d6dbe5" + +# Mem/Disk used meter +theme[used_start]="#f3bd09" +theme[used_mid]="#1dd361" +theme[used_end]="#d6dbe5" + +# Download graph colors +theme[download_start]="#f3bd09" +theme[download_mid]="#1dd361" +theme[download_end]="#d6dbe5" + +# Upload graph colors +theme[upload_start]="#f3bd09" +theme[upload_mid]="#1dd361" +theme[upload_end]="#d6dbe5" diff --git a/colors/base16-brushtrees-dark.theme b/colors/base16-brushtrees-dark.theme new file mode 100644 index 0000000..847501f --- /dev/null +++ b/colors/base16-brushtrees-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Brush Trees Dark +# author: Abraham White <abelincoln.white@gmail.com> +# slug: brushtrees-dark +# slug-underscored: brushtrees_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#485867" + +# Main text color +theme[main_fg]="#B0C5C8" + +# Title color for boxes +theme[title]="#B0C5C8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#868cb3" + +# Background color of selected item in processes box +theme[selected_bg]="#5A6D7A" + +# Foreground color of selected item in processes box +theme[selected_fg]="#B0C5C8" + +# Color of inactive/disabled text +theme[inactive_fg]="#98AFB5" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#868cb3" + +# Cpu box outline color +theme[cpu_box]="#98AFB5" + +# Memory/disks box outline color +theme[mem_box]="#98AFB5" + +# Net up/down box outline color +theme[net_box]="#98AFB5" + +# Processes box outline color +theme[proc_box]="#98AFB5" + +# Box divider line and small boxes line color +theme[div_line]="#98AFB5" + +# Temperature graph colors +theme[temp_start]="#87b386" +theme[temp_mid]="#aab386" +theme[temp_end]="#b38686" + +# CPU graph colors +theme[cpu_start]="#87b386" +theme[cpu_mid]="#aab386" +theme[cpu_end]="#b38686" + +# Mem/Disk free meter +theme[free_start]="#87b386" +theme[free_mid]="#aab386" +theme[free_end]="#b38686" + +# Mem/Disk cached meter +theme[cached_start]="#87b386" +theme[cached_mid]="#aab386" +theme[cached_end]="#b38686" + +# Mem/Disk available meter +theme[available_start]="#87b386" +theme[available_mid]="#aab386" +theme[available_end]="#b38686" + +# Mem/Disk used meter +theme[used_start]="#87b386" +theme[used_mid]="#aab386" +theme[used_end]="#b38686" + +# Download graph colors +theme[download_start]="#87b386" +theme[download_mid]="#aab386" +theme[download_end]="#b38686" + +# Upload graph colors +theme[upload_start]="#87b386" +theme[upload_mid]="#aab386" +theme[upload_end]="#b38686" diff --git a/colors/base16-brushtrees.theme b/colors/base16-brushtrees.theme new file mode 100644 index 0000000..5a05b35 --- /dev/null +++ b/colors/base16-brushtrees.theme @@ -0,0 +1,90 @@ +# +# +# name: Brush Trees +# author: Abraham White <abelincoln.white@gmail.com> +# slug: brushtrees +# slug-underscored: brushtrees +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#E3EFEF" + +# Main text color +theme[main_fg]="#6D828E" + +# Title color for boxes +theme[title]="#6D828E" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#868cb3" + +# Background color of selected item in processes box +theme[selected_bg]="#C9DBDC" + +# Foreground color of selected item in processes box +theme[selected_fg]="#6D828E" + +# Color of inactive/disabled text +theme[inactive_fg]="#8299A1" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#868cb3" + +# Cpu box outline color +theme[cpu_box]="#8299A1" + +# Memory/disks box outline color +theme[mem_box]="#8299A1" + +# Net up/down box outline color +theme[net_box]="#8299A1" + +# Processes box outline color +theme[proc_box]="#8299A1" + +# Box divider line and small boxes line color +theme[div_line]="#8299A1" + +# Temperature graph colors +theme[temp_start]="#87b386" +theme[temp_mid]="#aab386" +theme[temp_end]="#b38686" + +# CPU graph colors +theme[cpu_start]="#87b386" +theme[cpu_mid]="#aab386" +theme[cpu_end]="#b38686" + +# Mem/Disk free meter +theme[free_start]="#87b386" +theme[free_mid]="#aab386" +theme[free_end]="#b38686" + +# Mem/Disk cached meter +theme[cached_start]="#87b386" +theme[cached_mid]="#aab386" +theme[cached_end]="#b38686" + +# Mem/Disk available meter +theme[available_start]="#87b386" +theme[available_mid]="#aab386" +theme[available_end]="#b38686" + +# Mem/Disk used meter +theme[used_start]="#87b386" +theme[used_mid]="#aab386" +theme[used_end]="#b38686" + +# Download graph colors +theme[download_start]="#87b386" +theme[download_mid]="#aab386" +theme[download_end]="#b38686" + +# Upload graph colors +theme[upload_start]="#87b386" +theme[upload_mid]="#aab386" +theme[upload_end]="#b38686" diff --git a/colors/base16-caroline.theme b/colors/base16-caroline.theme new file mode 100644 index 0000000..7daa3b1 --- /dev/null +++ b/colors/base16-caroline.theme @@ -0,0 +1,90 @@ +# +# +# name: caroline +# author: ed (https://codeberg.org/ed) +# slug: caroline +# slug-underscored: caroline +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1c1213" + +# Main text color +theme[main_fg]="#a87569" + +# Title color for boxes +theme[title]="#a87569" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#684c59" + +# Background color of selected item in processes box +theme[selected_bg]="#3a2425" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a87569" + +# Color of inactive/disabled text +theme[inactive_fg]="#8b5d57" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#684c59" + +# Cpu box outline color +theme[cpu_box]="#8b5d57" + +# Memory/disks box outline color +theme[mem_box]="#8b5d57" + +# Net up/down box outline color +theme[net_box]="#8b5d57" + +# Processes box outline color +theme[proc_box]="#8b5d57" + +# Box divider line and small boxes line color +theme[div_line]="#8b5d57" + +# Temperature graph colors +theme[temp_start]="#806c61" +theme[temp_mid]="#f28171" +theme[temp_end]="#c24f57" + +# CPU graph colors +theme[cpu_start]="#806c61" +theme[cpu_mid]="#f28171" +theme[cpu_end]="#c24f57" + +# Mem/Disk free meter +theme[free_start]="#806c61" +theme[free_mid]="#f28171" +theme[free_end]="#c24f57" + +# Mem/Disk cached meter +theme[cached_start]="#806c61" +theme[cached_mid]="#f28171" +theme[cached_end]="#c24f57" + +# Mem/Disk available meter +theme[available_start]="#806c61" +theme[available_mid]="#f28171" +theme[available_end]="#c24f57" + +# Mem/Disk used meter +theme[used_start]="#806c61" +theme[used_mid]="#f28171" +theme[used_end]="#c24f57" + +# Download graph colors +theme[download_start]="#806c61" +theme[download_mid]="#f28171" +theme[download_end]="#c24f57" + +# Upload graph colors +theme[upload_start]="#806c61" +theme[upload_mid]="#f28171" +theme[upload_end]="#c24f57" diff --git a/colors/base16-catppuccin-frappe.theme b/colors/base16-catppuccin-frappe.theme new file mode 100644 index 0000000..a4df295 --- /dev/null +++ b/colors/base16-catppuccin-frappe.theme @@ -0,0 +1,90 @@ +# +# +# name: Catppuccin Frappe +# author: https://github.com/catppuccin/catppuccin +# slug: catppuccin-frappe +# slug-underscored: catppuccin_frappe +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#303446" + +# Main text color +theme[main_fg]="#c6d0f5" + +# Title color for boxes +theme[title]="#c6d0f5" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8caaee" + +# Background color of selected item in processes box +theme[selected_bg]="#292c3c" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c6d0f5" + +# Color of inactive/disabled text +theme[inactive_fg]="#626880" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8caaee" + +# Cpu box outline color +theme[cpu_box]="#626880" + +# Memory/disks box outline color +theme[mem_box]="#626880" + +# Net up/down box outline color +theme[net_box]="#626880" + +# Processes box outline color +theme[proc_box]="#626880" + +# Box divider line and small boxes line color +theme[div_line]="#626880" + +# Temperature graph colors +theme[temp_start]="#a6d189" +theme[temp_mid]="#e5c890" +theme[temp_end]="#e78284" + +# CPU graph colors +theme[cpu_start]="#a6d189" +theme[cpu_mid]="#e5c890" +theme[cpu_end]="#e78284" + +# Mem/Disk free meter +theme[free_start]="#a6d189" +theme[free_mid]="#e5c890" +theme[free_end]="#e78284" + +# Mem/Disk cached meter +theme[cached_start]="#a6d189" +theme[cached_mid]="#e5c890" +theme[cached_end]="#e78284" + +# Mem/Disk available meter +theme[available_start]="#a6d189" +theme[available_mid]="#e5c890" +theme[available_end]="#e78284" + +# Mem/Disk used meter +theme[used_start]="#a6d189" +theme[used_mid]="#e5c890" +theme[used_end]="#e78284" + +# Download graph colors +theme[download_start]="#a6d189" +theme[download_mid]="#e5c890" +theme[download_end]="#e78284" + +# Upload graph colors +theme[upload_start]="#a6d189" +theme[upload_mid]="#e5c890" +theme[upload_end]="#e78284" diff --git a/colors/base16-catppuccin-latte.theme b/colors/base16-catppuccin-latte.theme new file mode 100644 index 0000000..290f6b2 --- /dev/null +++ b/colors/base16-catppuccin-latte.theme @@ -0,0 +1,90 @@ +# +# +# name: Catppuccin Latte +# author: https://github.com/catppuccin/catppuccin +# slug: catppuccin-latte +# slug-underscored: catppuccin_latte +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +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]="#e6e9ef" + +# Foreground color of selected item in processes box +theme[selected_fg]="#4c4f69" + +# Color of inactive/disabled text +theme[inactive_fg]="#acb0be" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#1e66f5" + +# Cpu box outline color +theme[cpu_box]="#acb0be" + +# Memory/disks box outline color +theme[mem_box]="#acb0be" + +# Net up/down box outline color +theme[net_box]="#acb0be" + +# Processes box outline color +theme[proc_box]="#acb0be" + +# Box divider line and small boxes line color +theme[div_line]="#acb0be" + +# Temperature graph colors +theme[temp_start]="#40a02b" +theme[temp_mid]="#df8e1d" +theme[temp_end]="#d20f39" + +# CPU graph colors +theme[cpu_start]="#40a02b" +theme[cpu_mid]="#df8e1d" +theme[cpu_end]="#d20f39" + +# Mem/Disk free meter +theme[free_start]="#40a02b" +theme[free_mid]="#df8e1d" +theme[free_end]="#d20f39" + +# Mem/Disk cached meter +theme[cached_start]="#40a02b" +theme[cached_mid]="#df8e1d" +theme[cached_end]="#d20f39" + +# Mem/Disk available meter +theme[available_start]="#40a02b" +theme[available_mid]="#df8e1d" +theme[available_end]="#d20f39" + +# Mem/Disk used meter +theme[used_start]="#40a02b" +theme[used_mid]="#df8e1d" +theme[used_end]="#d20f39" + +# Download graph colors +theme[download_start]="#40a02b" +theme[download_mid]="#df8e1d" +theme[download_end]="#d20f39" + +# Upload graph colors +theme[upload_start]="#40a02b" +theme[upload_mid]="#df8e1d" +theme[upload_end]="#d20f39" diff --git a/colors/base16-catppuccin-macchiato.theme b/colors/base16-catppuccin-macchiato.theme new file mode 100644 index 0000000..6c882f8 --- /dev/null +++ b/colors/base16-catppuccin-macchiato.theme @@ -0,0 +1,90 @@ +# +# +# name: Catppuccin Macchiato +# author: https://github.com/catppuccin/catppuccin +# slug: catppuccin-macchiato +# slug-underscored: catppuccin_macchiato +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#24273a" + +# Main text color +theme[main_fg]="#cad3f5" + +# Title color for boxes +theme[title]="#cad3f5" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8aadf4" + +# Background color of selected item in processes box +theme[selected_bg]="#1e2030" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cad3f5" + +# Color of inactive/disabled text +theme[inactive_fg]="#5b6078" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8aadf4" + +# Cpu box outline color +theme[cpu_box]="#5b6078" + +# Memory/disks box outline color +theme[mem_box]="#5b6078" + +# Net up/down box outline color +theme[net_box]="#5b6078" + +# Processes box outline color +theme[proc_box]="#5b6078" + +# Box divider line and small boxes line color +theme[div_line]="#5b6078" + +# Temperature graph colors +theme[temp_start]="#a6da95" +theme[temp_mid]="#eed49f" +theme[temp_end]="#ed8796" + +# CPU graph colors +theme[cpu_start]="#a6da95" +theme[cpu_mid]="#eed49f" +theme[cpu_end]="#ed8796" + +# Mem/Disk free meter +theme[free_start]="#a6da95" +theme[free_mid]="#eed49f" +theme[free_end]="#ed8796" + +# Mem/Disk cached meter +theme[cached_start]="#a6da95" +theme[cached_mid]="#eed49f" +theme[cached_end]="#ed8796" + +# Mem/Disk available meter +theme[available_start]="#a6da95" +theme[available_mid]="#eed49f" +theme[available_end]="#ed8796" + +# Mem/Disk used meter +theme[used_start]="#a6da95" +theme[used_mid]="#eed49f" +theme[used_end]="#ed8796" + +# Download graph colors +theme[download_start]="#a6da95" +theme[download_mid]="#eed49f" +theme[download_end]="#ed8796" + +# Upload graph colors +theme[upload_start]="#a6da95" +theme[upload_mid]="#eed49f" +theme[upload_end]="#ed8796" diff --git a/colors/base16-catppuccin-mocha.theme b/colors/base16-catppuccin-mocha.theme new file mode 100644 index 0000000..2e4ea84 --- /dev/null +++ b/colors/base16-catppuccin-mocha.theme @@ -0,0 +1,90 @@ +# +# +# name: Catppuccin Mocha +# author: https://github.com/catppuccin/catppuccin +# slug: catppuccin-mocha +# slug-underscored: catppuccin_mocha +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1e1e2e" + +# Main text color +theme[main_fg]="#cdd6f4" + +# Title color for boxes +theme[title]="#cdd6f4" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#89b4fa" + +# Background color of selected item in processes box +theme[selected_bg]="#181825" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cdd6f4" + +# Color of inactive/disabled text +theme[inactive_fg]="#585b70" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#89b4fa" + +# Cpu box outline color +theme[cpu_box]="#585b70" + +# Memory/disks box outline color +theme[mem_box]="#585b70" + +# Net up/down box outline color +theme[net_box]="#585b70" + +# Processes box outline color +theme[proc_box]="#585b70" + +# Box divider line and small boxes line color +theme[div_line]="#585b70" + +# Temperature graph colors +theme[temp_start]="#a6e3a1" +theme[temp_mid]="#f9e2af" +theme[temp_end]="#f38ba8" + +# CPU graph colors +theme[cpu_start]="#a6e3a1" +theme[cpu_mid]="#f9e2af" +theme[cpu_end]="#f38ba8" + +# Mem/Disk free meter +theme[free_start]="#a6e3a1" +theme[free_mid]="#f9e2af" +theme[free_end]="#f38ba8" + +# Mem/Disk cached meter +theme[cached_start]="#a6e3a1" +theme[cached_mid]="#f9e2af" +theme[cached_end]="#f38ba8" + +# Mem/Disk available meter +theme[available_start]="#a6e3a1" +theme[available_mid]="#f9e2af" +theme[available_end]="#f38ba8" + +# Mem/Disk used meter +theme[used_start]="#a6e3a1" +theme[used_mid]="#f9e2af" +theme[used_end]="#f38ba8" + +# Download graph colors +theme[download_start]="#a6e3a1" +theme[download_mid]="#f9e2af" +theme[download_end]="#f38ba8" + +# Upload graph colors +theme[upload_start]="#a6e3a1" +theme[upload_mid]="#f9e2af" +theme[upload_end]="#f38ba8" diff --git a/colors/base16-chalk.theme b/colors/base16-chalk.theme new file mode 100644 index 0000000..3959edc --- /dev/null +++ b/colors/base16-chalk.theme @@ -0,0 +1,90 @@ +# +# +# name: Chalk +# author: Chris Kempson (http://chriskempson.com) +# slug: chalk +# slug-underscored: chalk +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#151515" + +# Main text color +theme[main_fg]="#d0d0d0" + +# Title color for boxes +theme[title]="#d0d0d0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6fc2ef" + +# Background color of selected item in processes box +theme[selected_bg]="#202020" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d0d0d0" + +# Color of inactive/disabled text +theme[inactive_fg]="#b0b0b0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6fc2ef" + +# Cpu box outline color +theme[cpu_box]="#b0b0b0" + +# Memory/disks box outline color +theme[mem_box]="#b0b0b0" + +# Net up/down box outline color +theme[net_box]="#b0b0b0" + +# Processes box outline color +theme[proc_box]="#b0b0b0" + +# Box divider line and small boxes line color +theme[div_line]="#b0b0b0" + +# Temperature graph colors +theme[temp_start]="#acc267" +theme[temp_mid]="#ddb26f" +theme[temp_end]="#fb9fb1" + +# CPU graph colors +theme[cpu_start]="#acc267" +theme[cpu_mid]="#ddb26f" +theme[cpu_end]="#fb9fb1" + +# Mem/Disk free meter +theme[free_start]="#acc267" +theme[free_mid]="#ddb26f" +theme[free_end]="#fb9fb1" + +# Mem/Disk cached meter +theme[cached_start]="#acc267" +theme[cached_mid]="#ddb26f" +theme[cached_end]="#fb9fb1" + +# Mem/Disk available meter +theme[available_start]="#acc267" +theme[available_mid]="#ddb26f" +theme[available_end]="#fb9fb1" + +# Mem/Disk used meter +theme[used_start]="#acc267" +theme[used_mid]="#ddb26f" +theme[used_end]="#fb9fb1" + +# Download graph colors +theme[download_start]="#acc267" +theme[download_mid]="#ddb26f" +theme[download_end]="#fb9fb1" + +# Upload graph colors +theme[upload_start]="#acc267" +theme[upload_mid]="#ddb26f" +theme[upload_end]="#fb9fb1" diff --git a/colors/base16-circus.theme b/colors/base16-circus.theme new file mode 100644 index 0000000..d8efc32 --- /dev/null +++ b/colors/base16-circus.theme @@ -0,0 +1,90 @@ +# +# +# name: Circus +# author: Stephan Boyer (https://github.com/stepchowfun) and Esther Wang (https://github.com/ewang12) +# slug: circus +# slug-underscored: circus +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#191919" + +# Main text color +theme[main_fg]="#a7a7a7" + +# Title color for boxes +theme[title]="#a7a7a7" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#639ee4" + +# Background color of selected item in processes box +theme[selected_bg]="#202020" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a7a7a7" + +# Color of inactive/disabled text +theme[inactive_fg]="#505050" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#639ee4" + +# Cpu box outline color +theme[cpu_box]="#505050" + +# Memory/disks box outline color +theme[mem_box]="#505050" + +# Net up/down box outline color +theme[net_box]="#505050" + +# Processes box outline color +theme[proc_box]="#505050" + +# Box divider line and small boxes line color +theme[div_line]="#505050" + +# Temperature graph colors +theme[temp_start]="#84b97c" +theme[temp_mid]="#c3ba63" +theme[temp_end]="#dc657d" + +# CPU graph colors +theme[cpu_start]="#84b97c" +theme[cpu_mid]="#c3ba63" +theme[cpu_end]="#dc657d" + +# Mem/Disk free meter +theme[free_start]="#84b97c" +theme[free_mid]="#c3ba63" +theme[free_end]="#dc657d" + +# Mem/Disk cached meter +theme[cached_start]="#84b97c" +theme[cached_mid]="#c3ba63" +theme[cached_end]="#dc657d" + +# Mem/Disk available meter +theme[available_start]="#84b97c" +theme[available_mid]="#c3ba63" +theme[available_end]="#dc657d" + +# Mem/Disk used meter +theme[used_start]="#84b97c" +theme[used_mid]="#c3ba63" +theme[used_end]="#dc657d" + +# Download graph colors +theme[download_start]="#84b97c" +theme[download_mid]="#c3ba63" +theme[download_end]="#dc657d" + +# Upload graph colors +theme[upload_start]="#84b97c" +theme[upload_mid]="#c3ba63" +theme[upload_end]="#dc657d" diff --git a/colors/base16-classic-dark.theme b/colors/base16-classic-dark.theme new file mode 100644 index 0000000..1496ec3 --- /dev/null +++ b/colors/base16-classic-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Classic Dark +# author: Jason Heeris (http://heeris.id.au) +# slug: classic-dark +# slug-underscored: classic_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#151515" + +# Main text color +theme[main_fg]="#D0D0D0" + +# Title color for boxes +theme[title]="#D0D0D0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6A9FB5" + +# Background color of selected item in processes box +theme[selected_bg]="#202020" + +# Foreground color of selected item in processes box +theme[selected_fg]="#D0D0D0" + +# Color of inactive/disabled text +theme[inactive_fg]="#B0B0B0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6A9FB5" + +# Cpu box outline color +theme[cpu_box]="#B0B0B0" + +# Memory/disks box outline color +theme[mem_box]="#B0B0B0" + +# Net up/down box outline color +theme[net_box]="#B0B0B0" + +# Processes box outline color +theme[proc_box]="#B0B0B0" + +# Box divider line and small boxes line color +theme[div_line]="#B0B0B0" + +# Temperature graph colors +theme[temp_start]="#90A959" +theme[temp_mid]="#F4BF75" +theme[temp_end]="#AC4142" + +# CPU graph colors +theme[cpu_start]="#90A959" +theme[cpu_mid]="#F4BF75" +theme[cpu_end]="#AC4142" + +# Mem/Disk free meter +theme[free_start]="#90A959" +theme[free_mid]="#F4BF75" +theme[free_end]="#AC4142" + +# Mem/Disk cached meter +theme[cached_start]="#90A959" +theme[cached_mid]="#F4BF75" +theme[cached_end]="#AC4142" + +# Mem/Disk available meter +theme[available_start]="#90A959" +theme[available_mid]="#F4BF75" +theme[available_end]="#AC4142" + +# Mem/Disk used meter +theme[used_start]="#90A959" +theme[used_mid]="#F4BF75" +theme[used_end]="#AC4142" + +# Download graph colors +theme[download_start]="#90A959" +theme[download_mid]="#F4BF75" +theme[download_end]="#AC4142" + +# Upload graph colors +theme[upload_start]="#90A959" +theme[upload_mid]="#F4BF75" +theme[upload_end]="#AC4142" diff --git a/colors/base16-classic-light.theme b/colors/base16-classic-light.theme new file mode 100644 index 0000000..e77891b --- /dev/null +++ b/colors/base16-classic-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Classic Light +# author: Jason Heeris (http://heeris.id.au) +# slug: classic-light +# slug-underscored: classic_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#F5F5F5" + +# Main text color +theme[main_fg]="#303030" + +# Title color for boxes +theme[title]="#303030" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6A9FB5" + +# Background color of selected item in processes box +theme[selected_bg]="#E0E0E0" + +# Foreground color of selected item in processes box +theme[selected_fg]="#303030" + +# Color of inactive/disabled text +theme[inactive_fg]="#505050" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6A9FB5" + +# Cpu box outline color +theme[cpu_box]="#505050" + +# Memory/disks box outline color +theme[mem_box]="#505050" + +# Net up/down box outline color +theme[net_box]="#505050" + +# Processes box outline color +theme[proc_box]="#505050" + +# Box divider line and small boxes line color +theme[div_line]="#505050" + +# Temperature graph colors +theme[temp_start]="#90A959" +theme[temp_mid]="#F4BF75" +theme[temp_end]="#AC4142" + +# CPU graph colors +theme[cpu_start]="#90A959" +theme[cpu_mid]="#F4BF75" +theme[cpu_end]="#AC4142" + +# Mem/Disk free meter +theme[free_start]="#90A959" +theme[free_mid]="#F4BF75" +theme[free_end]="#AC4142" + +# Mem/Disk cached meter +theme[cached_start]="#90A959" +theme[cached_mid]="#F4BF75" +theme[cached_end]="#AC4142" + +# Mem/Disk available meter +theme[available_start]="#90A959" +theme[available_mid]="#F4BF75" +theme[available_end]="#AC4142" + +# Mem/Disk used meter +theme[used_start]="#90A959" +theme[used_mid]="#F4BF75" +theme[used_end]="#AC4142" + +# Download graph colors +theme[download_start]="#90A959" +theme[download_mid]="#F4BF75" +theme[download_end]="#AC4142" + +# Upload graph colors +theme[upload_start]="#90A959" +theme[upload_mid]="#F4BF75" +theme[upload_end]="#AC4142" diff --git a/colors/base16-codeschool.theme b/colors/base16-codeschool.theme new file mode 100644 index 0000000..e4d71b9 --- /dev/null +++ b/colors/base16-codeschool.theme @@ -0,0 +1,90 @@ +# +# +# name: Codeschool +# author: blockloop +# slug: codeschool +# slug-underscored: codeschool +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#232c31" + +# Main text color +theme[main_fg]="#9ea7a6" + +# Title color for boxes +theme[title]="#9ea7a6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#484d79" + +# Background color of selected item in processes box +theme[selected_bg]="#1c3657" + +# Foreground color of selected item in processes box +theme[selected_fg]="#9ea7a6" + +# Color of inactive/disabled text +theme[inactive_fg]="#84898c" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#484d79" + +# Cpu box outline color +theme[cpu_box]="#84898c" + +# Memory/disks box outline color +theme[mem_box]="#84898c" + +# Net up/down box outline color +theme[net_box]="#84898c" + +# Processes box outline color +theme[proc_box]="#84898c" + +# Box divider line and small boxes line color +theme[div_line]="#84898c" + +# Temperature graph colors +theme[temp_start]="#237986" +theme[temp_mid]="#a03b1e" +theme[temp_end]="#2a5491" + +# CPU graph colors +theme[cpu_start]="#237986" +theme[cpu_mid]="#a03b1e" +theme[cpu_end]="#2a5491" + +# Mem/Disk free meter +theme[free_start]="#237986" +theme[free_mid]="#a03b1e" +theme[free_end]="#2a5491" + +# Mem/Disk cached meter +theme[cached_start]="#237986" +theme[cached_mid]="#a03b1e" +theme[cached_end]="#2a5491" + +# Mem/Disk available meter +theme[available_start]="#237986" +theme[available_mid]="#a03b1e" +theme[available_end]="#2a5491" + +# Mem/Disk used meter +theme[used_start]="#237986" +theme[used_mid]="#a03b1e" +theme[used_end]="#2a5491" + +# Download graph colors +theme[download_start]="#237986" +theme[download_mid]="#a03b1e" +theme[download_end]="#2a5491" + +# Upload graph colors +theme[upload_start]="#237986" +theme[upload_mid]="#a03b1e" +theme[upload_end]="#2a5491" diff --git a/colors/base16-colors.theme b/colors/base16-colors.theme new file mode 100644 index 0000000..393670a --- /dev/null +++ b/colors/base16-colors.theme @@ -0,0 +1,90 @@ +# +# +# name: Colors +# author: mrmrs (http://clrs.cc) +# slug: colors +# slug-underscored: colors +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#111111" + +# Main text color +theme[main_fg]="#bbbbbb" + +# Title color for boxes +theme[title]="#bbbbbb" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0074d9" + +# Background color of selected item in processes box +theme[selected_bg]="#333333" + +# Foreground color of selected item in processes box +theme[selected_fg]="#bbbbbb" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0074d9" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#2ecc40" +theme[temp_mid]="#ffdc00" +theme[temp_end]="#ff4136" + +# CPU graph colors +theme[cpu_start]="#2ecc40" +theme[cpu_mid]="#ffdc00" +theme[cpu_end]="#ff4136" + +# Mem/Disk free meter +theme[free_start]="#2ecc40" +theme[free_mid]="#ffdc00" +theme[free_end]="#ff4136" + +# Mem/Disk cached meter +theme[cached_start]="#2ecc40" +theme[cached_mid]="#ffdc00" +theme[cached_end]="#ff4136" + +# Mem/Disk available meter +theme[available_start]="#2ecc40" +theme[available_mid]="#ffdc00" +theme[available_end]="#ff4136" + +# Mem/Disk used meter +theme[used_start]="#2ecc40" +theme[used_mid]="#ffdc00" +theme[used_end]="#ff4136" + +# Download graph colors +theme[download_start]="#2ecc40" +theme[download_mid]="#ffdc00" +theme[download_end]="#ff4136" + +# Upload graph colors +theme[upload_start]="#2ecc40" +theme[upload_mid]="#ffdc00" +theme[upload_end]="#ff4136" diff --git a/colors/base16-cupcake.theme b/colors/base16-cupcake.theme new file mode 100644 index 0000000..cd212ab --- /dev/null +++ b/colors/base16-cupcake.theme @@ -0,0 +1,90 @@ +# +# +# name: Cupcake +# author: Chris Kempson (http://chriskempson.com) +# slug: cupcake +# slug-underscored: cupcake +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fbf1f2" + +# Main text color +theme[main_fg]="#8b8198" + +# Title color for boxes +theme[title]="#8b8198" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7297B9" + +# Background color of selected item in processes box +theme[selected_bg]="#f2f1f4" + +# Foreground color of selected item in processes box +theme[selected_fg]="#8b8198" + +# Color of inactive/disabled text +theme[inactive_fg]="#a59daf" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7297B9" + +# Cpu box outline color +theme[cpu_box]="#a59daf" + +# Memory/disks box outline color +theme[mem_box]="#a59daf" + +# Net up/down box outline color +theme[net_box]="#a59daf" + +# Processes box outline color +theme[proc_box]="#a59daf" + +# Box divider line and small boxes line color +theme[div_line]="#a59daf" + +# Temperature graph colors +theme[temp_start]="#A3B367" +theme[temp_mid]="#DCB16C" +theme[temp_end]="#D57E85" + +# CPU graph colors +theme[cpu_start]="#A3B367" +theme[cpu_mid]="#DCB16C" +theme[cpu_end]="#D57E85" + +# Mem/Disk free meter +theme[free_start]="#A3B367" +theme[free_mid]="#DCB16C" +theme[free_end]="#D57E85" + +# Mem/Disk cached meter +theme[cached_start]="#A3B367" +theme[cached_mid]="#DCB16C" +theme[cached_end]="#D57E85" + +# Mem/Disk available meter +theme[available_start]="#A3B367" +theme[available_mid]="#DCB16C" +theme[available_end]="#D57E85" + +# Mem/Disk used meter +theme[used_start]="#A3B367" +theme[used_mid]="#DCB16C" +theme[used_end]="#D57E85" + +# Download graph colors +theme[download_start]="#A3B367" +theme[download_mid]="#DCB16C" +theme[download_end]="#D57E85" + +# Upload graph colors +theme[upload_start]="#A3B367" +theme[upload_mid]="#DCB16C" +theme[upload_end]="#D57E85" diff --git a/colors/base16-cupertino.theme b/colors/base16-cupertino.theme new file mode 100644 index 0000000..8462290 --- /dev/null +++ b/colors/base16-cupertino.theme @@ -0,0 +1,90 @@ +# +# +# name: Cupertino +# author: Defman21 +# slug: cupertino +# slug-underscored: cupertino +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ffffff" + +# Main text color +theme[main_fg]="#404040" + +# Title color for boxes +theme[title]="#404040" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0000ff" + +# Background color of selected item in processes box +theme[selected_bg]="#c0c0c0" + +# Foreground color of selected item in processes box +theme[selected_fg]="#404040" + +# Color of inactive/disabled text +theme[inactive_fg]="#808080" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0000ff" + +# Cpu box outline color +theme[cpu_box]="#808080" + +# Memory/disks box outline color +theme[mem_box]="#808080" + +# Net up/down box outline color +theme[net_box]="#808080" + +# Processes box outline color +theme[proc_box]="#808080" + +# Box divider line and small boxes line color +theme[div_line]="#808080" + +# Temperature graph colors +theme[temp_start]="#007400" +theme[temp_mid]="#826b28" +theme[temp_end]="#c41a15" + +# CPU graph colors +theme[cpu_start]="#007400" +theme[cpu_mid]="#826b28" +theme[cpu_end]="#c41a15" + +# Mem/Disk free meter +theme[free_start]="#007400" +theme[free_mid]="#826b28" +theme[free_end]="#c41a15" + +# Mem/Disk cached meter +theme[cached_start]="#007400" +theme[cached_mid]="#826b28" +theme[cached_end]="#c41a15" + +# Mem/Disk available meter +theme[available_start]="#007400" +theme[available_mid]="#826b28" +theme[available_end]="#c41a15" + +# Mem/Disk used meter +theme[used_start]="#007400" +theme[used_mid]="#826b28" +theme[used_end]="#c41a15" + +# Download graph colors +theme[download_start]="#007400" +theme[download_mid]="#826b28" +theme[download_end]="#c41a15" + +# Upload graph colors +theme[upload_start]="#007400" +theme[upload_mid]="#826b28" +theme[upload_end]="#c41a15" diff --git a/colors/base16-da-one-black.theme b/colors/base16-da-one-black.theme new file mode 100644 index 0000000..83e7087 --- /dev/null +++ b/colors/base16-da-one-black.theme @@ -0,0 +1,90 @@ +# +# +# name: Da One Black +# author: NNB (https://github.com/NNBnh) +# slug: da-one-black +# slug-underscored: da_one_black +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#ffffff" + +# Title color for boxes +theme[title]="#ffffff" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6bb8ff" + +# Background color of selected item in processes box +theme[selected_bg]="#282828" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ffffff" + +# Color of inactive/disabled text +theme[inactive_fg]="#c8c8c8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6bb8ff" + +# Cpu box outline color +theme[cpu_box]="#c8c8c8" + +# Memory/disks box outline color +theme[mem_box]="#c8c8c8" + +# Net up/down box outline color +theme[net_box]="#c8c8c8" + +# Processes box outline color +theme[proc_box]="#c8c8c8" + +# Box divider line and small boxes line color +theme[div_line]="#c8c8c8" + +# Temperature graph colors +theme[temp_start]="#98c379" +theme[temp_mid]="#ff9470" +theme[temp_end]="#fa7883" + +# CPU graph colors +theme[cpu_start]="#98c379" +theme[cpu_mid]="#ff9470" +theme[cpu_end]="#fa7883" + +# Mem/Disk free meter +theme[free_start]="#98c379" +theme[free_mid]="#ff9470" +theme[free_end]="#fa7883" + +# Mem/Disk cached meter +theme[cached_start]="#98c379" +theme[cached_mid]="#ff9470" +theme[cached_end]="#fa7883" + +# Mem/Disk available meter +theme[available_start]="#98c379" +theme[available_mid]="#ff9470" +theme[available_end]="#fa7883" + +# Mem/Disk used meter +theme[used_start]="#98c379" +theme[used_mid]="#ff9470" +theme[used_end]="#fa7883" + +# Download graph colors +theme[download_start]="#98c379" +theme[download_mid]="#ff9470" +theme[download_end]="#fa7883" + +# Upload graph colors +theme[upload_start]="#98c379" +theme[upload_mid]="#ff9470" +theme[upload_end]="#fa7883" diff --git a/colors/base16-da-one-gray.theme b/colors/base16-da-one-gray.theme new file mode 100644 index 0000000..7f9bad1 --- /dev/null +++ b/colors/base16-da-one-gray.theme @@ -0,0 +1,90 @@ +# +# +# name: Da One Gray +# author: NNB (https://github.com/NNBnh) +# slug: da-one-gray +# slug-underscored: da_one_gray +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#181818" + +# Main text color +theme[main_fg]="#ffffff" + +# Title color for boxes +theme[title]="#ffffff" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6bb8ff" + +# Background color of selected item in processes box +theme[selected_bg]="#282828" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ffffff" + +# Color of inactive/disabled text +theme[inactive_fg]="#c8c8c8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6bb8ff" + +# Cpu box outline color +theme[cpu_box]="#c8c8c8" + +# Memory/disks box outline color +theme[mem_box]="#c8c8c8" + +# Net up/down box outline color +theme[net_box]="#c8c8c8" + +# Processes box outline color +theme[proc_box]="#c8c8c8" + +# Box divider line and small boxes line color +theme[div_line]="#c8c8c8" + +# Temperature graph colors +theme[temp_start]="#98c379" +theme[temp_mid]="#ff9470" +theme[temp_end]="#fa7883" + +# CPU graph colors +theme[cpu_start]="#98c379" +theme[cpu_mid]="#ff9470" +theme[cpu_end]="#fa7883" + +# Mem/Disk free meter +theme[free_start]="#98c379" +theme[free_mid]="#ff9470" +theme[free_end]="#fa7883" + +# Mem/Disk cached meter +theme[cached_start]="#98c379" +theme[cached_mid]="#ff9470" +theme[cached_end]="#fa7883" + +# Mem/Disk available meter +theme[available_start]="#98c379" +theme[available_mid]="#ff9470" +theme[available_end]="#fa7883" + +# Mem/Disk used meter +theme[used_start]="#98c379" +theme[used_mid]="#ff9470" +theme[used_end]="#fa7883" + +# Download graph colors +theme[download_start]="#98c379" +theme[download_mid]="#ff9470" +theme[download_end]="#fa7883" + +# Upload graph colors +theme[upload_start]="#98c379" +theme[upload_mid]="#ff9470" +theme[upload_end]="#fa7883" diff --git a/colors/base16-da-one-ocean.theme b/colors/base16-da-one-ocean.theme new file mode 100644 index 0000000..7dd12d6 --- /dev/null +++ b/colors/base16-da-one-ocean.theme @@ -0,0 +1,90 @@ +# +# +# name: Da One Ocean +# author: NNB (https://github.com/NNBnh) +# slug: da-one-ocean +# slug-underscored: da_one_ocean +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#171726" + +# Main text color +theme[main_fg]="#ffffff" + +# Title color for boxes +theme[title]="#ffffff" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6bb8ff" + +# Background color of selected item in processes box +theme[selected_bg]="#22273d" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ffffff" + +# Color of inactive/disabled text +theme[inactive_fg]="#c8c8c8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6bb8ff" + +# Cpu box outline color +theme[cpu_box]="#c8c8c8" + +# Memory/disks box outline color +theme[mem_box]="#c8c8c8" + +# Net up/down box outline color +theme[net_box]="#c8c8c8" + +# Processes box outline color +theme[proc_box]="#c8c8c8" + +# Box divider line and small boxes line color +theme[div_line]="#c8c8c8" + +# Temperature graph colors +theme[temp_start]="#98c379" +theme[temp_mid]="#ff9470" +theme[temp_end]="#fa7883" + +# CPU graph colors +theme[cpu_start]="#98c379" +theme[cpu_mid]="#ff9470" +theme[cpu_end]="#fa7883" + +# Mem/Disk free meter +theme[free_start]="#98c379" +theme[free_mid]="#ff9470" +theme[free_end]="#fa7883" + +# Mem/Disk cached meter +theme[cached_start]="#98c379" +theme[cached_mid]="#ff9470" +theme[cached_end]="#fa7883" + +# Mem/Disk available meter +theme[available_start]="#98c379" +theme[available_mid]="#ff9470" +theme[available_end]="#fa7883" + +# Mem/Disk used meter +theme[used_start]="#98c379" +theme[used_mid]="#ff9470" +theme[used_end]="#fa7883" + +# Download graph colors +theme[download_start]="#98c379" +theme[download_mid]="#ff9470" +theme[download_end]="#fa7883" + +# Upload graph colors +theme[upload_start]="#98c379" +theme[upload_mid]="#ff9470" +theme[upload_end]="#fa7883" diff --git a/colors/base16-da-one-paper.theme b/colors/base16-da-one-paper.theme new file mode 100644 index 0000000..9a0af70 --- /dev/null +++ b/colors/base16-da-one-paper.theme @@ -0,0 +1,90 @@ +# +# +# name: Da One Paper +# author: NNB (https://github.com/NNBnh) +# slug: da-one-paper +# slug-underscored: da_one_paper +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#faf0dc" + +# Main text color +theme[main_fg]="#181818" + +# Title color for boxes +theme[title]="#181818" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#5890f8" + +# Background color of selected item in processes box +theme[selected_bg]="#c8c8c8" + +# Foreground color of selected item in processes box +theme[selected_fg]="#181818" + +# Color of inactive/disabled text +theme[inactive_fg]="#282828" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#5890f8" + +# Cpu box outline color +theme[cpu_box]="#282828" + +# Memory/disks box outline color +theme[mem_box]="#282828" + +# Net up/down box outline color +theme[net_box]="#282828" + +# Processes box outline color +theme[proc_box]="#282828" + +# Box divider line and small boxes line color +theme[div_line]="#282828" + +# Temperature graph colors +theme[temp_start]="#76a85d" +theme[temp_mid]="#b3684f" +theme[temp_end]="#de5d6e" + +# CPU graph colors +theme[cpu_start]="#76a85d" +theme[cpu_mid]="#b3684f" +theme[cpu_end]="#de5d6e" + +# Mem/Disk free meter +theme[free_start]="#76a85d" +theme[free_mid]="#b3684f" +theme[free_end]="#de5d6e" + +# Mem/Disk cached meter +theme[cached_start]="#76a85d" +theme[cached_mid]="#b3684f" +theme[cached_end]="#de5d6e" + +# Mem/Disk available meter +theme[available_start]="#76a85d" +theme[available_mid]="#b3684f" +theme[available_end]="#de5d6e" + +# Mem/Disk used meter +theme[used_start]="#76a85d" +theme[used_mid]="#b3684f" +theme[used_end]="#de5d6e" + +# Download graph colors +theme[download_start]="#76a85d" +theme[download_mid]="#b3684f" +theme[download_end]="#de5d6e" + +# Upload graph colors +theme[upload_start]="#76a85d" +theme[upload_mid]="#b3684f" +theme[upload_end]="#de5d6e" diff --git a/colors/base16-da-one-sea.theme b/colors/base16-da-one-sea.theme new file mode 100644 index 0000000..46a5e29 --- /dev/null +++ b/colors/base16-da-one-sea.theme @@ -0,0 +1,90 @@ +# +# +# name: Da One Sea +# author: NNB (https://github.com/NNBnh) +# slug: da-one-sea +# slug-underscored: da_one_sea +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#22273d" + +# Main text color +theme[main_fg]="#ffffff" + +# Title color for boxes +theme[title]="#ffffff" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6bb8ff" + +# Background color of selected item in processes box +theme[selected_bg]="#374059" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ffffff" + +# Color of inactive/disabled text +theme[inactive_fg]="#c8c8c8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6bb8ff" + +# Cpu box outline color +theme[cpu_box]="#c8c8c8" + +# Memory/disks box outline color +theme[mem_box]="#c8c8c8" + +# Net up/down box outline color +theme[net_box]="#c8c8c8" + +# Processes box outline color +theme[proc_box]="#c8c8c8" + +# Box divider line and small boxes line color +theme[div_line]="#c8c8c8" + +# Temperature graph colors +theme[temp_start]="#98c379" +theme[temp_mid]="#ff9470" +theme[temp_end]="#fa7883" + +# CPU graph colors +theme[cpu_start]="#98c379" +theme[cpu_mid]="#ff9470" +theme[cpu_end]="#fa7883" + +# Mem/Disk free meter +theme[free_start]="#98c379" +theme[free_mid]="#ff9470" +theme[free_end]="#fa7883" + +# Mem/Disk cached meter +theme[cached_start]="#98c379" +theme[cached_mid]="#ff9470" +theme[cached_end]="#fa7883" + +# Mem/Disk available meter +theme[available_start]="#98c379" +theme[available_mid]="#ff9470" +theme[available_end]="#fa7883" + +# Mem/Disk used meter +theme[used_start]="#98c379" +theme[used_mid]="#ff9470" +theme[used_end]="#fa7883" + +# Download graph colors +theme[download_start]="#98c379" +theme[download_mid]="#ff9470" +theme[download_end]="#fa7883" + +# Upload graph colors +theme[upload_start]="#98c379" +theme[upload_mid]="#ff9470" +theme[upload_end]="#fa7883" diff --git a/colors/base16-da-one-white.theme b/colors/base16-da-one-white.theme new file mode 100644 index 0000000..c5e9ead --- /dev/null +++ b/colors/base16-da-one-white.theme @@ -0,0 +1,90 @@ +# +# +# name: Da One White +# author: NNB (https://github.com/NNBnh) +# slug: da-one-white +# slug-underscored: da_one_white +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ffffff" + +# Main text color +theme[main_fg]="#181818" + +# Title color for boxes +theme[title]="#181818" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#5890f8" + +# Background color of selected item in processes box +theme[selected_bg]="#c8c8c8" + +# Foreground color of selected item in processes box +theme[selected_fg]="#181818" + +# Color of inactive/disabled text +theme[inactive_fg]="#282828" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#5890f8" + +# Cpu box outline color +theme[cpu_box]="#282828" + +# Memory/disks box outline color +theme[mem_box]="#282828" + +# Net up/down box outline color +theme[net_box]="#282828" + +# Processes box outline color +theme[proc_box]="#282828" + +# Box divider line and small boxes line color +theme[div_line]="#282828" + +# Temperature graph colors +theme[temp_start]="#76a85d" +theme[temp_mid]="#b3684f" +theme[temp_end]="#de5d6e" + +# CPU graph colors +theme[cpu_start]="#76a85d" +theme[cpu_mid]="#b3684f" +theme[cpu_end]="#de5d6e" + +# Mem/Disk free meter +theme[free_start]="#76a85d" +theme[free_mid]="#b3684f" +theme[free_end]="#de5d6e" + +# Mem/Disk cached meter +theme[cached_start]="#76a85d" +theme[cached_mid]="#b3684f" +theme[cached_end]="#de5d6e" + +# Mem/Disk available meter +theme[available_start]="#76a85d" +theme[available_mid]="#b3684f" +theme[available_end]="#de5d6e" + +# Mem/Disk used meter +theme[used_start]="#76a85d" +theme[used_mid]="#b3684f" +theme[used_end]="#de5d6e" + +# Download graph colors +theme[download_start]="#76a85d" +theme[download_mid]="#b3684f" +theme[download_end]="#de5d6e" + +# Upload graph colors +theme[upload_start]="#76a85d" +theme[upload_mid]="#b3684f" +theme[upload_end]="#de5d6e" diff --git a/colors/base16-danqing-light.theme b/colors/base16-danqing-light.theme new file mode 100644 index 0000000..d4538fe --- /dev/null +++ b/colors/base16-danqing-light.theme @@ -0,0 +1,90 @@ +# +# +# name: DanQing Light +# author: Wenhan Zhu (Cosmos) (zhuwenhan950913@gmail.com) +# slug: danqing-light +# slug-underscored: danqing_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fcfefd" + +# Main text color +theme[main_fg]="#5a605d" + +# Title color for boxes +theme[title]="#5a605d" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#B0A4E3" + +# Background color of selected item in processes box +theme[selected_bg]="#ecf6f2" + +# Foreground color of selected item in processes box +theme[selected_fg]="#5a605d" + +# Color of inactive/disabled text +theme[inactive_fg]="#9da8a3" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#B0A4E3" + +# Cpu box outline color +theme[cpu_box]="#9da8a3" + +# Memory/disks box outline color +theme[mem_box]="#9da8a3" + +# Net up/down box outline color +theme[net_box]="#9da8a3" + +# Processes box outline color +theme[proc_box]="#9da8a3" + +# Box divider line and small boxes line color +theme[div_line]="#9da8a3" + +# Temperature graph colors +theme[temp_start]="#8AB361" +theme[temp_mid]="#F0C239" +theme[temp_end]="#F9906F" + +# CPU graph colors +theme[cpu_start]="#8AB361" +theme[cpu_mid]="#F0C239" +theme[cpu_end]="#F9906F" + +# Mem/Disk free meter +theme[free_start]="#8AB361" +theme[free_mid]="#F0C239" +theme[free_end]="#F9906F" + +# Mem/Disk cached meter +theme[cached_start]="#8AB361" +theme[cached_mid]="#F0C239" +theme[cached_end]="#F9906F" + +# Mem/Disk available meter +theme[available_start]="#8AB361" +theme[available_mid]="#F0C239" +theme[available_end]="#F9906F" + +# Mem/Disk used meter +theme[used_start]="#8AB361" +theme[used_mid]="#F0C239" +theme[used_end]="#F9906F" + +# Download graph colors +theme[download_start]="#8AB361" +theme[download_mid]="#F0C239" +theme[download_end]="#F9906F" + +# Upload graph colors +theme[upload_start]="#8AB361" +theme[upload_mid]="#F0C239" +theme[upload_end]="#F9906F" diff --git a/colors/base16-danqing.theme b/colors/base16-danqing.theme new file mode 100644 index 0000000..0b0a50b --- /dev/null +++ b/colors/base16-danqing.theme @@ -0,0 +1,90 @@ +# +# +# name: DanQing +# author: Wenhan Zhu (Cosmos) (zhuwenhan950913@gmail.com) +# slug: danqing +# slug-underscored: danqing +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2d302f" + +# Main text color +theme[main_fg]="#e0f0eF" + +# Title color for boxes +theme[title]="#e0f0eF" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#B0A4E3" + +# Background color of selected item in processes box +theme[selected_bg]="#434846" + +# Foreground color of selected item in processes box +theme[selected_fg]="#e0f0eF" + +# Color of inactive/disabled text +theme[inactive_fg]="#cad8d2" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#B0A4E3" + +# Cpu box outline color +theme[cpu_box]="#cad8d2" + +# Memory/disks box outline color +theme[mem_box]="#cad8d2" + +# Net up/down box outline color +theme[net_box]="#cad8d2" + +# Processes box outline color +theme[proc_box]="#cad8d2" + +# Box divider line and small boxes line color +theme[div_line]="#cad8d2" + +# Temperature graph colors +theme[temp_start]="#8AB361" +theme[temp_mid]="#F0C239" +theme[temp_end]="#F9906F" + +# CPU graph colors +theme[cpu_start]="#8AB361" +theme[cpu_mid]="#F0C239" +theme[cpu_end]="#F9906F" + +# Mem/Disk free meter +theme[free_start]="#8AB361" +theme[free_mid]="#F0C239" +theme[free_end]="#F9906F" + +# Mem/Disk cached meter +theme[cached_start]="#8AB361" +theme[cached_mid]="#F0C239" +theme[cached_end]="#F9906F" + +# Mem/Disk available meter +theme[available_start]="#8AB361" +theme[available_mid]="#F0C239" +theme[available_end]="#F9906F" + +# Mem/Disk used meter +theme[used_start]="#8AB361" +theme[used_mid]="#F0C239" +theme[used_end]="#F9906F" + +# Download graph colors +theme[download_start]="#8AB361" +theme[download_mid]="#F0C239" +theme[download_end]="#F9906F" + +# Upload graph colors +theme[upload_start]="#8AB361" +theme[upload_mid]="#F0C239" +theme[upload_end]="#F9906F" diff --git a/colors/base16-darcula.theme b/colors/base16-darcula.theme new file mode 100644 index 0000000..00f68b2 --- /dev/null +++ b/colors/base16-darcula.theme @@ -0,0 +1,90 @@ +# +# +# name: Darcula +# author: jetbrains +# slug: darcula +# slug-underscored: darcula +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2b2b2b" + +# Main text color +theme[main_fg]="#a9b7c6" + +# Title color for boxes +theme[title]="#a9b7c6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#9876aa" + +# Background color of selected item in processes box +theme[selected_bg]="#323232" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a9b7c6" + +# Color of inactive/disabled text +theme[inactive_fg]="#a4a3a3" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#9876aa" + +# Cpu box outline color +theme[cpu_box]="#a4a3a3" + +# Memory/disks box outline color +theme[mem_box]="#a4a3a3" + +# Net up/down box outline color +theme[net_box]="#a4a3a3" + +# Processes box outline color +theme[proc_box]="#a4a3a3" + +# Box divider line and small boxes line color +theme[div_line]="#a4a3a3" + +# Temperature graph colors +theme[temp_start]="#6a8759" +theme[temp_mid]="#bbb529" +theme[temp_end]="#4eade5" + +# CPU graph colors +theme[cpu_start]="#6a8759" +theme[cpu_mid]="#bbb529" +theme[cpu_end]="#4eade5" + +# Mem/Disk free meter +theme[free_start]="#6a8759" +theme[free_mid]="#bbb529" +theme[free_end]="#4eade5" + +# Mem/Disk cached meter +theme[cached_start]="#6a8759" +theme[cached_mid]="#bbb529" +theme[cached_end]="#4eade5" + +# Mem/Disk available meter +theme[available_start]="#6a8759" +theme[available_mid]="#bbb529" +theme[available_end]="#4eade5" + +# Mem/Disk used meter +theme[used_start]="#6a8759" +theme[used_mid]="#bbb529" +theme[used_end]="#4eade5" + +# Download graph colors +theme[download_start]="#6a8759" +theme[download_mid]="#bbb529" +theme[download_end]="#4eade5" + +# Upload graph colors +theme[upload_start]="#6a8759" +theme[upload_mid]="#bbb529" +theme[upload_end]="#4eade5" diff --git a/colors/base16-darkmoss.theme b/colors/base16-darkmoss.theme new file mode 100644 index 0000000..6286e6e --- /dev/null +++ b/colors/base16-darkmoss.theme @@ -0,0 +1,90 @@ +# +# +# name: darkmoss +# author: Gabriel Avanzi (https://github.com/avanzzzi) +# slug: darkmoss +# slug-underscored: darkmoss +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#171e1f" + +# Main text color +theme[main_fg]="#c7c7a5" + +# Title color for boxes +theme[title]="#c7c7a5" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#498091" + +# Background color of selected item in processes box +theme[selected_bg]="#252c2d" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c7c7a5" + +# Color of inactive/disabled text +theme[inactive_fg]="#818f80" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#498091" + +# Cpu box outline color +theme[cpu_box]="#818f80" + +# Memory/disks box outline color +theme[mem_box]="#818f80" + +# Net up/down box outline color +theme[net_box]="#818f80" + +# Processes box outline color +theme[proc_box]="#818f80" + +# Box divider line and small boxes line color +theme[div_line]="#818f80" + +# Temperature graph colors +theme[temp_start]="#499180" +theme[temp_mid]="#fdb11f" +theme[temp_end]="#ff4658" + +# CPU graph colors +theme[cpu_start]="#499180" +theme[cpu_mid]="#fdb11f" +theme[cpu_end]="#ff4658" + +# Mem/Disk free meter +theme[free_start]="#499180" +theme[free_mid]="#fdb11f" +theme[free_end]="#ff4658" + +# Mem/Disk cached meter +theme[cached_start]="#499180" +theme[cached_mid]="#fdb11f" +theme[cached_end]="#ff4658" + +# Mem/Disk available meter +theme[available_start]="#499180" +theme[available_mid]="#fdb11f" +theme[available_end]="#ff4658" + +# Mem/Disk used meter +theme[used_start]="#499180" +theme[used_mid]="#fdb11f" +theme[used_end]="#ff4658" + +# Download graph colors +theme[download_start]="#499180" +theme[download_mid]="#fdb11f" +theme[download_end]="#ff4658" + +# Upload graph colors +theme[upload_start]="#499180" +theme[upload_mid]="#fdb11f" +theme[upload_end]="#ff4658" diff --git a/colors/base16-darktooth.theme b/colors/base16-darktooth.theme new file mode 100644 index 0000000..19271da --- /dev/null +++ b/colors/base16-darktooth.theme @@ -0,0 +1,90 @@ +# +# +# name: Darktooth +# author: Jason Milkins (https://github.com/jasonm23) +# slug: darktooth +# slug-underscored: darktooth +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1D2021" + +# Main text color +theme[main_fg]="#A89984" + +# Title color for boxes +theme[title]="#A89984" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0D6678" + +# Background color of selected item in processes box +theme[selected_bg]="#32302F" + +# Foreground color of selected item in processes box +theme[selected_fg]="#A89984" + +# Color of inactive/disabled text +theme[inactive_fg]="#928374" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0D6678" + +# Cpu box outline color +theme[cpu_box]="#928374" + +# Memory/disks box outline color +theme[mem_box]="#928374" + +# Net up/down box outline color +theme[net_box]="#928374" + +# Processes box outline color +theme[proc_box]="#928374" + +# Box divider line and small boxes line color +theme[div_line]="#928374" + +# Temperature graph colors +theme[temp_start]="#95C085" +theme[temp_mid]="#FAC03B" +theme[temp_end]="#FB543F" + +# CPU graph colors +theme[cpu_start]="#95C085" +theme[cpu_mid]="#FAC03B" +theme[cpu_end]="#FB543F" + +# Mem/Disk free meter +theme[free_start]="#95C085" +theme[free_mid]="#FAC03B" +theme[free_end]="#FB543F" + +# Mem/Disk cached meter +theme[cached_start]="#95C085" +theme[cached_mid]="#FAC03B" +theme[cached_end]="#FB543F" + +# Mem/Disk available meter +theme[available_start]="#95C085" +theme[available_mid]="#FAC03B" +theme[available_end]="#FB543F" + +# Mem/Disk used meter +theme[used_start]="#95C085" +theme[used_mid]="#FAC03B" +theme[used_end]="#FB543F" + +# Download graph colors +theme[download_start]="#95C085" +theme[download_mid]="#FAC03B" +theme[download_end]="#FB543F" + +# Upload graph colors +theme[upload_start]="#95C085" +theme[upload_mid]="#FAC03B" +theme[upload_end]="#FB543F" diff --git a/colors/base16-darkviolet.theme b/colors/base16-darkviolet.theme new file mode 100644 index 0000000..149f64c --- /dev/null +++ b/colors/base16-darkviolet.theme @@ -0,0 +1,90 @@ +# +# +# name: Dark Violet +# author: ruler501 (https://github.com/ruler501/base16-darkviolet) +# slug: darkviolet +# slug-underscored: darkviolet +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#b08ae6" + +# Title color for boxes +theme[title]="#b08ae6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#4136d9" + +# Background color of selected item in processes box +theme[selected_bg]="#231a40" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b08ae6" + +# Color of inactive/disabled text +theme[inactive_fg]="#00ff00" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#4136d9" + +# Cpu box outline color +theme[cpu_box]="#00ff00" + +# Memory/disks box outline color +theme[mem_box]="#00ff00" + +# Net up/down box outline color +theme[net_box]="#00ff00" + +# Processes box outline color +theme[proc_box]="#00ff00" + +# Box divider line and small boxes line color +theme[div_line]="#00ff00" + +# Temperature graph colors +theme[temp_start]="#4595e6" +theme[temp_mid]="#f29df2" +theme[temp_end]="#a82ee6" + +# CPU graph colors +theme[cpu_start]="#4595e6" +theme[cpu_mid]="#f29df2" +theme[cpu_end]="#a82ee6" + +# Mem/Disk free meter +theme[free_start]="#4595e6" +theme[free_mid]="#f29df2" +theme[free_end]="#a82ee6" + +# Mem/Disk cached meter +theme[cached_start]="#4595e6" +theme[cached_mid]="#f29df2" +theme[cached_end]="#a82ee6" + +# Mem/Disk available meter +theme[available_start]="#4595e6" +theme[available_mid]="#f29df2" +theme[available_end]="#a82ee6" + +# Mem/Disk used meter +theme[used_start]="#4595e6" +theme[used_mid]="#f29df2" +theme[used_end]="#a82ee6" + +# Download graph colors +theme[download_start]="#4595e6" +theme[download_mid]="#f29df2" +theme[download_end]="#a82ee6" + +# Upload graph colors +theme[upload_start]="#4595e6" +theme[upload_mid]="#f29df2" +theme[upload_end]="#a82ee6" diff --git a/colors/base16-decaf.theme b/colors/base16-decaf.theme new file mode 100644 index 0000000..935fca1 --- /dev/null +++ b/colors/base16-decaf.theme @@ -0,0 +1,90 @@ +# +# +# name: Decaf +# author: Alex Mirrington (https://github.com/alexmirrington) +# slug: decaf +# slug-underscored: decaf +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2d2d2d" + +# Main text color +theme[main_fg]="#cccccc" + +# Title color for boxes +theme[title]="#cccccc" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#90bee1" + +# Background color of selected item in processes box +theme[selected_bg]="#393939" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cccccc" + +# Color of inactive/disabled text +theme[inactive_fg]="#b4b7b4" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#90bee1" + +# Cpu box outline color +theme[cpu_box]="#b4b7b4" + +# Memory/disks box outline color +theme[mem_box]="#b4b7b4" + +# Net up/down box outline color +theme[net_box]="#b4b7b4" + +# Processes box outline color +theme[proc_box]="#b4b7b4" + +# Box divider line and small boxes line color +theme[div_line]="#b4b7b4" + +# Temperature graph colors +theme[temp_start]="#beda78" +theme[temp_mid]="#ffd67c" +theme[temp_end]="#ff7f7b" + +# CPU graph colors +theme[cpu_start]="#beda78" +theme[cpu_mid]="#ffd67c" +theme[cpu_end]="#ff7f7b" + +# Mem/Disk free meter +theme[free_start]="#beda78" +theme[free_mid]="#ffd67c" +theme[free_end]="#ff7f7b" + +# Mem/Disk cached meter +theme[cached_start]="#beda78" +theme[cached_mid]="#ffd67c" +theme[cached_end]="#ff7f7b" + +# Mem/Disk available meter +theme[available_start]="#beda78" +theme[available_mid]="#ffd67c" +theme[available_end]="#ff7f7b" + +# Mem/Disk used meter +theme[used_start]="#beda78" +theme[used_mid]="#ffd67c" +theme[used_end]="#ff7f7b" + +# Download graph colors +theme[download_start]="#beda78" +theme[download_mid]="#ffd67c" +theme[download_end]="#ff7f7b" + +# Upload graph colors +theme[upload_start]="#beda78" +theme[upload_mid]="#ffd67c" +theme[upload_end]="#ff7f7b" diff --git a/colors/base16-deep-oceanic-next.theme b/colors/base16-deep-oceanic-next.theme new file mode 100644 index 0000000..5bdfeb2 --- /dev/null +++ b/colors/base16-deep-oceanic-next.theme @@ -0,0 +1,90 @@ +# +# +# name: Deep Oceanic Next +# author: spearkkk (https://github.com/spearkkk/deep-oceanic-next) +# slug: deep-oceanic-next +# slug-underscored: deep_oceanic_next +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#003b46" + +# Main text color +theme[main_fg]="#dce3e8" + +# Title color for boxes +theme[title]="#dce3e8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3a82e6" + +# Background color of selected item in processes box +theme[selected_bg]="#004f5e" + +# Foreground color of selected item in processes box +theme[selected_fg]="#dce3e8" + +# Color of inactive/disabled text +theme[inactive_fg]="#0093a3" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3a82e6" + +# Cpu box outline color +theme[cpu_box]="#0093a3" + +# Memory/disks box outline color +theme[mem_box]="#0093a3" + +# Net up/down box outline color +theme[net_box]="#0093a3" + +# Processes box outline color +theme[proc_box]="#0093a3" + +# Box divider line and small boxes line color +theme[div_line]="#0093a3" + +# Temperature graph colors +theme[temp_start]="#85b57a" +theme[temp_mid]="#ffcc66" +theme[temp_end]="#e6454b" + +# CPU graph colors +theme[cpu_start]="#85b57a" +theme[cpu_mid]="#ffcc66" +theme[cpu_end]="#e6454b" + +# Mem/Disk free meter +theme[free_start]="#85b57a" +theme[free_mid]="#ffcc66" +theme[free_end]="#e6454b" + +# Mem/Disk cached meter +theme[cached_start]="#85b57a" +theme[cached_mid]="#ffcc66" +theme[cached_end]="#e6454b" + +# Mem/Disk available meter +theme[available_start]="#85b57a" +theme[available_mid]="#ffcc66" +theme[available_end]="#e6454b" + +# Mem/Disk used meter +theme[used_start]="#85b57a" +theme[used_mid]="#ffcc66" +theme[used_end]="#e6454b" + +# Download graph colors +theme[download_start]="#85b57a" +theme[download_mid]="#ffcc66" +theme[download_end]="#e6454b" + +# Upload graph colors +theme[upload_start]="#85b57a" +theme[upload_mid]="#ffcc66" +theme[upload_end]="#e6454b" diff --git a/colors/base16-default-dark.theme b/colors/base16-default-dark.theme new file mode 100644 index 0000000..1daff5a --- /dev/null +++ b/colors/base16-default-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Default Dark +# author: Chris Kempson (http://chriskempson.com) +# slug: default-dark +# slug-underscored: default_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#181818" + +# Main text color +theme[main_fg]="#d8d8d8" + +# Title color for boxes +theme[title]="#d8d8d8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7cafc2" + +# Background color of selected item in processes box +theme[selected_bg]="#282828" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d8d8d8" + +# Color of inactive/disabled text +theme[inactive_fg]="#b8b8b8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7cafc2" + +# Cpu box outline color +theme[cpu_box]="#b8b8b8" + +# Memory/disks box outline color +theme[mem_box]="#b8b8b8" + +# Net up/down box outline color +theme[net_box]="#b8b8b8" + +# Processes box outline color +theme[proc_box]="#b8b8b8" + +# Box divider line and small boxes line color +theme[div_line]="#b8b8b8" + +# Temperature graph colors +theme[temp_start]="#a1b56c" +theme[temp_mid]="#f7ca88" +theme[temp_end]="#ab4642" + +# CPU graph colors +theme[cpu_start]="#a1b56c" +theme[cpu_mid]="#f7ca88" +theme[cpu_end]="#ab4642" + +# Mem/Disk free meter +theme[free_start]="#a1b56c" +theme[free_mid]="#f7ca88" +theme[free_end]="#ab4642" + +# Mem/Disk cached meter +theme[cached_start]="#a1b56c" +theme[cached_mid]="#f7ca88" +theme[cached_end]="#ab4642" + +# Mem/Disk available meter +theme[available_start]="#a1b56c" +theme[available_mid]="#f7ca88" +theme[available_end]="#ab4642" + +# Mem/Disk used meter +theme[used_start]="#a1b56c" +theme[used_mid]="#f7ca88" +theme[used_end]="#ab4642" + +# Download graph colors +theme[download_start]="#a1b56c" +theme[download_mid]="#f7ca88" +theme[download_end]="#ab4642" + +# Upload graph colors +theme[upload_start]="#a1b56c" +theme[upload_mid]="#f7ca88" +theme[upload_end]="#ab4642" diff --git a/colors/base16-default-light.theme b/colors/base16-default-light.theme new file mode 100644 index 0000000..27a5ee6 --- /dev/null +++ b/colors/base16-default-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Default Light +# author: Chris Kempson (http://chriskempson.com) +# slug: default-light +# slug-underscored: default_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f8f8f8" + +# Main text color +theme[main_fg]="#383838" + +# Title color for boxes +theme[title]="#383838" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7cafc2" + +# Background color of selected item in processes box +theme[selected_bg]="#e8e8e8" + +# Foreground color of selected item in processes box +theme[selected_fg]="#383838" + +# Color of inactive/disabled text +theme[inactive_fg]="#585858" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7cafc2" + +# Cpu box outline color +theme[cpu_box]="#585858" + +# Memory/disks box outline color +theme[mem_box]="#585858" + +# Net up/down box outline color +theme[net_box]="#585858" + +# Processes box outline color +theme[proc_box]="#585858" + +# Box divider line and small boxes line color +theme[div_line]="#585858" + +# Temperature graph colors +theme[temp_start]="#a1b56c" +theme[temp_mid]="#f7ca88" +theme[temp_end]="#ab4642" + +# CPU graph colors +theme[cpu_start]="#a1b56c" +theme[cpu_mid]="#f7ca88" +theme[cpu_end]="#ab4642" + +# Mem/Disk free meter +theme[free_start]="#a1b56c" +theme[free_mid]="#f7ca88" +theme[free_end]="#ab4642" + +# Mem/Disk cached meter +theme[cached_start]="#a1b56c" +theme[cached_mid]="#f7ca88" +theme[cached_end]="#ab4642" + +# Mem/Disk available meter +theme[available_start]="#a1b56c" +theme[available_mid]="#f7ca88" +theme[available_end]="#ab4642" + +# Mem/Disk used meter +theme[used_start]="#a1b56c" +theme[used_mid]="#f7ca88" +theme[used_end]="#ab4642" + +# Download graph colors +theme[download_start]="#a1b56c" +theme[download_mid]="#f7ca88" +theme[download_end]="#ab4642" + +# Upload graph colors +theme[upload_start]="#a1b56c" +theme[upload_mid]="#f7ca88" +theme[upload_end]="#ab4642" diff --git a/colors/base16-dirtysea.theme b/colors/base16-dirtysea.theme new file mode 100644 index 0000000..ce99893 --- /dev/null +++ b/colors/base16-dirtysea.theme @@ -0,0 +1,90 @@ +# +# +# name: dirtysea +# author: Kahlil (Kal) Hodgson +# slug: dirtysea +# slug-underscored: dirtysea +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#e0e0e0" + +# Main text color +theme[main_fg]="#000000" + +# Title color for boxes +theme[title]="#000000" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#007300" + +# Background color of selected item in processes box +theme[selected_bg]="#d0dad0" + +# Foreground color of selected item in processes box +theme[selected_fg]="#000000" + +# Color of inactive/disabled text +theme[inactive_fg]="#202020" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#007300" + +# Cpu box outline color +theme[cpu_box]="#202020" + +# Memory/disks box outline color +theme[mem_box]="#202020" + +# Net up/down box outline color +theme[net_box]="#202020" + +# Processes box outline color +theme[proc_box]="#202020" + +# Box divider line and small boxes line color +theme[div_line]="#202020" + +# Temperature graph colors +theme[temp_start]="#730073" +theme[temp_mid]="#755B00" +theme[temp_end]="#840000" + +# CPU graph colors +theme[cpu_start]="#730073" +theme[cpu_mid]="#755B00" +theme[cpu_end]="#840000" + +# Mem/Disk free meter +theme[free_start]="#730073" +theme[free_mid]="#755B00" +theme[free_end]="#840000" + +# Mem/Disk cached meter +theme[cached_start]="#730073" +theme[cached_mid]="#755B00" +theme[cached_end]="#840000" + +# Mem/Disk available meter +theme[available_start]="#730073" +theme[available_mid]="#755B00" +theme[available_end]="#840000" + +# Mem/Disk used meter +theme[used_start]="#730073" +theme[used_mid]="#755B00" +theme[used_end]="#840000" + +# Download graph colors +theme[download_start]="#730073" +theme[download_mid]="#755B00" +theme[download_end]="#840000" + +# Upload graph colors +theme[upload_start]="#730073" +theme[upload_mid]="#755B00" +theme[upload_end]="#840000" diff --git a/colors/base16-dracula.theme b/colors/base16-dracula.theme new file mode 100644 index 0000000..bba38f0 --- /dev/null +++ b/colors/base16-dracula.theme @@ -0,0 +1,90 @@ +# +# +# name: Dracula +# author: Jamy Golden (http://github.com/JamyGolden), based on Dracula Theme (http://github.com/dracula) +# slug: dracula +# slug-underscored: dracula +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#282a36" + +# Main text color +theme[main_fg]="#f8f8f2" + +# Title color for boxes +theme[title]="#f8f8f2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#80bfff" + +# Background color of selected item in processes box +theme[selected_bg]="#363447" + +# Foreground color of selected item in processes box +theme[selected_fg]="#f8f8f2" + +# Color of inactive/disabled text +theme[inactive_fg]="#9ea8c7" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#80bfff" + +# Cpu box outline color +theme[cpu_box]="#9ea8c7" + +# Memory/disks box outline color +theme[mem_box]="#9ea8c7" + +# Net up/down box outline color +theme[net_box]="#9ea8c7" + +# Processes box outline color +theme[proc_box]="#9ea8c7" + +# Box divider line and small boxes line color +theme[div_line]="#9ea8c7" + +# 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]="#50fa7b" +theme[free_mid]="#f1fa8c" +theme[free_end]="#ff5555" + +# Mem/Disk cached meter +theme[cached_start]="#50fa7b" +theme[cached_mid]="#f1fa8c" +theme[cached_end]="#ff5555" + +# Mem/Disk available meter +theme[available_start]="#50fa7b" +theme[available_mid]="#f1fa8c" +theme[available_end]="#ff5555" + +# 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" diff --git a/colors/base16-edge-dark.theme b/colors/base16-edge-dark.theme new file mode 100644 index 0000000..1c54b89 --- /dev/null +++ b/colors/base16-edge-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Edge Dark +# author: cjayross (https://github.com/cjayross) +# slug: edge-dark +# slug-underscored: edge_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#262729" + +# Main text color +theme[main_fg]="#b7bec9" + +# Title color for boxes +theme[title]="#b7bec9" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#73b3e7" + +# Background color of selected item in processes box +theme[selected_bg]="#88909f" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b7bec9" + +# Color of inactive/disabled text +theme[inactive_fg]="#73b3e7" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#73b3e7" + +# Cpu box outline color +theme[cpu_box]="#73b3e7" + +# Memory/disks box outline color +theme[mem_box]="#73b3e7" + +# Net up/down box outline color +theme[net_box]="#73b3e7" + +# Processes box outline color +theme[proc_box]="#73b3e7" + +# Box divider line and small boxes line color +theme[div_line]="#73b3e7" + +# Temperature graph colors +theme[temp_start]="#a1bf78" +theme[temp_mid]="#dbb774" +theme[temp_end]="#e77171" + +# CPU graph colors +theme[cpu_start]="#a1bf78" +theme[cpu_mid]="#dbb774" +theme[cpu_end]="#e77171" + +# Mem/Disk free meter +theme[free_start]="#a1bf78" +theme[free_mid]="#dbb774" +theme[free_end]="#e77171" + +# Mem/Disk cached meter +theme[cached_start]="#a1bf78" +theme[cached_mid]="#dbb774" +theme[cached_end]="#e77171" + +# Mem/Disk available meter +theme[available_start]="#a1bf78" +theme[available_mid]="#dbb774" +theme[available_end]="#e77171" + +# Mem/Disk used meter +theme[used_start]="#a1bf78" +theme[used_mid]="#dbb774" +theme[used_end]="#e77171" + +# Download graph colors +theme[download_start]="#a1bf78" +theme[download_mid]="#dbb774" +theme[download_end]="#e77171" + +# Upload graph colors +theme[upload_start]="#a1bf78" +theme[upload_mid]="#dbb774" +theme[upload_end]="#e77171" diff --git a/colors/base16-edge-light.theme b/colors/base16-edge-light.theme new file mode 100644 index 0000000..a2a2d41 --- /dev/null +++ b/colors/base16-edge-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Edge Light +# author: cjayross (https://github.com/cjayross) +# slug: edge-light +# slug-underscored: edge_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fafafa" + +# Main text color +theme[main_fg]="#5e646f" + +# Title color for boxes +theme[title]="#5e646f" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6587bf" + +# Background color of selected item in processes box +theme[selected_bg]="#7c9f4b" + +# Foreground color of selected item in processes box +theme[selected_fg]="#5e646f" + +# Color of inactive/disabled text +theme[inactive_fg]="#6587bf" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6587bf" + +# Cpu box outline color +theme[cpu_box]="#6587bf" + +# Memory/disks box outline color +theme[mem_box]="#6587bf" + +# Net up/down box outline color +theme[net_box]="#6587bf" + +# Processes box outline color +theme[proc_box]="#6587bf" + +# Box divider line and small boxes line color +theme[div_line]="#6587bf" + +# Temperature graph colors +theme[temp_start]="#7c9f4b" +theme[temp_mid]="#d69822" +theme[temp_end]="#db7070" + +# CPU graph colors +theme[cpu_start]="#7c9f4b" +theme[cpu_mid]="#d69822" +theme[cpu_end]="#db7070" + +# Mem/Disk free meter +theme[free_start]="#7c9f4b" +theme[free_mid]="#d69822" +theme[free_end]="#db7070" + +# Mem/Disk cached meter +theme[cached_start]="#7c9f4b" +theme[cached_mid]="#d69822" +theme[cached_end]="#db7070" + +# Mem/Disk available meter +theme[available_start]="#7c9f4b" +theme[available_mid]="#d69822" +theme[available_end]="#db7070" + +# Mem/Disk used meter +theme[used_start]="#7c9f4b" +theme[used_mid]="#d69822" +theme[used_end]="#db7070" + +# Download graph colors +theme[download_start]="#7c9f4b" +theme[download_mid]="#d69822" +theme[download_end]="#db7070" + +# Upload graph colors +theme[upload_start]="#7c9f4b" +theme[upload_mid]="#d69822" +theme[upload_end]="#db7070" diff --git a/colors/base16-eighties.theme b/colors/base16-eighties.theme new file mode 100644 index 0000000..f497942 --- /dev/null +++ b/colors/base16-eighties.theme @@ -0,0 +1,90 @@ +# +# +# name: Eighties +# author: Chris Kempson (http://chriskempson.com) +# slug: eighties +# slug-underscored: eighties +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2d2d2d" + +# Main text color +theme[main_fg]="#d3d0c8" + +# Title color for boxes +theme[title]="#d3d0c8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6699cc" + +# Background color of selected item in processes box +theme[selected_bg]="#393939" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d3d0c8" + +# Color of inactive/disabled text +theme[inactive_fg]="#a09f93" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6699cc" + +# Cpu box outline color +theme[cpu_box]="#a09f93" + +# Memory/disks box outline color +theme[mem_box]="#a09f93" + +# Net up/down box outline color +theme[net_box]="#a09f93" + +# Processes box outline color +theme[proc_box]="#a09f93" + +# Box divider line and small boxes line color +theme[div_line]="#a09f93" + +# Temperature graph colors +theme[temp_start]="#99cc99" +theme[temp_mid]="#ffcc66" +theme[temp_end]="#f2777a" + +# CPU graph colors +theme[cpu_start]="#99cc99" +theme[cpu_mid]="#ffcc66" +theme[cpu_end]="#f2777a" + +# Mem/Disk free meter +theme[free_start]="#99cc99" +theme[free_mid]="#ffcc66" +theme[free_end]="#f2777a" + +# Mem/Disk cached meter +theme[cached_start]="#99cc99" +theme[cached_mid]="#ffcc66" +theme[cached_end]="#f2777a" + +# Mem/Disk available meter +theme[available_start]="#99cc99" +theme[available_mid]="#ffcc66" +theme[available_end]="#f2777a" + +# Mem/Disk used meter +theme[used_start]="#99cc99" +theme[used_mid]="#ffcc66" +theme[used_end]="#f2777a" + +# Download graph colors +theme[download_start]="#99cc99" +theme[download_mid]="#ffcc66" +theme[download_end]="#f2777a" + +# Upload graph colors +theme[upload_start]="#99cc99" +theme[upload_mid]="#ffcc66" +theme[upload_end]="#f2777a" diff --git a/colors/base16-embers-light.theme b/colors/base16-embers-light.theme new file mode 100644 index 0000000..3a441a0 --- /dev/null +++ b/colors/base16-embers-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Embers Light +# author: Jannik Siebert (https://github.com/janniks) +# slug: embers-light +# slug-underscored: embers_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#d1d6db" + +# Main text color +theme[main_fg]="#323b43" + +# Title color for boxes +theme[title]="#323b43" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#82576d" + +# Background color of selected item in processes box +theme[selected_bg]="#aeb6be" + +# Foreground color of selected item in processes box +theme[selected_fg]="#323b43" + +# Color of inactive/disabled text +theme[inactive_fg]="#47505a" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#82576d" + +# Cpu box outline color +theme[cpu_box]="#47505a" + +# Memory/disks box outline color +theme[mem_box]="#47505a" + +# Net up/down box outline color +theme[net_box]="#47505a" + +# Processes box outline color +theme[proc_box]="#47505a" + +# Box divider line and small boxes line color +theme[div_line]="#47505a" + +# Temperature graph colors +theme[temp_start]="#6d8257" +theme[temp_mid]="#57826d" +theme[temp_end]="#576d82" + +# CPU graph colors +theme[cpu_start]="#6d8257" +theme[cpu_mid]="#57826d" +theme[cpu_end]="#576d82" + +# Mem/Disk free meter +theme[free_start]="#6d8257" +theme[free_mid]="#57826d" +theme[free_end]="#576d82" + +# Mem/Disk cached meter +theme[cached_start]="#6d8257" +theme[cached_mid]="#57826d" +theme[cached_end]="#576d82" + +# Mem/Disk available meter +theme[available_start]="#6d8257" +theme[available_mid]="#57826d" +theme[available_end]="#576d82" + +# Mem/Disk used meter +theme[used_start]="#6d8257" +theme[used_mid]="#57826d" +theme[used_end]="#576d82" + +# Download graph colors +theme[download_start]="#6d8257" +theme[download_mid]="#57826d" +theme[download_end]="#576d82" + +# Upload graph colors +theme[upload_start]="#6d8257" +theme[upload_mid]="#57826d" +theme[upload_end]="#576d82" diff --git a/colors/base16-embers.theme b/colors/base16-embers.theme new file mode 100644 index 0000000..db54ffa --- /dev/null +++ b/colors/base16-embers.theme @@ -0,0 +1,90 @@ +# +# +# name: Embers +# author: Jannik Siebert (https://github.com/janniks) +# slug: embers +# slug-underscored: embers +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#16130F" + +# Main text color +theme[main_fg]="#A39A90" + +# Title color for boxes +theme[title]="#A39A90" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6D5782" + +# Background color of selected item in processes box +theme[selected_bg]="#2C2620" + +# Foreground color of selected item in processes box +theme[selected_fg]="#A39A90" + +# Color of inactive/disabled text +theme[inactive_fg]="#8A8075" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6D5782" + +# Cpu box outline color +theme[cpu_box]="#8A8075" + +# Memory/disks box outline color +theme[mem_box]="#8A8075" + +# Net up/down box outline color +theme[net_box]="#8A8075" + +# Processes box outline color +theme[proc_box]="#8A8075" + +# Box divider line and small boxes line color +theme[div_line]="#8A8075" + +# Temperature graph colors +theme[temp_start]="#57826D" +theme[temp_mid]="#6D8257" +theme[temp_end]="#826D57" + +# CPU graph colors +theme[cpu_start]="#57826D" +theme[cpu_mid]="#6D8257" +theme[cpu_end]="#826D57" + +# Mem/Disk free meter +theme[free_start]="#57826D" +theme[free_mid]="#6D8257" +theme[free_end]="#826D57" + +# Mem/Disk cached meter +theme[cached_start]="#57826D" +theme[cached_mid]="#6D8257" +theme[cached_end]="#826D57" + +# Mem/Disk available meter +theme[available_start]="#57826D" +theme[available_mid]="#6D8257" +theme[available_end]="#826D57" + +# Mem/Disk used meter +theme[used_start]="#57826D" +theme[used_mid]="#6D8257" +theme[used_end]="#826D57" + +# Download graph colors +theme[download_start]="#57826D" +theme[download_mid]="#6D8257" +theme[download_end]="#826D57" + +# Upload graph colors +theme[upload_start]="#57826D" +theme[upload_mid]="#6D8257" +theme[upload_end]="#826D57" diff --git a/colors/base16-emil.theme b/colors/base16-emil.theme new file mode 100644 index 0000000..d0da0d1 --- /dev/null +++ b/colors/base16-emil.theme @@ -0,0 +1,90 @@ +# +# +# name: emil +# author: limelier +# slug: emil +# slug-underscored: emil +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#efefef" + +# Main text color +theme[main_fg]="#313145" + +# Title color for boxes +theme[title]="#313145" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#471397" + +# Background color of selected item in processes box +theme[selected_bg]="#bebed2" + +# Foreground color of selected item in processes box +theme[selected_fg]="#313145" + +# Color of inactive/disabled text +theme[inactive_fg]="#505063" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#471397" + +# Cpu box outline color +theme[cpu_box]="#505063" + +# Memory/disks box outline color +theme[mem_box]="#505063" + +# Net up/down box outline color +theme[net_box]="#505063" + +# Processes box outline color +theme[proc_box]="#505063" + +# Box divider line and small boxes line color +theme[div_line]="#505063" + +# Temperature graph colors +theme[temp_start]="#0073a8" +theme[temp_mid]="#ff669b" +theme[temp_end]="#f43979" + +# CPU graph colors +theme[cpu_start]="#0073a8" +theme[cpu_mid]="#ff669b" +theme[cpu_end]="#f43979" + +# Mem/Disk free meter +theme[free_start]="#0073a8" +theme[free_mid]="#ff669b" +theme[free_end]="#f43979" + +# Mem/Disk cached meter +theme[cached_start]="#0073a8" +theme[cached_mid]="#ff669b" +theme[cached_end]="#f43979" + +# Mem/Disk available meter +theme[available_start]="#0073a8" +theme[available_mid]="#ff669b" +theme[available_end]="#f43979" + +# Mem/Disk used meter +theme[used_start]="#0073a8" +theme[used_mid]="#ff669b" +theme[used_end]="#f43979" + +# Download graph colors +theme[download_start]="#0073a8" +theme[download_mid]="#ff669b" +theme[download_end]="#f43979" + +# Upload graph colors +theme[upload_start]="#0073a8" +theme[upload_mid]="#ff669b" +theme[upload_end]="#f43979" diff --git a/colors/base16-equilibrium-dark.theme b/colors/base16-equilibrium-dark.theme new file mode 100644 index 0000000..01f9271 --- /dev/null +++ b/colors/base16-equilibrium-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Equilibrium Dark +# author: Carlo Abelli +# slug: equilibrium-dark +# slug-underscored: equilibrium_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#0c1118" + +# Main text color +theme[main_fg]="#afaba2" + +# Title color for boxes +theme[title]="#afaba2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#008dd1" + +# Background color of selected item in processes box +theme[selected_bg]="#181c22" + +# Foreground color of selected item in processes box +theme[selected_fg]="#afaba2" + +# Color of inactive/disabled text +theme[inactive_fg]="#949088" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#008dd1" + +# Cpu box outline color +theme[cpu_box]="#949088" + +# Memory/disks box outline color +theme[mem_box]="#949088" + +# Net up/down box outline color +theme[net_box]="#949088" + +# Processes box outline color +theme[proc_box]="#949088" + +# Box divider line and small boxes line color +theme[div_line]="#949088" + +# Temperature graph colors +theme[temp_start]="#7f8b00" +theme[temp_mid]="#bb8801" +theme[temp_end]="#f04339" + +# CPU graph colors +theme[cpu_start]="#7f8b00" +theme[cpu_mid]="#bb8801" +theme[cpu_end]="#f04339" + +# Mem/Disk free meter +theme[free_start]="#7f8b00" +theme[free_mid]="#bb8801" +theme[free_end]="#f04339" + +# Mem/Disk cached meter +theme[cached_start]="#7f8b00" +theme[cached_mid]="#bb8801" +theme[cached_end]="#f04339" + +# Mem/Disk available meter +theme[available_start]="#7f8b00" +theme[available_mid]="#bb8801" +theme[available_end]="#f04339" + +# Mem/Disk used meter +theme[used_start]="#7f8b00" +theme[used_mid]="#bb8801" +theme[used_end]="#f04339" + +# Download graph colors +theme[download_start]="#7f8b00" +theme[download_mid]="#bb8801" +theme[download_end]="#f04339" + +# Upload graph colors +theme[upload_start]="#7f8b00" +theme[upload_mid]="#bb8801" +theme[upload_end]="#f04339" diff --git a/colors/base16-equilibrium-gray-dark.theme b/colors/base16-equilibrium-gray-dark.theme new file mode 100644 index 0000000..c6c3c58 --- /dev/null +++ b/colors/base16-equilibrium-gray-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Equilibrium Gray Dark +# author: Carlo Abelli +# slug: equilibrium-gray-dark +# slug-underscored: equilibrium_gray_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#111111" + +# Main text color +theme[main_fg]="#ababab" + +# Title color for boxes +theme[title]="#ababab" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#008dd1" + +# Background color of selected item in processes box +theme[selected_bg]="#1b1b1b" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ababab" + +# Color of inactive/disabled text +theme[inactive_fg]="#919191" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#008dd1" + +# Cpu box outline color +theme[cpu_box]="#919191" + +# Memory/disks box outline color +theme[mem_box]="#919191" + +# Net up/down box outline color +theme[net_box]="#919191" + +# Processes box outline color +theme[proc_box]="#919191" + +# Box divider line and small boxes line color +theme[div_line]="#919191" + +# Temperature graph colors +theme[temp_start]="#7f8b00" +theme[temp_mid]="#bb8801" +theme[temp_end]="#f04339" + +# CPU graph colors +theme[cpu_start]="#7f8b00" +theme[cpu_mid]="#bb8801" +theme[cpu_end]="#f04339" + +# Mem/Disk free meter +theme[free_start]="#7f8b00" +theme[free_mid]="#bb8801" +theme[free_end]="#f04339" + +# Mem/Disk cached meter +theme[cached_start]="#7f8b00" +theme[cached_mid]="#bb8801" +theme[cached_end]="#f04339" + +# Mem/Disk available meter +theme[available_start]="#7f8b00" +theme[available_mid]="#bb8801" +theme[available_end]="#f04339" + +# Mem/Disk used meter +theme[used_start]="#7f8b00" +theme[used_mid]="#bb8801" +theme[used_end]="#f04339" + +# Download graph colors +theme[download_start]="#7f8b00" +theme[download_mid]="#bb8801" +theme[download_end]="#f04339" + +# Upload graph colors +theme[upload_start]="#7f8b00" +theme[upload_mid]="#bb8801" +theme[upload_end]="#f04339" diff --git a/colors/base16-equilibrium-gray-light.theme b/colors/base16-equilibrium-gray-light.theme new file mode 100644 index 0000000..a346033 --- /dev/null +++ b/colors/base16-equilibrium-gray-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Equilibrium Gray Light +# author: Carlo Abelli +# slug: equilibrium-gray-light +# slug-underscored: equilibrium_gray_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f1f1f1" + +# Main text color +theme[main_fg]="#474747" + +# Title color for boxes +theme[title]="#474747" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0073b5" + +# Background color of selected item in processes box +theme[selected_bg]="#e2e2e2" + +# Foreground color of selected item in processes box +theme[selected_fg]="#474747" + +# Color of inactive/disabled text +theme[inactive_fg]="#5e5e5e" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0073b5" + +# Cpu box outline color +theme[cpu_box]="#5e5e5e" + +# Memory/disks box outline color +theme[mem_box]="#5e5e5e" + +# Net up/down box outline color +theme[net_box]="#5e5e5e" + +# Processes box outline color +theme[proc_box]="#5e5e5e" + +# Box divider line and small boxes line color +theme[div_line]="#5e5e5e" + +# Temperature graph colors +theme[temp_start]="#637200" +theme[temp_mid]="#9d6f00" +theme[temp_end]="#d02023" + +# CPU graph colors +theme[cpu_start]="#637200" +theme[cpu_mid]="#9d6f00" +theme[cpu_end]="#d02023" + +# Mem/Disk free meter +theme[free_start]="#637200" +theme[free_mid]="#9d6f00" +theme[free_end]="#d02023" + +# Mem/Disk cached meter +theme[cached_start]="#637200" +theme[cached_mid]="#9d6f00" +theme[cached_end]="#d02023" + +# Mem/Disk available meter +theme[available_start]="#637200" +theme[available_mid]="#9d6f00" +theme[available_end]="#d02023" + +# Mem/Disk used meter +theme[used_start]="#637200" +theme[used_mid]="#9d6f00" +theme[used_end]="#d02023" + +# Download graph colors +theme[download_start]="#637200" +theme[download_mid]="#9d6f00" +theme[download_end]="#d02023" + +# Upload graph colors +theme[upload_start]="#637200" +theme[upload_mid]="#9d6f00" +theme[upload_end]="#d02023" diff --git a/colors/base16-equilibrium-light.theme b/colors/base16-equilibrium-light.theme new file mode 100644 index 0000000..3258bc1 --- /dev/null +++ b/colors/base16-equilibrium-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Equilibrium Light +# author: Carlo Abelli +# slug: equilibrium-light +# slug-underscored: equilibrium_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f5f0e7" + +# Main text color +theme[main_fg]="#43474e" + +# Title color for boxes +theme[title]="#43474e" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0073b5" + +# Background color of selected item in processes box +theme[selected_bg]="#e7e2d9" + +# Foreground color of selected item in processes box +theme[selected_fg]="#43474e" + +# Color of inactive/disabled text +theme[inactive_fg]="#5a5f66" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0073b5" + +# Cpu box outline color +theme[cpu_box]="#5a5f66" + +# Memory/disks box outline color +theme[mem_box]="#5a5f66" + +# Net up/down box outline color +theme[net_box]="#5a5f66" + +# Processes box outline color +theme[proc_box]="#5a5f66" + +# Box divider line and small boxes line color +theme[div_line]="#5a5f66" + +# Temperature graph colors +theme[temp_start]="#637200" +theme[temp_mid]="#9d6f00" +theme[temp_end]="#d02023" + +# CPU graph colors +theme[cpu_start]="#637200" +theme[cpu_mid]="#9d6f00" +theme[cpu_end]="#d02023" + +# Mem/Disk free meter +theme[free_start]="#637200" +theme[free_mid]="#9d6f00" +theme[free_end]="#d02023" + +# Mem/Disk cached meter +theme[cached_start]="#637200" +theme[cached_mid]="#9d6f00" +theme[cached_end]="#d02023" + +# Mem/Disk available meter +theme[available_start]="#637200" +theme[available_mid]="#9d6f00" +theme[available_end]="#d02023" + +# Mem/Disk used meter +theme[used_start]="#637200" +theme[used_mid]="#9d6f00" +theme[used_end]="#d02023" + +# Download graph colors +theme[download_start]="#637200" +theme[download_mid]="#9d6f00" +theme[download_end]="#d02023" + +# Upload graph colors +theme[upload_start]="#637200" +theme[upload_mid]="#9d6f00" +theme[upload_end]="#d02023" diff --git a/colors/base16-eris.theme b/colors/base16-eris.theme new file mode 100644 index 0000000..581e397 --- /dev/null +++ b/colors/base16-eris.theme @@ -0,0 +1,90 @@ +# +# +# name: eris +# author: ed (https://codeberg.org/ed) +# slug: eris +# slug-underscored: eris +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#0a0920" + +# Main text color +theme[main_fg]="#606bac" + +# Title color for boxes +theme[title]="#606bac" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#258fc4" + +# Background color of selected item in processes box +theme[selected_bg]="#13133a" + +# Foreground color of selected item in processes box +theme[selected_fg]="#606bac" + +# Color of inactive/disabled text +theme[inactive_fg]="#4a5293" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#258fc4" + +# Cpu box outline color +theme[cpu_box]="#4a5293" + +# Memory/disks box outline color +theme[mem_box]="#4a5293" + +# Net up/down box outline color +theme[net_box]="#4a5293" + +# Processes box outline color +theme[proc_box]="#4a5293" + +# Box divider line and small boxes line color +theme[div_line]="#4a5293" + +# Temperature graph colors +theme[temp_start]="#faaea2" +theme[temp_mid]="#faaea2" +theme[temp_end]="#f768a3" + +# CPU graph colors +theme[cpu_start]="#faaea2" +theme[cpu_mid]="#faaea2" +theme[cpu_end]="#f768a3" + +# Mem/Disk free meter +theme[free_start]="#faaea2" +theme[free_mid]="#faaea2" +theme[free_end]="#f768a3" + +# Mem/Disk cached meter +theme[cached_start]="#faaea2" +theme[cached_mid]="#faaea2" +theme[cached_end]="#f768a3" + +# Mem/Disk available meter +theme[available_start]="#faaea2" +theme[available_mid]="#faaea2" +theme[available_end]="#f768a3" + +# Mem/Disk used meter +theme[used_start]="#faaea2" +theme[used_mid]="#faaea2" +theme[used_end]="#f768a3" + +# Download graph colors +theme[download_start]="#faaea2" +theme[download_mid]="#faaea2" +theme[download_end]="#f768a3" + +# Upload graph colors +theme[upload_start]="#faaea2" +theme[upload_mid]="#faaea2" +theme[upload_end]="#f768a3" diff --git a/colors/base16-espresso.theme b/colors/base16-espresso.theme new file mode 100644 index 0000000..54b7409 --- /dev/null +++ b/colors/base16-espresso.theme @@ -0,0 +1,90 @@ +# +# +# name: Espresso +# author: Unknown. Maintained by Alex Mirrington (https://github.com/alexmirrington) +# slug: espresso +# slug-underscored: espresso +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2d2d2d" + +# Main text color +theme[main_fg]="#cccccc" + +# Title color for boxes +theme[title]="#cccccc" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6c99bb" + +# Background color of selected item in processes box +theme[selected_bg]="#393939" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cccccc" + +# Color of inactive/disabled text +theme[inactive_fg]="#b4b7b4" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6c99bb" + +# Cpu box outline color +theme[cpu_box]="#b4b7b4" + +# Memory/disks box outline color +theme[mem_box]="#b4b7b4" + +# Net up/down box outline color +theme[net_box]="#b4b7b4" + +# Processes box outline color +theme[proc_box]="#b4b7b4" + +# Box divider line and small boxes line color +theme[div_line]="#b4b7b4" + +# Temperature graph colors +theme[temp_start]="#a5c261" +theme[temp_mid]="#ffc66d" +theme[temp_end]="#d25252" + +# CPU graph colors +theme[cpu_start]="#a5c261" +theme[cpu_mid]="#ffc66d" +theme[cpu_end]="#d25252" + +# Mem/Disk free meter +theme[free_start]="#a5c261" +theme[free_mid]="#ffc66d" +theme[free_end]="#d25252" + +# Mem/Disk cached meter +theme[cached_start]="#a5c261" +theme[cached_mid]="#ffc66d" +theme[cached_end]="#d25252" + +# Mem/Disk available meter +theme[available_start]="#a5c261" +theme[available_mid]="#ffc66d" +theme[available_end]="#d25252" + +# Mem/Disk used meter +theme[used_start]="#a5c261" +theme[used_mid]="#ffc66d" +theme[used_end]="#d25252" + +# Download graph colors +theme[download_start]="#a5c261" +theme[download_mid]="#ffc66d" +theme[download_end]="#d25252" + +# Upload graph colors +theme[upload_start]="#a5c261" +theme[upload_mid]="#ffc66d" +theme[upload_end]="#d25252" diff --git a/colors/base16-eva-dim.theme b/colors/base16-eva-dim.theme new file mode 100644 index 0000000..36443db --- /dev/null +++ b/colors/base16-eva-dim.theme @@ -0,0 +1,90 @@ +# +# +# name: Eva Dim +# author: kjakapat (https://github.com/kjakapat) +# slug: eva-dim +# slug-underscored: eva_dim +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2a3b4d" + +# Main text color +theme[main_fg]="#9fa2a6" + +# Title color for boxes +theme[title]="#9fa2a6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#1ae1dc" + +# Background color of selected item in processes box +theme[selected_bg]="#3d566f" + +# Foreground color of selected item in processes box +theme[selected_fg]="#9fa2a6" + +# Color of inactive/disabled text +theme[inactive_fg]="#7e90a3" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#1ae1dc" + +# Cpu box outline color +theme[cpu_box]="#7e90a3" + +# Memory/disks box outline color +theme[mem_box]="#7e90a3" + +# Net up/down box outline color +theme[net_box]="#7e90a3" + +# Processes box outline color +theme[proc_box]="#7e90a3" + +# Box divider line and small boxes line color +theme[div_line]="#7e90a3" + +# Temperature graph colors +theme[temp_start]="#5de561" +theme[temp_mid]="#cfd05d" +theme[temp_end]="#c4676c" + +# CPU graph colors +theme[cpu_start]="#5de561" +theme[cpu_mid]="#cfd05d" +theme[cpu_end]="#c4676c" + +# Mem/Disk free meter +theme[free_start]="#5de561" +theme[free_mid]="#cfd05d" +theme[free_end]="#c4676c" + +# Mem/Disk cached meter +theme[cached_start]="#5de561" +theme[cached_mid]="#cfd05d" +theme[cached_end]="#c4676c" + +# Mem/Disk available meter +theme[available_start]="#5de561" +theme[available_mid]="#cfd05d" +theme[available_end]="#c4676c" + +# Mem/Disk used meter +theme[used_start]="#5de561" +theme[used_mid]="#cfd05d" +theme[used_end]="#c4676c" + +# Download graph colors +theme[download_start]="#5de561" +theme[download_mid]="#cfd05d" +theme[download_end]="#c4676c" + +# Upload graph colors +theme[upload_start]="#5de561" +theme[upload_mid]="#cfd05d" +theme[upload_end]="#c4676c" diff --git a/colors/base16-eva.theme b/colors/base16-eva.theme new file mode 100644 index 0000000..0efb3de --- /dev/null +++ b/colors/base16-eva.theme @@ -0,0 +1,90 @@ +# +# +# name: Eva +# author: kjakapat (https://github.com/kjakapat) +# slug: eva +# slug-underscored: eva +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2a3b4d" + +# Main text color +theme[main_fg]="#9fa2a6" + +# Title color for boxes +theme[title]="#9fa2a6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#15f4ee" + +# Background color of selected item in processes box +theme[selected_bg]="#3d566f" + +# Foreground color of selected item in processes box +theme[selected_fg]="#9fa2a6" + +# Color of inactive/disabled text +theme[inactive_fg]="#7e90a3" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#15f4ee" + +# Cpu box outline color +theme[cpu_box]="#7e90a3" + +# Memory/disks box outline color +theme[mem_box]="#7e90a3" + +# Net up/down box outline color +theme[net_box]="#7e90a3" + +# Processes box outline color +theme[proc_box]="#7e90a3" + +# Box divider line and small boxes line color +theme[div_line]="#7e90a3" + +# Temperature graph colors +theme[temp_start]="#66ff66" +theme[temp_mid]="#ffff66" +theme[temp_end]="#c4676c" + +# CPU graph colors +theme[cpu_start]="#66ff66" +theme[cpu_mid]="#ffff66" +theme[cpu_end]="#c4676c" + +# Mem/Disk free meter +theme[free_start]="#66ff66" +theme[free_mid]="#ffff66" +theme[free_end]="#c4676c" + +# Mem/Disk cached meter +theme[cached_start]="#66ff66" +theme[cached_mid]="#ffff66" +theme[cached_end]="#c4676c" + +# Mem/Disk available meter +theme[available_start]="#66ff66" +theme[available_mid]="#ffff66" +theme[available_end]="#c4676c" + +# Mem/Disk used meter +theme[used_start]="#66ff66" +theme[used_mid]="#ffff66" +theme[used_end]="#c4676c" + +# Download graph colors +theme[download_start]="#66ff66" +theme[download_mid]="#ffff66" +theme[download_end]="#c4676c" + +# Upload graph colors +theme[upload_start]="#66ff66" +theme[upload_mid]="#ffff66" +theme[upload_end]="#c4676c" diff --git a/colors/base16-evenok-dark.theme b/colors/base16-evenok-dark.theme new file mode 100644 index 0000000..0ecdc57 --- /dev/null +++ b/colors/base16-evenok-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Evenok Dark +# author: Mekeor Melire +# slug: evenok-dark +# slug-underscored: evenok_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#d0d0d0" + +# Title color for boxes +theme[title]="#d0d0d0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#00aff2" + +# Background color of selected item in processes box +theme[selected_bg]="#202020" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d0d0d0" + +# Color of inactive/disabled text +theme[inactive_fg]="#b0b0b0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#00aff2" + +# Cpu box outline color +theme[cpu_box]="#b0b0b0" + +# Memory/disks box outline color +theme[mem_box]="#b0b0b0" + +# Net up/down box outline color +theme[net_box]="#b0b0b0" + +# Processes box outline color +theme[proc_box]="#b0b0b0" + +# Box divider line and small boxes line color +theme[div_line]="#b0b0b0" + +# Temperature graph colors +theme[temp_start]="#54bc5c" +theme[temp_mid]="#b8a300" +theme[temp_end]="#f5708a" + +# CPU graph colors +theme[cpu_start]="#54bc5c" +theme[cpu_mid]="#b8a300" +theme[cpu_end]="#f5708a" + +# Mem/Disk free meter +theme[free_start]="#54bc5c" +theme[free_mid]="#b8a300" +theme[free_end]="#f5708a" + +# Mem/Disk cached meter +theme[cached_start]="#54bc5c" +theme[cached_mid]="#b8a300" +theme[cached_end]="#f5708a" + +# Mem/Disk available meter +theme[available_start]="#54bc5c" +theme[available_mid]="#b8a300" +theme[available_end]="#f5708a" + +# Mem/Disk used meter +theme[used_start]="#54bc5c" +theme[used_mid]="#b8a300" +theme[used_end]="#f5708a" + +# Download graph colors +theme[download_start]="#54bc5c" +theme[download_mid]="#b8a300" +theme[download_end]="#f5708a" + +# Upload graph colors +theme[upload_start]="#54bc5c" +theme[upload_mid]="#b8a300" +theme[upload_end]="#f5708a" diff --git a/colors/base16-everforest-dark-hard.theme b/colors/base16-everforest-dark-hard.theme new file mode 100644 index 0000000..3a2432f --- /dev/null +++ b/colors/base16-everforest-dark-hard.theme @@ -0,0 +1,90 @@ +# +# +# name: Everforest Dark Hard +# author: Sainnhe Park (https://github.com/sainnhe) +# slug: everforest-dark-hard +# slug-underscored: everforest_dark_hard +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#272e33" + +# Main text color +theme[main_fg]="#d3c6aa" + +# Title color for boxes +theme[title]="#d3c6aa" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7fbbb3" + +# Background color of selected item in processes box +theme[selected_bg]="#2e383c" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d3c6aa" + +# Color of inactive/disabled text +theme[inactive_fg]="#9da9a0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7fbbb3" + +# Cpu box outline color +theme[cpu_box]="#9da9a0" + +# Memory/disks box outline color +theme[mem_box]="#9da9a0" + +# Net up/down box outline color +theme[net_box]="#9da9a0" + +# Processes box outline color +theme[proc_box]="#9da9a0" + +# Box divider line and small boxes line color +theme[div_line]="#9da9a0" + +# Temperature graph colors +theme[temp_start]="#a7c080" +theme[temp_mid]="#dbbc7f" +theme[temp_end]="#e67e80" + +# CPU graph colors +theme[cpu_start]="#a7c080" +theme[cpu_mid]="#dbbc7f" +theme[cpu_end]="#e67e80" + +# Mem/Disk free meter +theme[free_start]="#a7c080" +theme[free_mid]="#dbbc7f" +theme[free_end]="#e67e80" + +# Mem/Disk cached meter +theme[cached_start]="#a7c080" +theme[cached_mid]="#dbbc7f" +theme[cached_end]="#e67e80" + +# Mem/Disk available meter +theme[available_start]="#a7c080" +theme[available_mid]="#dbbc7f" +theme[available_end]="#e67e80" + +# Mem/Disk used meter +theme[used_start]="#a7c080" +theme[used_mid]="#dbbc7f" +theme[used_end]="#e67e80" + +# Download graph colors +theme[download_start]="#a7c080" +theme[download_mid]="#dbbc7f" +theme[download_end]="#e67e80" + +# Upload graph colors +theme[upload_start]="#a7c080" +theme[upload_mid]="#dbbc7f" +theme[upload_end]="#e67e80" diff --git a/colors/base16-everforest.theme b/colors/base16-everforest.theme new file mode 100644 index 0000000..5f5fe4f --- /dev/null +++ b/colors/base16-everforest.theme @@ -0,0 +1,90 @@ +# +# +# name: Everforest +# author: Sainnhe Park (https://github.com/sainnhe) +# slug: everforest +# slug-underscored: everforest +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2d353b" + +# Main text color +theme[main_fg]="#d3c6aa" + +# Title color for boxes +theme[title]="#d3c6aa" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7fbbb3" + +# Background color of selected item in processes box +theme[selected_bg]="#343f44" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d3c6aa" + +# Color of inactive/disabled text +theme[inactive_fg]="#9da9a0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7fbbb3" + +# Cpu box outline color +theme[cpu_box]="#9da9a0" + +# Memory/disks box outline color +theme[mem_box]="#9da9a0" + +# Net up/down box outline color +theme[net_box]="#9da9a0" + +# Processes box outline color +theme[proc_box]="#9da9a0" + +# Box divider line and small boxes line color +theme[div_line]="#9da9a0" + +# Temperature graph colors +theme[temp_start]="#a7c080" +theme[temp_mid]="#dbbc7f" +theme[temp_end]="#e67e80" + +# CPU graph colors +theme[cpu_start]="#a7c080" +theme[cpu_mid]="#dbbc7f" +theme[cpu_end]="#e67e80" + +# Mem/Disk free meter +theme[free_start]="#a7c080" +theme[free_mid]="#dbbc7f" +theme[free_end]="#e67e80" + +# Mem/Disk cached meter +theme[cached_start]="#a7c080" +theme[cached_mid]="#dbbc7f" +theme[cached_end]="#e67e80" + +# Mem/Disk available meter +theme[available_start]="#a7c080" +theme[available_mid]="#dbbc7f" +theme[available_end]="#e67e80" + +# Mem/Disk used meter +theme[used_start]="#a7c080" +theme[used_mid]="#dbbc7f" +theme[used_end]="#e67e80" + +# Download graph colors +theme[download_start]="#a7c080" +theme[download_mid]="#dbbc7f" +theme[download_end]="#e67e80" + +# Upload graph colors +theme[upload_start]="#a7c080" +theme[upload_mid]="#dbbc7f" +theme[upload_end]="#e67e80" diff --git a/colors/base16-flat.theme b/colors/base16-flat.theme new file mode 100644 index 0000000..60ce698 --- /dev/null +++ b/colors/base16-flat.theme @@ -0,0 +1,90 @@ +# +# +# name: Flat +# author: Chris Kempson (http://chriskempson.com) +# slug: flat +# slug-underscored: flat +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2C3E50" + +# Main text color +theme[main_fg]="#e0e0e0" + +# Title color for boxes +theme[title]="#e0e0e0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3498DB" + +# Background color of selected item in processes box +theme[selected_bg]="#34495E" + +# Foreground color of selected item in processes box +theme[selected_fg]="#e0e0e0" + +# Color of inactive/disabled text +theme[inactive_fg]="#BDC3C7" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3498DB" + +# Cpu box outline color +theme[cpu_box]="#BDC3C7" + +# Memory/disks box outline color +theme[mem_box]="#BDC3C7" + +# Net up/down box outline color +theme[net_box]="#BDC3C7" + +# Processes box outline color +theme[proc_box]="#BDC3C7" + +# Box divider line and small boxes line color +theme[div_line]="#BDC3C7" + +# Temperature graph colors +theme[temp_start]="#2ECC71" +theme[temp_mid]="#F1C40F" +theme[temp_end]="#E74C3C" + +# CPU graph colors +theme[cpu_start]="#2ECC71" +theme[cpu_mid]="#F1C40F" +theme[cpu_end]="#E74C3C" + +# Mem/Disk free meter +theme[free_start]="#2ECC71" +theme[free_mid]="#F1C40F" +theme[free_end]="#E74C3C" + +# Mem/Disk cached meter +theme[cached_start]="#2ECC71" +theme[cached_mid]="#F1C40F" +theme[cached_end]="#E74C3C" + +# Mem/Disk available meter +theme[available_start]="#2ECC71" +theme[available_mid]="#F1C40F" +theme[available_end]="#E74C3C" + +# Mem/Disk used meter +theme[used_start]="#2ECC71" +theme[used_mid]="#F1C40F" +theme[used_end]="#E74C3C" + +# Download graph colors +theme[download_start]="#2ECC71" +theme[download_mid]="#F1C40F" +theme[download_end]="#E74C3C" + +# Upload graph colors +theme[upload_start]="#2ECC71" +theme[upload_mid]="#F1C40F" +theme[upload_end]="#E74C3C" diff --git a/colors/base16-framer.theme b/colors/base16-framer.theme new file mode 100644 index 0000000..1d126ed --- /dev/null +++ b/colors/base16-framer.theme @@ -0,0 +1,90 @@ +# +# +# name: Framer +# author: Framer (Maintained by Jesse Hoyos) +# slug: framer +# slug-underscored: framer +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#181818" + +# Main text color +theme[main_fg]="#D0D0D0" + +# Title color for boxes +theme[title]="#D0D0D0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#20BCFC" + +# Background color of selected item in processes box +theme[selected_bg]="#151515" + +# Foreground color of selected item in processes box +theme[selected_fg]="#D0D0D0" + +# Color of inactive/disabled text +theme[inactive_fg]="#B9B9B9" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#20BCFC" + +# Cpu box outline color +theme[cpu_box]="#B9B9B9" + +# Memory/disks box outline color +theme[mem_box]="#B9B9B9" + +# Net up/down box outline color +theme[net_box]="#B9B9B9" + +# Processes box outline color +theme[proc_box]="#B9B9B9" + +# Box divider line and small boxes line color +theme[div_line]="#B9B9B9" + +# Temperature graph colors +theme[temp_start]="#32CCDC" +theme[temp_mid]="#FECB6E" +theme[temp_end]="#FD886B" + +# CPU graph colors +theme[cpu_start]="#32CCDC" +theme[cpu_mid]="#FECB6E" +theme[cpu_end]="#FD886B" + +# Mem/Disk free meter +theme[free_start]="#32CCDC" +theme[free_mid]="#FECB6E" +theme[free_end]="#FD886B" + +# Mem/Disk cached meter +theme[cached_start]="#32CCDC" +theme[cached_mid]="#FECB6E" +theme[cached_end]="#FD886B" + +# Mem/Disk available meter +theme[available_start]="#32CCDC" +theme[available_mid]="#FECB6E" +theme[available_end]="#FD886B" + +# Mem/Disk used meter +theme[used_start]="#32CCDC" +theme[used_mid]="#FECB6E" +theme[used_end]="#FD886B" + +# Download graph colors +theme[download_start]="#32CCDC" +theme[download_mid]="#FECB6E" +theme[download_end]="#FD886B" + +# Upload graph colors +theme[upload_start]="#32CCDC" +theme[upload_mid]="#FECB6E" +theme[upload_end]="#FD886B" diff --git a/colors/base16-fruit-soda.theme b/colors/base16-fruit-soda.theme new file mode 100644 index 0000000..4180fd2 --- /dev/null +++ b/colors/base16-fruit-soda.theme @@ -0,0 +1,90 @@ +# +# +# name: Fruit Soda +# author: jozip +# slug: fruit-soda +# slug-underscored: fruit_soda +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f1ecf1" + +# Main text color +theme[main_fg]="#515151" + +# Title color for boxes +theme[title]="#515151" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#2931df" + +# Background color of selected item in processes box +theme[selected_bg]="#e0dee0" + +# Foreground color of selected item in processes box +theme[selected_fg]="#515151" + +# Color of inactive/disabled text +theme[inactive_fg]="#979598" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#2931df" + +# Cpu box outline color +theme[cpu_box]="#979598" + +# Memory/disks box outline color +theme[mem_box]="#979598" + +# Net up/down box outline color +theme[net_box]="#979598" + +# Processes box outline color +theme[proc_box]="#979598" + +# Box divider line and small boxes line color +theme[div_line]="#979598" + +# Temperature graph colors +theme[temp_start]="#47f74c" +theme[temp_mid]="#f7e203" +theme[temp_end]="#fe3e31" + +# CPU graph colors +theme[cpu_start]="#47f74c" +theme[cpu_mid]="#f7e203" +theme[cpu_end]="#fe3e31" + +# Mem/Disk free meter +theme[free_start]="#47f74c" +theme[free_mid]="#f7e203" +theme[free_end]="#fe3e31" + +# Mem/Disk cached meter +theme[cached_start]="#47f74c" +theme[cached_mid]="#f7e203" +theme[cached_end]="#fe3e31" + +# Mem/Disk available meter +theme[available_start]="#47f74c" +theme[available_mid]="#f7e203" +theme[available_end]="#fe3e31" + +# Mem/Disk used meter +theme[used_start]="#47f74c" +theme[used_mid]="#f7e203" +theme[used_end]="#fe3e31" + +# Download graph colors +theme[download_start]="#47f74c" +theme[download_mid]="#f7e203" +theme[download_end]="#fe3e31" + +# Upload graph colors +theme[upload_start]="#47f74c" +theme[upload_mid]="#f7e203" +theme[upload_end]="#fe3e31" diff --git a/colors/base16-gigavolt.theme b/colors/base16-gigavolt.theme new file mode 100644 index 0000000..36b39b6 --- /dev/null +++ b/colors/base16-gigavolt.theme @@ -0,0 +1,90 @@ +# +# +# name: Gigavolt +# author: Aidan Swope (http://github.com/Whillikers) +# slug: gigavolt +# slug-underscored: gigavolt +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#202126" + +# Main text color +theme[main_fg]="#e9e7e1" + +# Title color for boxes +theme[title]="#e9e7e1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#40bfff" + +# Background color of selected item in processes box +theme[selected_bg]="#2d303d" + +# Foreground color of selected item in processes box +theme[selected_fg]="#e9e7e1" + +# Color of inactive/disabled text +theme[inactive_fg]="#cad3ff" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#40bfff" + +# Cpu box outline color +theme[cpu_box]="#cad3ff" + +# Memory/disks box outline color +theme[mem_box]="#cad3ff" + +# Net up/down box outline color +theme[net_box]="#cad3ff" + +# Processes box outline color +theme[proc_box]="#cad3ff" + +# Box divider line and small boxes line color +theme[div_line]="#cad3ff" + +# Temperature graph colors +theme[temp_start]="#f2e6a9" +theme[temp_mid]="#ffdc2d" +theme[temp_end]="#ff661a" + +# CPU graph colors +theme[cpu_start]="#f2e6a9" +theme[cpu_mid]="#ffdc2d" +theme[cpu_end]="#ff661a" + +# Mem/Disk free meter +theme[free_start]="#f2e6a9" +theme[free_mid]="#ffdc2d" +theme[free_end]="#ff661a" + +# Mem/Disk cached meter +theme[cached_start]="#f2e6a9" +theme[cached_mid]="#ffdc2d" +theme[cached_end]="#ff661a" + +# Mem/Disk available meter +theme[available_start]="#f2e6a9" +theme[available_mid]="#ffdc2d" +theme[available_end]="#ff661a" + +# Mem/Disk used meter +theme[used_start]="#f2e6a9" +theme[used_mid]="#ffdc2d" +theme[used_end]="#ff661a" + +# Download graph colors +theme[download_start]="#f2e6a9" +theme[download_mid]="#ffdc2d" +theme[download_end]="#ff661a" + +# Upload graph colors +theme[upload_start]="#f2e6a9" +theme[upload_mid]="#ffdc2d" +theme[upload_end]="#ff661a" diff --git a/colors/base16-github.theme b/colors/base16-github.theme new file mode 100644 index 0000000..ddad03e --- /dev/null +++ b/colors/base16-github.theme @@ -0,0 +1,90 @@ +# +# +# name: Github +# author: Defman21 +# slug: github +# slug-underscored: github +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ffffff" + +# Main text color +theme[main_fg]="#333333" + +# Title color for boxes +theme[title]="#333333" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#795da3" + +# Background color of selected item in processes box +theme[selected_bg]="#f5f5f5" + +# Foreground color of selected item in processes box +theme[selected_fg]="#333333" + +# Color of inactive/disabled text +theme[inactive_fg]="#e8e8e8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#795da3" + +# Cpu box outline color +theme[cpu_box]="#e8e8e8" + +# Memory/disks box outline color +theme[mem_box]="#e8e8e8" + +# Net up/down box outline color +theme[net_box]="#e8e8e8" + +# Processes box outline color +theme[proc_box]="#e8e8e8" + +# Box divider line and small boxes line color +theme[div_line]="#e8e8e8" + +# Temperature graph colors +theme[temp_start]="#183691" +theme[temp_mid]="#795da3" +theme[temp_end]="#ed6a43" + +# CPU graph colors +theme[cpu_start]="#183691" +theme[cpu_mid]="#795da3" +theme[cpu_end]="#ed6a43" + +# Mem/Disk free meter +theme[free_start]="#183691" +theme[free_mid]="#795da3" +theme[free_end]="#ed6a43" + +# Mem/Disk cached meter +theme[cached_start]="#183691" +theme[cached_mid]="#795da3" +theme[cached_end]="#ed6a43" + +# Mem/Disk available meter +theme[available_start]="#183691" +theme[available_mid]="#795da3" +theme[available_end]="#ed6a43" + +# Mem/Disk used meter +theme[used_start]="#183691" +theme[used_mid]="#795da3" +theme[used_end]="#ed6a43" + +# Download graph colors +theme[download_start]="#183691" +theme[download_mid]="#795da3" +theme[download_end]="#ed6a43" + +# Upload graph colors +theme[upload_start]="#183691" +theme[upload_mid]="#795da3" +theme[upload_end]="#ed6a43" diff --git a/colors/base16-google-dark.theme b/colors/base16-google-dark.theme new file mode 100644 index 0000000..60542e6 --- /dev/null +++ b/colors/base16-google-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Google Dark +# author: Seth Wright (http://sethawright.com) +# slug: google-dark +# slug-underscored: google_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1d1f21" + +# Main text color +theme[main_fg]="#c5c8c6" + +# Title color for boxes +theme[title]="#c5c8c6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3971ED" + +# Background color of selected item in processes box +theme[selected_bg]="#282a2e" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c5c8c6" + +# Color of inactive/disabled text +theme[inactive_fg]="#b4b7b4" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3971ED" + +# Cpu box outline color +theme[cpu_box]="#b4b7b4" + +# Memory/disks box outline color +theme[mem_box]="#b4b7b4" + +# Net up/down box outline color +theme[net_box]="#b4b7b4" + +# Processes box outline color +theme[proc_box]="#b4b7b4" + +# Box divider line and small boxes line color +theme[div_line]="#b4b7b4" + +# Temperature graph colors +theme[temp_start]="#198844" +theme[temp_mid]="#FBA922" +theme[temp_end]="#CC342B" + +# CPU graph colors +theme[cpu_start]="#198844" +theme[cpu_mid]="#FBA922" +theme[cpu_end]="#CC342B" + +# Mem/Disk free meter +theme[free_start]="#198844" +theme[free_mid]="#FBA922" +theme[free_end]="#CC342B" + +# Mem/Disk cached meter +theme[cached_start]="#198844" +theme[cached_mid]="#FBA922" +theme[cached_end]="#CC342B" + +# Mem/Disk available meter +theme[available_start]="#198844" +theme[available_mid]="#FBA922" +theme[available_end]="#CC342B" + +# Mem/Disk used meter +theme[used_start]="#198844" +theme[used_mid]="#FBA922" +theme[used_end]="#CC342B" + +# Download graph colors +theme[download_start]="#198844" +theme[download_mid]="#FBA922" +theme[download_end]="#CC342B" + +# Upload graph colors +theme[upload_start]="#198844" +theme[upload_mid]="#FBA922" +theme[upload_end]="#CC342B" diff --git a/colors/base16-google-light.theme b/colors/base16-google-light.theme new file mode 100644 index 0000000..4ded397 --- /dev/null +++ b/colors/base16-google-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Google Light +# author: Seth Wright (http://sethawright.com) +# slug: google-light +# slug-underscored: google_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ffffff" + +# Main text color +theme[main_fg]="#373b41" + +# Title color for boxes +theme[title]="#373b41" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3971ED" + +# Background color of selected item in processes box +theme[selected_bg]="#e0e0e0" + +# Foreground color of selected item in processes box +theme[selected_fg]="#373b41" + +# Color of inactive/disabled text +theme[inactive_fg]="#969896" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3971ED" + +# Cpu box outline color +theme[cpu_box]="#969896" + +# Memory/disks box outline color +theme[mem_box]="#969896" + +# Net up/down box outline color +theme[net_box]="#969896" + +# Processes box outline color +theme[proc_box]="#969896" + +# Box divider line and small boxes line color +theme[div_line]="#969896" + +# Temperature graph colors +theme[temp_start]="#198844" +theme[temp_mid]="#FBA922" +theme[temp_end]="#CC342B" + +# CPU graph colors +theme[cpu_start]="#198844" +theme[cpu_mid]="#FBA922" +theme[cpu_end]="#CC342B" + +# Mem/Disk free meter +theme[free_start]="#198844" +theme[free_mid]="#FBA922" +theme[free_end]="#CC342B" + +# Mem/Disk cached meter +theme[cached_start]="#198844" +theme[cached_mid]="#FBA922" +theme[cached_end]="#CC342B" + +# Mem/Disk available meter +theme[available_start]="#198844" +theme[available_mid]="#FBA922" +theme[available_end]="#CC342B" + +# Mem/Disk used meter +theme[used_start]="#198844" +theme[used_mid]="#FBA922" +theme[used_end]="#CC342B" + +# Download graph colors +theme[download_start]="#198844" +theme[download_mid]="#FBA922" +theme[download_end]="#CC342B" + +# Upload graph colors +theme[upload_start]="#198844" +theme[upload_mid]="#FBA922" +theme[upload_end]="#CC342B" diff --git a/colors/base16-gotham.theme b/colors/base16-gotham.theme new file mode 100644 index 0000000..7ae64bc --- /dev/null +++ b/colors/base16-gotham.theme @@ -0,0 +1,90 @@ +# +# +# name: Gotham +# author: Andrea Leopardi (arranged by Brett Jones) +# slug: gotham +# slug-underscored: gotham +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#0c1014" + +# Main text color +theme[main_fg]="#599cab" + +# Title color for boxes +theme[title]="#599cab" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#195466" + +# Background color of selected item in processes box +theme[selected_bg]="#11151c" + +# Foreground color of selected item in processes box +theme[selected_fg]="#599cab" + +# Color of inactive/disabled text +theme[inactive_fg]="#245361" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#195466" + +# Cpu box outline color +theme[cpu_box]="#245361" + +# Memory/disks box outline color +theme[mem_box]="#245361" + +# Net up/down box outline color +theme[net_box]="#245361" + +# Processes box outline color +theme[proc_box]="#245361" + +# Box divider line and small boxes line color +theme[div_line]="#245361" + +# Temperature graph colors +theme[temp_start]="#33859E" +theme[temp_mid]="#edb443" +theme[temp_end]="#c23127" + +# CPU graph colors +theme[cpu_start]="#33859E" +theme[cpu_mid]="#edb443" +theme[cpu_end]="#c23127" + +# Mem/Disk free meter +theme[free_start]="#33859E" +theme[free_mid]="#edb443" +theme[free_end]="#c23127" + +# Mem/Disk cached meter +theme[cached_start]="#33859E" +theme[cached_mid]="#edb443" +theme[cached_end]="#c23127" + +# Mem/Disk available meter +theme[available_start]="#33859E" +theme[available_mid]="#edb443" +theme[available_end]="#c23127" + +# Mem/Disk used meter +theme[used_start]="#33859E" +theme[used_mid]="#edb443" +theme[used_end]="#c23127" + +# Download graph colors +theme[download_start]="#33859E" +theme[download_mid]="#edb443" +theme[download_end]="#c23127" + +# Upload graph colors +theme[upload_start]="#33859E" +theme[upload_mid]="#edb443" +theme[upload_end]="#c23127" diff --git a/colors/base16-grayscale-dark.theme b/colors/base16-grayscale-dark.theme new file mode 100644 index 0000000..01d4235 --- /dev/null +++ b/colors/base16-grayscale-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Grayscale Dark +# author: Alexandre Gavioli (https://github.com/Alexx2/) +# slug: grayscale-dark +# slug-underscored: grayscale_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#101010" + +# Main text color +theme[main_fg]="#b9b9b9" + +# Title color for boxes +theme[title]="#b9b9b9" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#686868" + +# Background color of selected item in processes box +theme[selected_bg]="#252525" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b9b9b9" + +# Color of inactive/disabled text +theme[inactive_fg]="#ababab" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#686868" + +# Cpu box outline color +theme[cpu_box]="#ababab" + +# Memory/disks box outline color +theme[mem_box]="#ababab" + +# Net up/down box outline color +theme[net_box]="#ababab" + +# Processes box outline color +theme[proc_box]="#ababab" + +# Box divider line and small boxes line color +theme[div_line]="#ababab" + +# Temperature graph colors +theme[temp_start]="#8e8e8e" +theme[temp_mid]="#a0a0a0" +theme[temp_end]="#7c7c7c" + +# CPU graph colors +theme[cpu_start]="#8e8e8e" +theme[cpu_mid]="#a0a0a0" +theme[cpu_end]="#7c7c7c" + +# Mem/Disk free meter +theme[free_start]="#8e8e8e" +theme[free_mid]="#a0a0a0" +theme[free_end]="#7c7c7c" + +# Mem/Disk cached meter +theme[cached_start]="#8e8e8e" +theme[cached_mid]="#a0a0a0" +theme[cached_end]="#7c7c7c" + +# Mem/Disk available meter +theme[available_start]="#8e8e8e" +theme[available_mid]="#a0a0a0" +theme[available_end]="#7c7c7c" + +# Mem/Disk used meter +theme[used_start]="#8e8e8e" +theme[used_mid]="#a0a0a0" +theme[used_end]="#7c7c7c" + +# Download graph colors +theme[download_start]="#8e8e8e" +theme[download_mid]="#a0a0a0" +theme[download_end]="#7c7c7c" + +# Upload graph colors +theme[upload_start]="#8e8e8e" +theme[upload_mid]="#a0a0a0" +theme[upload_end]="#7c7c7c" diff --git a/colors/base16-grayscale-light.theme b/colors/base16-grayscale-light.theme new file mode 100644 index 0000000..bd25b1c --- /dev/null +++ b/colors/base16-grayscale-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Grayscale Light +# author: Alexandre Gavioli (https://github.com/Alexx2/) +# slug: grayscale-light +# slug-underscored: grayscale_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f7f7f7" + +# Main text color +theme[main_fg]="#464646" + +# Title color for boxes +theme[title]="#464646" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#686868" + +# Background color of selected item in processes box +theme[selected_bg]="#e3e3e3" + +# Foreground color of selected item in processes box +theme[selected_fg]="#464646" + +# Color of inactive/disabled text +theme[inactive_fg]="#525252" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#686868" + +# Cpu box outline color +theme[cpu_box]="#525252" + +# Memory/disks box outline color +theme[mem_box]="#525252" + +# Net up/down box outline color +theme[net_box]="#525252" + +# Processes box outline color +theme[proc_box]="#525252" + +# Box divider line and small boxes line color +theme[div_line]="#525252" + +# Temperature graph colors +theme[temp_start]="#8e8e8e" +theme[temp_mid]="#a0a0a0" +theme[temp_end]="#7c7c7c" + +# CPU graph colors +theme[cpu_start]="#8e8e8e" +theme[cpu_mid]="#a0a0a0" +theme[cpu_end]="#7c7c7c" + +# Mem/Disk free meter +theme[free_start]="#8e8e8e" +theme[free_mid]="#a0a0a0" +theme[free_end]="#7c7c7c" + +# Mem/Disk cached meter +theme[cached_start]="#8e8e8e" +theme[cached_mid]="#a0a0a0" +theme[cached_end]="#7c7c7c" + +# Mem/Disk available meter +theme[available_start]="#8e8e8e" +theme[available_mid]="#a0a0a0" +theme[available_end]="#7c7c7c" + +# Mem/Disk used meter +theme[used_start]="#8e8e8e" +theme[used_mid]="#a0a0a0" +theme[used_end]="#7c7c7c" + +# Download graph colors +theme[download_start]="#8e8e8e" +theme[download_mid]="#a0a0a0" +theme[download_end]="#7c7c7c" + +# Upload graph colors +theme[upload_start]="#8e8e8e" +theme[upload_mid]="#a0a0a0" +theme[upload_end]="#7c7c7c" diff --git a/colors/base16-greenscreen.theme b/colors/base16-greenscreen.theme new file mode 100644 index 0000000..6793469 --- /dev/null +++ b/colors/base16-greenscreen.theme @@ -0,0 +1,90 @@ +# +# +# name: Green Screen +# author: Chris Kempson (http://chriskempson.com) +# slug: greenscreen +# slug-underscored: greenscreen +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#001100" + +# Main text color +theme[main_fg]="#00bb00" + +# Title color for boxes +theme[title]="#00bb00" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#009900" + +# Background color of selected item in processes box +theme[selected_bg]="#003300" + +# Foreground color of selected item in processes box +theme[selected_fg]="#00bb00" + +# Color of inactive/disabled text +theme[inactive_fg]="#009900" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#009900" + +# Cpu box outline color +theme[cpu_box]="#009900" + +# Memory/disks box outline color +theme[mem_box]="#009900" + +# Net up/down box outline color +theme[net_box]="#009900" + +# Processes box outline color +theme[proc_box]="#009900" + +# Box divider line and small boxes line color +theme[div_line]="#009900" + +# Temperature graph colors +theme[temp_start]="#00bb00" +theme[temp_mid]="#007700" +theme[temp_end]="#007700" + +# CPU graph colors +theme[cpu_start]="#00bb00" +theme[cpu_mid]="#007700" +theme[cpu_end]="#007700" + +# Mem/Disk free meter +theme[free_start]="#00bb00" +theme[free_mid]="#007700" +theme[free_end]="#007700" + +# Mem/Disk cached meter +theme[cached_start]="#00bb00" +theme[cached_mid]="#007700" +theme[cached_end]="#007700" + +# Mem/Disk available meter +theme[available_start]="#00bb00" +theme[available_mid]="#007700" +theme[available_end]="#007700" + +# Mem/Disk used meter +theme[used_start]="#00bb00" +theme[used_mid]="#007700" +theme[used_end]="#007700" + +# Download graph colors +theme[download_start]="#00bb00" +theme[download_mid]="#007700" +theme[download_end]="#007700" + +# Upload graph colors +theme[upload_start]="#00bb00" +theme[upload_mid]="#007700" +theme[upload_end]="#007700" diff --git a/colors/base16-gruber.theme b/colors/base16-gruber.theme new file mode 100644 index 0000000..0a1bc1c --- /dev/null +++ b/colors/base16-gruber.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruber +# author: Patel, Nimai <nimai.m.patel@gmail.com>, colors from www.github.com/rexim/gruber-darker-theme +# slug: gruber +# slug-underscored: gruber +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#181818" + +# Main text color +theme[main_fg]="#f4f4ff" + +# Title color for boxes +theme[title]="#f4f4ff" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#96a6c8" + +# Background color of selected item in processes box +theme[selected_bg]="#453d41" + +# Foreground color of selected item in processes box +theme[selected_fg]="#f4f4ff" + +# Color of inactive/disabled text +theme[inactive_fg]="#e4e4ef" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#96a6c8" + +# Cpu box outline color +theme[cpu_box]="#e4e4ef" + +# Memory/disks box outline color +theme[mem_box]="#e4e4ef" + +# Net up/down box outline color +theme[net_box]="#e4e4ef" + +# Processes box outline color +theme[proc_box]="#e4e4ef" + +# Box divider line and small boxes line color +theme[div_line]="#e4e4ef" + +# Temperature graph colors +theme[temp_start]="#73c936" +theme[temp_mid]="#ffdd33" +theme[temp_end]="#f43841" + +# CPU graph colors +theme[cpu_start]="#73c936" +theme[cpu_mid]="#ffdd33" +theme[cpu_end]="#f43841" + +# Mem/Disk free meter +theme[free_start]="#73c936" +theme[free_mid]="#ffdd33" +theme[free_end]="#f43841" + +# Mem/Disk cached meter +theme[cached_start]="#73c936" +theme[cached_mid]="#ffdd33" +theme[cached_end]="#f43841" + +# Mem/Disk available meter +theme[available_start]="#73c936" +theme[available_mid]="#ffdd33" +theme[available_end]="#f43841" + +# Mem/Disk used meter +theme[used_start]="#73c936" +theme[used_mid]="#ffdd33" +theme[used_end]="#f43841" + +# Download graph colors +theme[download_start]="#73c936" +theme[download_mid]="#ffdd33" +theme[download_end]="#f43841" + +# Upload graph colors +theme[upload_start]="#73c936" +theme[upload_mid]="#ffdd33" +theme[upload_end]="#f43841" diff --git a/colors/base16-gruvbox-dark-hard.theme b/colors/base16-gruvbox-dark-hard.theme new file mode 100644 index 0000000..8bbda40 --- /dev/null +++ b/colors/base16-gruvbox-dark-hard.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox dark, hard +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-dark-hard +# slug-underscored: gruvbox_dark_hard +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1d2021" + +# Main text color +theme[main_fg]="#d5c4a1" + +# Title color for boxes +theme[title]="#d5c4a1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#83a598" + +# Background color of selected item in processes box +theme[selected_bg]="#3c3836" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d5c4a1" + +# Color of inactive/disabled text +theme[inactive_fg]="#bdae93" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#83a598" + +# Cpu box outline color +theme[cpu_box]="#bdae93" + +# Memory/disks box outline color +theme[mem_box]="#bdae93" + +# Net up/down box outline color +theme[net_box]="#bdae93" + +# Processes box outline color +theme[proc_box]="#bdae93" + +# Box divider line and small boxes line color +theme[div_line]="#bdae93" + +# Temperature graph colors +theme[temp_start]="#b8bb26" +theme[temp_mid]="#fabd2f" +theme[temp_end]="#fb4934" + +# CPU graph colors +theme[cpu_start]="#b8bb26" +theme[cpu_mid]="#fabd2f" +theme[cpu_end]="#fb4934" + +# Mem/Disk free meter +theme[free_start]="#b8bb26" +theme[free_mid]="#fabd2f" +theme[free_end]="#fb4934" + +# Mem/Disk cached meter +theme[cached_start]="#b8bb26" +theme[cached_mid]="#fabd2f" +theme[cached_end]="#fb4934" + +# Mem/Disk available meter +theme[available_start]="#b8bb26" +theme[available_mid]="#fabd2f" +theme[available_end]="#fb4934" + +# Mem/Disk used meter +theme[used_start]="#b8bb26" +theme[used_mid]="#fabd2f" +theme[used_end]="#fb4934" + +# Download graph colors +theme[download_start]="#b8bb26" +theme[download_mid]="#fabd2f" +theme[download_end]="#fb4934" + +# Upload graph colors +theme[upload_start]="#b8bb26" +theme[upload_mid]="#fabd2f" +theme[upload_end]="#fb4934" diff --git a/colors/base16-gruvbox-dark-medium.theme b/colors/base16-gruvbox-dark-medium.theme new file mode 100644 index 0000000..3f8d005 --- /dev/null +++ b/colors/base16-gruvbox-dark-medium.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox dark, medium +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-dark-medium +# slug-underscored: gruvbox_dark_medium +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#282828" + +# Main text color +theme[main_fg]="#d5c4a1" + +# Title color for boxes +theme[title]="#d5c4a1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#83a598" + +# Background color of selected item in processes box +theme[selected_bg]="#3c3836" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d5c4a1" + +# Color of inactive/disabled text +theme[inactive_fg]="#bdae93" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#83a598" + +# Cpu box outline color +theme[cpu_box]="#bdae93" + +# Memory/disks box outline color +theme[mem_box]="#bdae93" + +# Net up/down box outline color +theme[net_box]="#bdae93" + +# Processes box outline color +theme[proc_box]="#bdae93" + +# Box divider line and small boxes line color +theme[div_line]="#bdae93" + +# Temperature graph colors +theme[temp_start]="#b8bb26" +theme[temp_mid]="#fabd2f" +theme[temp_end]="#fb4934" + +# CPU graph colors +theme[cpu_start]="#b8bb26" +theme[cpu_mid]="#fabd2f" +theme[cpu_end]="#fb4934" + +# Mem/Disk free meter +theme[free_start]="#b8bb26" +theme[free_mid]="#fabd2f" +theme[free_end]="#fb4934" + +# Mem/Disk cached meter +theme[cached_start]="#b8bb26" +theme[cached_mid]="#fabd2f" +theme[cached_end]="#fb4934" + +# Mem/Disk available meter +theme[available_start]="#b8bb26" +theme[available_mid]="#fabd2f" +theme[available_end]="#fb4934" + +# Mem/Disk used meter +theme[used_start]="#b8bb26" +theme[used_mid]="#fabd2f" +theme[used_end]="#fb4934" + +# Download graph colors +theme[download_start]="#b8bb26" +theme[download_mid]="#fabd2f" +theme[download_end]="#fb4934" + +# Upload graph colors +theme[upload_start]="#b8bb26" +theme[upload_mid]="#fabd2f" +theme[upload_end]="#fb4934" diff --git a/colors/base16-gruvbox-dark-pale.theme b/colors/base16-gruvbox-dark-pale.theme new file mode 100644 index 0000000..8c3872c --- /dev/null +++ b/colors/base16-gruvbox-dark-pale.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox dark, pale +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-dark-pale +# slug-underscored: gruvbox_dark_pale +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#262626" + +# Main text color +theme[main_fg]="#dab997" + +# Title color for boxes +theme[title]="#dab997" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#83adad" + +# Background color of selected item in processes box +theme[selected_bg]="#3a3a3a" + +# Foreground color of selected item in processes box +theme[selected_fg]="#dab997" + +# Color of inactive/disabled text +theme[inactive_fg]="#949494" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#83adad" + +# Cpu box outline color +theme[cpu_box]="#949494" + +# Memory/disks box outline color +theme[mem_box]="#949494" + +# Net up/down box outline color +theme[net_box]="#949494" + +# Processes box outline color +theme[proc_box]="#949494" + +# Box divider line and small boxes line color +theme[div_line]="#949494" + +# Temperature graph colors +theme[temp_start]="#afaf00" +theme[temp_mid]="#ffaf00" +theme[temp_end]="#d75f5f" + +# CPU graph colors +theme[cpu_start]="#afaf00" +theme[cpu_mid]="#ffaf00" +theme[cpu_end]="#d75f5f" + +# Mem/Disk free meter +theme[free_start]="#afaf00" +theme[free_mid]="#ffaf00" +theme[free_end]="#d75f5f" + +# Mem/Disk cached meter +theme[cached_start]="#afaf00" +theme[cached_mid]="#ffaf00" +theme[cached_end]="#d75f5f" + +# Mem/Disk available meter +theme[available_start]="#afaf00" +theme[available_mid]="#ffaf00" +theme[available_end]="#d75f5f" + +# Mem/Disk used meter +theme[used_start]="#afaf00" +theme[used_mid]="#ffaf00" +theme[used_end]="#d75f5f" + +# Download graph colors +theme[download_start]="#afaf00" +theme[download_mid]="#ffaf00" +theme[download_end]="#d75f5f" + +# Upload graph colors +theme[upload_start]="#afaf00" +theme[upload_mid]="#ffaf00" +theme[upload_end]="#d75f5f" diff --git a/colors/base16-gruvbox-dark-soft.theme b/colors/base16-gruvbox-dark-soft.theme new file mode 100644 index 0000000..3610ae5 --- /dev/null +++ b/colors/base16-gruvbox-dark-soft.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox dark, soft +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-dark-soft +# slug-underscored: gruvbox_dark_soft +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#32302f" + +# Main text color +theme[main_fg]="#d5c4a1" + +# Title color for boxes +theme[title]="#d5c4a1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#83a598" + +# Background color of selected item in processes box +theme[selected_bg]="#3c3836" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d5c4a1" + +# Color of inactive/disabled text +theme[inactive_fg]="#bdae93" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#83a598" + +# Cpu box outline color +theme[cpu_box]="#bdae93" + +# Memory/disks box outline color +theme[mem_box]="#bdae93" + +# Net up/down box outline color +theme[net_box]="#bdae93" + +# Processes box outline color +theme[proc_box]="#bdae93" + +# Box divider line and small boxes line color +theme[div_line]="#bdae93" + +# Temperature graph colors +theme[temp_start]="#b8bb26" +theme[temp_mid]="#fabd2f" +theme[temp_end]="#fb4934" + +# CPU graph colors +theme[cpu_start]="#b8bb26" +theme[cpu_mid]="#fabd2f" +theme[cpu_end]="#fb4934" + +# Mem/Disk free meter +theme[free_start]="#b8bb26" +theme[free_mid]="#fabd2f" +theme[free_end]="#fb4934" + +# Mem/Disk cached meter +theme[cached_start]="#b8bb26" +theme[cached_mid]="#fabd2f" +theme[cached_end]="#fb4934" + +# Mem/Disk available meter +theme[available_start]="#b8bb26" +theme[available_mid]="#fabd2f" +theme[available_end]="#fb4934" + +# Mem/Disk used meter +theme[used_start]="#b8bb26" +theme[used_mid]="#fabd2f" +theme[used_end]="#fb4934" + +# Download graph colors +theme[download_start]="#b8bb26" +theme[download_mid]="#fabd2f" +theme[download_end]="#fb4934" + +# Upload graph colors +theme[upload_start]="#b8bb26" +theme[upload_mid]="#fabd2f" +theme[upload_end]="#fb4934" diff --git a/colors/base16-gruvbox-light-hard.theme b/colors/base16-gruvbox-light-hard.theme new file mode 100644 index 0000000..01011ee --- /dev/null +++ b/colors/base16-gruvbox-light-hard.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox light, hard +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-light-hard +# slug-underscored: gruvbox_light_hard +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f9f5d7" + +# Main text color +theme[main_fg]="#504945" + +# Title color for boxes +theme[title]="#504945" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#076678" + +# Background color of selected item in processes box +theme[selected_bg]="#ebdbb2" + +# Foreground color of selected item in processes box +theme[selected_fg]="#504945" + +# Color of inactive/disabled text +theme[inactive_fg]="#665c54" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#076678" + +# Cpu box outline color +theme[cpu_box]="#665c54" + +# Memory/disks box outline color +theme[mem_box]="#665c54" + +# Net up/down box outline color +theme[net_box]="#665c54" + +# Processes box outline color +theme[proc_box]="#665c54" + +# Box divider line and small boxes line color +theme[div_line]="#665c54" + +# Temperature graph colors +theme[temp_start]="#79740e" +theme[temp_mid]="#b57614" +theme[temp_end]="#9d0006" + +# CPU graph colors +theme[cpu_start]="#79740e" +theme[cpu_mid]="#b57614" +theme[cpu_end]="#9d0006" + +# Mem/Disk free meter +theme[free_start]="#79740e" +theme[free_mid]="#b57614" +theme[free_end]="#9d0006" + +# Mem/Disk cached meter +theme[cached_start]="#79740e" +theme[cached_mid]="#b57614" +theme[cached_end]="#9d0006" + +# Mem/Disk available meter +theme[available_start]="#79740e" +theme[available_mid]="#b57614" +theme[available_end]="#9d0006" + +# Mem/Disk used meter +theme[used_start]="#79740e" +theme[used_mid]="#b57614" +theme[used_end]="#9d0006" + +# Download graph colors +theme[download_start]="#79740e" +theme[download_mid]="#b57614" +theme[download_end]="#9d0006" + +# Upload graph colors +theme[upload_start]="#79740e" +theme[upload_mid]="#b57614" +theme[upload_end]="#9d0006" diff --git a/colors/base16-gruvbox-light-medium.theme b/colors/base16-gruvbox-light-medium.theme new file mode 100644 index 0000000..944ba81 --- /dev/null +++ b/colors/base16-gruvbox-light-medium.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox light, medium +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-light-medium +# slug-underscored: gruvbox_light_medium +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fbf1c7" + +# Main text color +theme[main_fg]="#504945" + +# Title color for boxes +theme[title]="#504945" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#076678" + +# Background color of selected item in processes box +theme[selected_bg]="#ebdbb2" + +# Foreground color of selected item in processes box +theme[selected_fg]="#504945" + +# Color of inactive/disabled text +theme[inactive_fg]="#665c54" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#076678" + +# Cpu box outline color +theme[cpu_box]="#665c54" + +# Memory/disks box outline color +theme[mem_box]="#665c54" + +# Net up/down box outline color +theme[net_box]="#665c54" + +# Processes box outline color +theme[proc_box]="#665c54" + +# Box divider line and small boxes line color +theme[div_line]="#665c54" + +# Temperature graph colors +theme[temp_start]="#79740e" +theme[temp_mid]="#b57614" +theme[temp_end]="#9d0006" + +# CPU graph colors +theme[cpu_start]="#79740e" +theme[cpu_mid]="#b57614" +theme[cpu_end]="#9d0006" + +# Mem/Disk free meter +theme[free_start]="#79740e" +theme[free_mid]="#b57614" +theme[free_end]="#9d0006" + +# Mem/Disk cached meter +theme[cached_start]="#79740e" +theme[cached_mid]="#b57614" +theme[cached_end]="#9d0006" + +# Mem/Disk available meter +theme[available_start]="#79740e" +theme[available_mid]="#b57614" +theme[available_end]="#9d0006" + +# Mem/Disk used meter +theme[used_start]="#79740e" +theme[used_mid]="#b57614" +theme[used_end]="#9d0006" + +# Download graph colors +theme[download_start]="#79740e" +theme[download_mid]="#b57614" +theme[download_end]="#9d0006" + +# Upload graph colors +theme[upload_start]="#79740e" +theme[upload_mid]="#b57614" +theme[upload_end]="#9d0006" diff --git a/colors/base16-gruvbox-light-soft.theme b/colors/base16-gruvbox-light-soft.theme new file mode 100644 index 0000000..d8bcac9 --- /dev/null +++ b/colors/base16-gruvbox-light-soft.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox light, soft +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-light-soft +# slug-underscored: gruvbox_light_soft +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f2e5bc" + +# Main text color +theme[main_fg]="#504945" + +# Title color for boxes +theme[title]="#504945" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#076678" + +# Background color of selected item in processes box +theme[selected_bg]="#ebdbb2" + +# Foreground color of selected item in processes box +theme[selected_fg]="#504945" + +# Color of inactive/disabled text +theme[inactive_fg]="#665c54" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#076678" + +# Cpu box outline color +theme[cpu_box]="#665c54" + +# Memory/disks box outline color +theme[mem_box]="#665c54" + +# Net up/down box outline color +theme[net_box]="#665c54" + +# Processes box outline color +theme[proc_box]="#665c54" + +# Box divider line and small boxes line color +theme[div_line]="#665c54" + +# Temperature graph colors +theme[temp_start]="#79740e" +theme[temp_mid]="#b57614" +theme[temp_end]="#9d0006" + +# CPU graph colors +theme[cpu_start]="#79740e" +theme[cpu_mid]="#b57614" +theme[cpu_end]="#9d0006" + +# Mem/Disk free meter +theme[free_start]="#79740e" +theme[free_mid]="#b57614" +theme[free_end]="#9d0006" + +# Mem/Disk cached meter +theme[cached_start]="#79740e" +theme[cached_mid]="#b57614" +theme[cached_end]="#9d0006" + +# Mem/Disk available meter +theme[available_start]="#79740e" +theme[available_mid]="#b57614" +theme[available_end]="#9d0006" + +# Mem/Disk used meter +theme[used_start]="#79740e" +theme[used_mid]="#b57614" +theme[used_end]="#9d0006" + +# Download graph colors +theme[download_start]="#79740e" +theme[download_mid]="#b57614" +theme[download_end]="#9d0006" + +# Upload graph colors +theme[upload_start]="#79740e" +theme[upload_mid]="#b57614" +theme[upload_end]="#9d0006" diff --git a/colors/base16-gruvbox-material-dark-hard.theme b/colors/base16-gruvbox-material-dark-hard.theme new file mode 100644 index 0000000..f9ee818 --- /dev/null +++ b/colors/base16-gruvbox-material-dark-hard.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox Material Dark, Hard +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-dark-hard +# slug-underscored: gruvbox_material_dark_hard +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#202020" + +# Main text color +theme[main_fg]="#ddc7a1" + +# Title color for boxes +theme[title]="#ddc7a1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7daea3" + +# Background color of selected item in processes box +theme[selected_bg]="#2a2827" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ddc7a1" + +# Color of inactive/disabled text +theme[inactive_fg]="#bdae93" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7daea3" + +# Cpu box outline color +theme[cpu_box]="#bdae93" + +# Memory/disks box outline color +theme[mem_box]="#bdae93" + +# Net up/down box outline color +theme[net_box]="#bdae93" + +# Processes box outline color +theme[proc_box]="#bdae93" + +# Box divider line and small boxes line color +theme[div_line]="#bdae93" + +# Temperature graph colors +theme[temp_start]="#a9b665" +theme[temp_mid]="#d8a657" +theme[temp_end]="#ea6962" + +# CPU graph colors +theme[cpu_start]="#a9b665" +theme[cpu_mid]="#d8a657" +theme[cpu_end]="#ea6962" + +# Mem/Disk free meter +theme[free_start]="#a9b665" +theme[free_mid]="#d8a657" +theme[free_end]="#ea6962" + +# Mem/Disk cached meter +theme[cached_start]="#a9b665" +theme[cached_mid]="#d8a657" +theme[cached_end]="#ea6962" + +# Mem/Disk available meter +theme[available_start]="#a9b665" +theme[available_mid]="#d8a657" +theme[available_end]="#ea6962" + +# Mem/Disk used meter +theme[used_start]="#a9b665" +theme[used_mid]="#d8a657" +theme[used_end]="#ea6962" + +# Download graph colors +theme[download_start]="#a9b665" +theme[download_mid]="#d8a657" +theme[download_end]="#ea6962" + +# Upload graph colors +theme[upload_start]="#a9b665" +theme[upload_mid]="#d8a657" +theme[upload_end]="#ea6962" diff --git a/colors/base16-gruvbox-material-dark-medium.theme b/colors/base16-gruvbox-material-dark-medium.theme new file mode 100644 index 0000000..5fbad9d --- /dev/null +++ b/colors/base16-gruvbox-material-dark-medium.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox Material Dark, Medium +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-dark-medium +# slug-underscored: gruvbox_material_dark_medium +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#292828" + +# Main text color +theme[main_fg]="#ddc7a1" + +# Title color for boxes +theme[title]="#ddc7a1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7daea3" + +# Background color of selected item in processes box +theme[selected_bg]="#32302f" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ddc7a1" + +# Color of inactive/disabled text +theme[inactive_fg]="#bdae93" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7daea3" + +# Cpu box outline color +theme[cpu_box]="#bdae93" + +# Memory/disks box outline color +theme[mem_box]="#bdae93" + +# Net up/down box outline color +theme[net_box]="#bdae93" + +# Processes box outline color +theme[proc_box]="#bdae93" + +# Box divider line and small boxes line color +theme[div_line]="#bdae93" + +# Temperature graph colors +theme[temp_start]="#a9b665" +theme[temp_mid]="#d8a657" +theme[temp_end]="#ea6962" + +# CPU graph colors +theme[cpu_start]="#a9b665" +theme[cpu_mid]="#d8a657" +theme[cpu_end]="#ea6962" + +# Mem/Disk free meter +theme[free_start]="#a9b665" +theme[free_mid]="#d8a657" +theme[free_end]="#ea6962" + +# Mem/Disk cached meter +theme[cached_start]="#a9b665" +theme[cached_mid]="#d8a657" +theme[cached_end]="#ea6962" + +# Mem/Disk available meter +theme[available_start]="#a9b665" +theme[available_mid]="#d8a657" +theme[available_end]="#ea6962" + +# Mem/Disk used meter +theme[used_start]="#a9b665" +theme[used_mid]="#d8a657" +theme[used_end]="#ea6962" + +# Download graph colors +theme[download_start]="#a9b665" +theme[download_mid]="#d8a657" +theme[download_end]="#ea6962" + +# Upload graph colors +theme[upload_start]="#a9b665" +theme[upload_mid]="#d8a657" +theme[upload_end]="#ea6962" diff --git a/colors/base16-gruvbox-material-dark-soft.theme b/colors/base16-gruvbox-material-dark-soft.theme new file mode 100644 index 0000000..9125e33 --- /dev/null +++ b/colors/base16-gruvbox-material-dark-soft.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox Material Dark, Soft +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-dark-soft +# slug-underscored: gruvbox_material_dark_soft +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#32302f" + +# Main text color +theme[main_fg]="#ddc7a1" + +# Title color for boxes +theme[title]="#ddc7a1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7daea3" + +# Background color of selected item in processes box +theme[selected_bg]="#3c3836" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ddc7a1" + +# Color of inactive/disabled text +theme[inactive_fg]="#bdae93" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7daea3" + +# Cpu box outline color +theme[cpu_box]="#bdae93" + +# Memory/disks box outline color +theme[mem_box]="#bdae93" + +# Net up/down box outline color +theme[net_box]="#bdae93" + +# Processes box outline color +theme[proc_box]="#bdae93" + +# Box divider line and small boxes line color +theme[div_line]="#bdae93" + +# Temperature graph colors +theme[temp_start]="#a9b665" +theme[temp_mid]="#d8a657" +theme[temp_end]="#ea6962" + +# CPU graph colors +theme[cpu_start]="#a9b665" +theme[cpu_mid]="#d8a657" +theme[cpu_end]="#ea6962" + +# Mem/Disk free meter +theme[free_start]="#a9b665" +theme[free_mid]="#d8a657" +theme[free_end]="#ea6962" + +# Mem/Disk cached meter +theme[cached_start]="#a9b665" +theme[cached_mid]="#d8a657" +theme[cached_end]="#ea6962" + +# Mem/Disk available meter +theme[available_start]="#a9b665" +theme[available_mid]="#d8a657" +theme[available_end]="#ea6962" + +# Mem/Disk used meter +theme[used_start]="#a9b665" +theme[used_mid]="#d8a657" +theme[used_end]="#ea6962" + +# Download graph colors +theme[download_start]="#a9b665" +theme[download_mid]="#d8a657" +theme[download_end]="#ea6962" + +# Upload graph colors +theme[upload_start]="#a9b665" +theme[upload_mid]="#d8a657" +theme[upload_end]="#ea6962" diff --git a/colors/base16-gruvbox-material-light-hard.theme b/colors/base16-gruvbox-material-light-hard.theme new file mode 100644 index 0000000..6266183 --- /dev/null +++ b/colors/base16-gruvbox-material-light-hard.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox Material Light, Hard +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-light-hard +# slug-underscored: gruvbox_material_light_hard +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f9f5d7" + +# Main text color +theme[main_fg]="#654735" + +# Title color for boxes +theme[title]="#654735" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#45707a" + +# Background color of selected item in processes box +theme[selected_bg]="#fbf1c7" + +# Foreground color of selected item in processes box +theme[selected_fg]="#654735" + +# Color of inactive/disabled text +theme[inactive_fg]="#c9b99a" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#45707a" + +# Cpu box outline color +theme[cpu_box]="#c9b99a" + +# Memory/disks box outline color +theme[mem_box]="#c9b99a" + +# Net up/down box outline color +theme[net_box]="#c9b99a" + +# Processes box outline color +theme[proc_box]="#c9b99a" + +# Box divider line and small boxes line color +theme[div_line]="#c9b99a" + +# Temperature graph colors +theme[temp_start]="#6c782e" +theme[temp_mid]="#b47109" +theme[temp_end]="#c14a4a" + +# CPU graph colors +theme[cpu_start]="#6c782e" +theme[cpu_mid]="#b47109" +theme[cpu_end]="#c14a4a" + +# Mem/Disk free meter +theme[free_start]="#6c782e" +theme[free_mid]="#b47109" +theme[free_end]="#c14a4a" + +# Mem/Disk cached meter +theme[cached_start]="#6c782e" +theme[cached_mid]="#b47109" +theme[cached_end]="#c14a4a" + +# Mem/Disk available meter +theme[available_start]="#6c782e" +theme[available_mid]="#b47109" +theme[available_end]="#c14a4a" + +# Mem/Disk used meter +theme[used_start]="#6c782e" +theme[used_mid]="#b47109" +theme[used_end]="#c14a4a" + +# Download graph colors +theme[download_start]="#6c782e" +theme[download_mid]="#b47109" +theme[download_end]="#c14a4a" + +# Upload graph colors +theme[upload_start]="#6c782e" +theme[upload_mid]="#b47109" +theme[upload_end]="#c14a4a" diff --git a/colors/base16-gruvbox-material-light-medium.theme b/colors/base16-gruvbox-material-light-medium.theme new file mode 100644 index 0000000..419fe76 --- /dev/null +++ b/colors/base16-gruvbox-material-light-medium.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox Material Light, Medium +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-light-medium +# slug-underscored: gruvbox_material_light_medium +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fbf1c7" + +# Main text color +theme[main_fg]="#654735" + +# Title color for boxes +theme[title]="#654735" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#45707a" + +# Background color of selected item in processes box +theme[selected_bg]="#f2e5bc" + +# Foreground color of selected item in processes box +theme[selected_fg]="#654735" + +# Color of inactive/disabled text +theme[inactive_fg]="#665c54" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#45707a" + +# Cpu box outline color +theme[cpu_box]="#665c54" + +# Memory/disks box outline color +theme[mem_box]="#665c54" + +# Net up/down box outline color +theme[net_box]="#665c54" + +# Processes box outline color +theme[proc_box]="#665c54" + +# Box divider line and small boxes line color +theme[div_line]="#665c54" + +# Temperature graph colors +theme[temp_start]="#6c782e" +theme[temp_mid]="#b47109" +theme[temp_end]="#c14a4a" + +# CPU graph colors +theme[cpu_start]="#6c782e" +theme[cpu_mid]="#b47109" +theme[cpu_end]="#c14a4a" + +# Mem/Disk free meter +theme[free_start]="#6c782e" +theme[free_mid]="#b47109" +theme[free_end]="#c14a4a" + +# Mem/Disk cached meter +theme[cached_start]="#6c782e" +theme[cached_mid]="#b47109" +theme[cached_end]="#c14a4a" + +# Mem/Disk available meter +theme[available_start]="#6c782e" +theme[available_mid]="#b47109" +theme[available_end]="#c14a4a" + +# Mem/Disk used meter +theme[used_start]="#6c782e" +theme[used_mid]="#b47109" +theme[used_end]="#c14a4a" + +# Download graph colors +theme[download_start]="#6c782e" +theme[download_mid]="#b47109" +theme[download_end]="#c14a4a" + +# Upload graph colors +theme[upload_start]="#6c782e" +theme[upload_mid]="#b47109" +theme[upload_end]="#c14a4a" diff --git a/colors/base16-gruvbox-material-light-soft.theme b/colors/base16-gruvbox-material-light-soft.theme new file mode 100644 index 0000000..f8dc37c --- /dev/null +++ b/colors/base16-gruvbox-material-light-soft.theme @@ -0,0 +1,90 @@ +# +# +# name: Gruvbox Material Light, Soft +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-light-soft +# slug-underscored: gruvbox_material_light_soft +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f2e5bc" + +# Main text color +theme[main_fg]="#654735" + +# Title color for boxes +theme[title]="#654735" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#45707a" + +# Background color of selected item in processes box +theme[selected_bg]="#ebdbb2" + +# Foreground color of selected item in processes box +theme[selected_fg]="#654735" + +# Color of inactive/disabled text +theme[inactive_fg]="#665c54" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#45707a" + +# Cpu box outline color +theme[cpu_box]="#665c54" + +# Memory/disks box outline color +theme[mem_box]="#665c54" + +# Net up/down box outline color +theme[net_box]="#665c54" + +# Processes box outline color +theme[proc_box]="#665c54" + +# Box divider line and small boxes line color +theme[div_line]="#665c54" + +# Temperature graph colors +theme[temp_start]="#6c782e" +theme[temp_mid]="#b47109" +theme[temp_end]="#c14a4a" + +# CPU graph colors +theme[cpu_start]="#6c782e" +theme[cpu_mid]="#b47109" +theme[cpu_end]="#c14a4a" + +# Mem/Disk free meter +theme[free_start]="#6c782e" +theme[free_mid]="#b47109" +theme[free_end]="#c14a4a" + +# Mem/Disk cached meter +theme[cached_start]="#6c782e" +theme[cached_mid]="#b47109" +theme[cached_end]="#c14a4a" + +# Mem/Disk available meter +theme[available_start]="#6c782e" +theme[available_mid]="#b47109" +theme[available_end]="#c14a4a" + +# Mem/Disk used meter +theme[used_start]="#6c782e" +theme[used_mid]="#b47109" +theme[used_end]="#c14a4a" + +# Download graph colors +theme[download_start]="#6c782e" +theme[download_mid]="#b47109" +theme[download_end]="#c14a4a" + +# Upload graph colors +theme[upload_start]="#6c782e" +theme[upload_mid]="#b47109" +theme[upload_end]="#c14a4a" diff --git a/colors/base16-hardcore.theme b/colors/base16-hardcore.theme new file mode 100644 index 0000000..eaaeaa4 --- /dev/null +++ b/colors/base16-hardcore.theme @@ -0,0 +1,90 @@ +# +# +# name: Hardcore +# author: Chris Caller +# slug: hardcore +# slug-underscored: hardcore +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#212121" + +# Main text color +theme[main_fg]="#cdcdcd" + +# Title color for boxes +theme[title]="#cdcdcd" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#66d9ef" + +# Background color of selected item in processes box +theme[selected_bg]="#303030" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cdcdcd" + +# Color of inactive/disabled text +theme[inactive_fg]="#707070" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#66d9ef" + +# Cpu box outline color +theme[cpu_box]="#707070" + +# Memory/disks box outline color +theme[mem_box]="#707070" + +# Net up/down box outline color +theme[net_box]="#707070" + +# Processes box outline color +theme[proc_box]="#707070" + +# Box divider line and small boxes line color +theme[div_line]="#707070" + +# Temperature graph colors +theme[temp_start]="#a6e22e" +theme[temp_mid]="#e6db74" +theme[temp_end]="#f92672" + +# CPU graph colors +theme[cpu_start]="#a6e22e" +theme[cpu_mid]="#e6db74" +theme[cpu_end]="#f92672" + +# Mem/Disk free meter +theme[free_start]="#a6e22e" +theme[free_mid]="#e6db74" +theme[free_end]="#f92672" + +# Mem/Disk cached meter +theme[cached_start]="#a6e22e" +theme[cached_mid]="#e6db74" +theme[cached_end]="#f92672" + +# Mem/Disk available meter +theme[available_start]="#a6e22e" +theme[available_mid]="#e6db74" +theme[available_end]="#f92672" + +# Mem/Disk used meter +theme[used_start]="#a6e22e" +theme[used_mid]="#e6db74" +theme[used_end]="#f92672" + +# Download graph colors +theme[download_start]="#a6e22e" +theme[download_mid]="#e6db74" +theme[download_end]="#f92672" + +# Upload graph colors +theme[upload_start]="#a6e22e" +theme[upload_mid]="#e6db74" +theme[upload_end]="#f92672" diff --git a/colors/base16-harmonic16-dark.theme b/colors/base16-harmonic16-dark.theme new file mode 100644 index 0000000..8720769 --- /dev/null +++ b/colors/base16-harmonic16-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Harmonic16 Dark +# author: Jannik Siebert (https://github.com/janniks) +# slug: harmonic16-dark +# slug-underscored: harmonic16_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#0b1c2c" + +# Main text color +theme[main_fg]="#cbd6e2" + +# Title color for boxes +theme[title]="#cbd6e2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8b56bf" + +# Background color of selected item in processes box +theme[selected_bg]="#223b54" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cbd6e2" + +# Color of inactive/disabled text +theme[inactive_fg]="#aabcce" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8b56bf" + +# Cpu box outline color +theme[cpu_box]="#aabcce" + +# Memory/disks box outline color +theme[mem_box]="#aabcce" + +# Net up/down box outline color +theme[net_box]="#aabcce" + +# Processes box outline color +theme[proc_box]="#aabcce" + +# Box divider line and small boxes line color +theme[div_line]="#aabcce" + +# Temperature graph colors +theme[temp_start]="#56bf8b" +theme[temp_mid]="#8bbf56" +theme[temp_end]="#bf8b56" + +# CPU graph colors +theme[cpu_start]="#56bf8b" +theme[cpu_mid]="#8bbf56" +theme[cpu_end]="#bf8b56" + +# Mem/Disk free meter +theme[free_start]="#56bf8b" +theme[free_mid]="#8bbf56" +theme[free_end]="#bf8b56" + +# Mem/Disk cached meter +theme[cached_start]="#56bf8b" +theme[cached_mid]="#8bbf56" +theme[cached_end]="#bf8b56" + +# Mem/Disk available meter +theme[available_start]="#56bf8b" +theme[available_mid]="#8bbf56" +theme[available_end]="#bf8b56" + +# Mem/Disk used meter +theme[used_start]="#56bf8b" +theme[used_mid]="#8bbf56" +theme[used_end]="#bf8b56" + +# Download graph colors +theme[download_start]="#56bf8b" +theme[download_mid]="#8bbf56" +theme[download_end]="#bf8b56" + +# Upload graph colors +theme[upload_start]="#56bf8b" +theme[upload_mid]="#8bbf56" +theme[upload_end]="#bf8b56" diff --git a/colors/base16-harmonic16-light.theme b/colors/base16-harmonic16-light.theme new file mode 100644 index 0000000..f8b8f7f --- /dev/null +++ b/colors/base16-harmonic16-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Harmonic16 Light +# author: Jannik Siebert (https://github.com/janniks) +# slug: harmonic16-light +# slug-underscored: harmonic16_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f7f9fb" + +# Main text color +theme[main_fg]="#405c79" + +# Title color for boxes +theme[title]="#405c79" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8b56bf" + +# Background color of selected item in processes box +theme[selected_bg]="#e5ebf1" + +# Foreground color of selected item in processes box +theme[selected_fg]="#405c79" + +# Color of inactive/disabled text +theme[inactive_fg]="#627e99" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8b56bf" + +# Cpu box outline color +theme[cpu_box]="#627e99" + +# Memory/disks box outline color +theme[mem_box]="#627e99" + +# Net up/down box outline color +theme[net_box]="#627e99" + +# Processes box outline color +theme[proc_box]="#627e99" + +# Box divider line and small boxes line color +theme[div_line]="#627e99" + +# Temperature graph colors +theme[temp_start]="#56bf8b" +theme[temp_mid]="#8bbf56" +theme[temp_end]="#bf8b56" + +# CPU graph colors +theme[cpu_start]="#56bf8b" +theme[cpu_mid]="#8bbf56" +theme[cpu_end]="#bf8b56" + +# Mem/Disk free meter +theme[free_start]="#56bf8b" +theme[free_mid]="#8bbf56" +theme[free_end]="#bf8b56" + +# Mem/Disk cached meter +theme[cached_start]="#56bf8b" +theme[cached_mid]="#8bbf56" +theme[cached_end]="#bf8b56" + +# Mem/Disk available meter +theme[available_start]="#56bf8b" +theme[available_mid]="#8bbf56" +theme[available_end]="#bf8b56" + +# Mem/Disk used meter +theme[used_start]="#56bf8b" +theme[used_mid]="#8bbf56" +theme[used_end]="#bf8b56" + +# Download graph colors +theme[download_start]="#56bf8b" +theme[download_mid]="#8bbf56" +theme[download_end]="#bf8b56" + +# Upload graph colors +theme[upload_start]="#56bf8b" +theme[upload_mid]="#8bbf56" +theme[upload_end]="#bf8b56" diff --git a/colors/base16-heetch-light.theme b/colors/base16-heetch-light.theme new file mode 100644 index 0000000..6d41180 --- /dev/null +++ b/colors/base16-heetch-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Heetch Light +# author: Geoffrey Teale (tealeg@gmail.com) +# slug: heetch-light +# slug-underscored: heetch_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#feffff" + +# Main text color +theme[main_fg]="#5a496e" + +# Title color for boxes +theme[title]="#5a496e" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#47f9f5" + +# Background color of selected item in processes box +theme[selected_bg]="#392551" + +# Foreground color of selected item in processes box +theme[selected_fg]="#5a496e" + +# Color of inactive/disabled text +theme[inactive_fg]="#ddd6e5" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#47f9f5" + +# Cpu box outline color +theme[cpu_box]="#ddd6e5" + +# Memory/disks box outline color +theme[mem_box]="#ddd6e5" + +# Net up/down box outline color +theme[net_box]="#ddd6e5" + +# Processes box outline color +theme[proc_box]="#ddd6e5" + +# Box divider line and small boxes line color +theme[div_line]="#ddd6e5" + +# Temperature graph colors +theme[temp_start]="#f80059" +theme[temp_mid]="#5ba2b6" +theme[temp_end]="#27d9d5" + +# CPU graph colors +theme[cpu_start]="#f80059" +theme[cpu_mid]="#5ba2b6" +theme[cpu_end]="#27d9d5" + +# Mem/Disk free meter +theme[free_start]="#f80059" +theme[free_mid]="#5ba2b6" +theme[free_end]="#27d9d5" + +# Mem/Disk cached meter +theme[cached_start]="#f80059" +theme[cached_mid]="#5ba2b6" +theme[cached_end]="#27d9d5" + +# Mem/Disk available meter +theme[available_start]="#f80059" +theme[available_mid]="#5ba2b6" +theme[available_end]="#27d9d5" + +# Mem/Disk used meter +theme[used_start]="#f80059" +theme[used_mid]="#5ba2b6" +theme[used_end]="#27d9d5" + +# Download graph colors +theme[download_start]="#f80059" +theme[download_mid]="#5ba2b6" +theme[download_end]="#27d9d5" + +# Upload graph colors +theme[upload_start]="#f80059" +theme[upload_mid]="#5ba2b6" +theme[upload_end]="#27d9d5" diff --git a/colors/base16-heetch.theme b/colors/base16-heetch.theme new file mode 100644 index 0000000..e4f39a4 --- /dev/null +++ b/colors/base16-heetch.theme @@ -0,0 +1,90 @@ +# +# +# name: Heetch Dark +# author: Geoffrey Teale (tealeg@gmail.com) +# slug: heetch +# slug-underscored: heetch +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#190134" + +# Main text color +theme[main_fg]="#BDB6C5" + +# Title color for boxes +theme[title]="#BDB6C5" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#BD0152" + +# Background color of selected item in processes box +theme[selected_bg]="#392551" + +# Foreground color of selected item in processes box +theme[selected_fg]="#BDB6C5" + +# Color of inactive/disabled text +theme[inactive_fg]="#9C92A8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#BD0152" + +# Cpu box outline color +theme[cpu_box]="#9C92A8" + +# Memory/disks box outline color +theme[mem_box]="#9C92A8" + +# Net up/down box outline color +theme[net_box]="#9C92A8" + +# Processes box outline color +theme[proc_box]="#9C92A8" + +# Box divider line and small boxes line color +theme[div_line]="#9C92A8" + +# Temperature graph colors +theme[temp_start]="#C33678" +theme[temp_mid]="#8F6C97" +theme[temp_end]="#27D9D5" + +# CPU graph colors +theme[cpu_start]="#C33678" +theme[cpu_mid]="#8F6C97" +theme[cpu_end]="#27D9D5" + +# Mem/Disk free meter +theme[free_start]="#C33678" +theme[free_mid]="#8F6C97" +theme[free_end]="#27D9D5" + +# Mem/Disk cached meter +theme[cached_start]="#C33678" +theme[cached_mid]="#8F6C97" +theme[cached_end]="#27D9D5" + +# Mem/Disk available meter +theme[available_start]="#C33678" +theme[available_mid]="#8F6C97" +theme[available_end]="#27D9D5" + +# Mem/Disk used meter +theme[used_start]="#C33678" +theme[used_mid]="#8F6C97" +theme[used_end]="#27D9D5" + +# Download graph colors +theme[download_start]="#C33678" +theme[download_mid]="#8F6C97" +theme[download_end]="#27D9D5" + +# Upload graph colors +theme[upload_start]="#C33678" +theme[upload_mid]="#8F6C97" +theme[upload_end]="#27D9D5" diff --git a/colors/base16-helios.theme b/colors/base16-helios.theme new file mode 100644 index 0000000..2282da5 --- /dev/null +++ b/colors/base16-helios.theme @@ -0,0 +1,90 @@ +# +# +# name: Helios +# author: Alex Meyer (https://github.com/reyemxela) +# slug: helios +# slug-underscored: helios +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1d2021" + +# Main text color +theme[main_fg]="#d5d5d5" + +# Title color for boxes +theme[title]="#d5d5d5" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#1e8bac" + +# Background color of selected item in processes box +theme[selected_bg]="#383c3e" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d5d5d5" + +# Color of inactive/disabled text +theme[inactive_fg]="#cdcdcd" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#1e8bac" + +# Cpu box outline color +theme[cpu_box]="#cdcdcd" + +# Memory/disks box outline color +theme[mem_box]="#cdcdcd" + +# Net up/down box outline color +theme[net_box]="#cdcdcd" + +# Processes box outline color +theme[proc_box]="#cdcdcd" + +# Box divider line and small boxes line color +theme[div_line]="#cdcdcd" + +# Temperature graph colors +theme[temp_start]="#88b92d" +theme[temp_mid]="#f19d1a" +theme[temp_end]="#d72638" + +# CPU graph colors +theme[cpu_start]="#88b92d" +theme[cpu_mid]="#f19d1a" +theme[cpu_end]="#d72638" + +# Mem/Disk free meter +theme[free_start]="#88b92d" +theme[free_mid]="#f19d1a" +theme[free_end]="#d72638" + +# Mem/Disk cached meter +theme[cached_start]="#88b92d" +theme[cached_mid]="#f19d1a" +theme[cached_end]="#d72638" + +# Mem/Disk available meter +theme[available_start]="#88b92d" +theme[available_mid]="#f19d1a" +theme[available_end]="#d72638" + +# Mem/Disk used meter +theme[used_start]="#88b92d" +theme[used_mid]="#f19d1a" +theme[used_end]="#d72638" + +# Download graph colors +theme[download_start]="#88b92d" +theme[download_mid]="#f19d1a" +theme[download_end]="#d72638" + +# Upload graph colors +theme[upload_start]="#88b92d" +theme[upload_mid]="#f19d1a" +theme[upload_end]="#d72638" diff --git a/colors/base16-hopscotch.theme b/colors/base16-hopscotch.theme new file mode 100644 index 0000000..0379a79 --- /dev/null +++ b/colors/base16-hopscotch.theme @@ -0,0 +1,90 @@ +# +# +# name: Hopscotch +# author: Jan T. Sott +# slug: hopscotch +# slug-underscored: hopscotch +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#322931" + +# Main text color +theme[main_fg]="#b9b5b8" + +# Title color for boxes +theme[title]="#b9b5b8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#1290bf" + +# Background color of selected item in processes box +theme[selected_bg]="#433b42" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b9b5b8" + +# Color of inactive/disabled text +theme[inactive_fg]="#989498" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#1290bf" + +# Cpu box outline color +theme[cpu_box]="#989498" + +# Memory/disks box outline color +theme[mem_box]="#989498" + +# Net up/down box outline color +theme[net_box]="#989498" + +# Processes box outline color +theme[proc_box]="#989498" + +# Box divider line and small boxes line color +theme[div_line]="#989498" + +# Temperature graph colors +theme[temp_start]="#8fc13e" +theme[temp_mid]="#fdcc59" +theme[temp_end]="#dd464c" + +# CPU graph colors +theme[cpu_start]="#8fc13e" +theme[cpu_mid]="#fdcc59" +theme[cpu_end]="#dd464c" + +# Mem/Disk free meter +theme[free_start]="#8fc13e" +theme[free_mid]="#fdcc59" +theme[free_end]="#dd464c" + +# Mem/Disk cached meter +theme[cached_start]="#8fc13e" +theme[cached_mid]="#fdcc59" +theme[cached_end]="#dd464c" + +# Mem/Disk available meter +theme[available_start]="#8fc13e" +theme[available_mid]="#fdcc59" +theme[available_end]="#dd464c" + +# Mem/Disk used meter +theme[used_start]="#8fc13e" +theme[used_mid]="#fdcc59" +theme[used_end]="#dd464c" + +# Download graph colors +theme[download_start]="#8fc13e" +theme[download_mid]="#fdcc59" +theme[download_end]="#dd464c" + +# Upload graph colors +theme[upload_start]="#8fc13e" +theme[upload_mid]="#fdcc59" +theme[upload_end]="#dd464c" diff --git a/colors/base16-horizon-dark.theme b/colors/base16-horizon-dark.theme new file mode 100644 index 0000000..e7397ae --- /dev/null +++ b/colors/base16-horizon-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Horizon Dark +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: horizon-dark +# slug-underscored: horizon_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1C1E26" + +# Main text color +theme[main_fg]="#CBCED0" + +# Title color for boxes +theme[title]="#CBCED0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#DF5273" + +# Background color of selected item in processes box +theme[selected_bg]="#232530" + +# Foreground color of selected item in processes box +theme[selected_fg]="#CBCED0" + +# Color of inactive/disabled text +theme[inactive_fg]="#9DA0A2" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#DF5273" + +# Cpu box outline color +theme[cpu_box]="#9DA0A2" + +# Memory/disks box outline color +theme[mem_box]="#9DA0A2" + +# Net up/down box outline color +theme[net_box]="#9DA0A2" + +# Processes box outline color +theme[proc_box]="#9DA0A2" + +# Box divider line and small boxes line color +theme[div_line]="#9DA0A2" + +# Temperature graph colors +theme[temp_start]="#EFAF8E" +theme[temp_mid]="#EFB993" +theme[temp_end]="#E93C58" + +# CPU graph colors +theme[cpu_start]="#EFAF8E" +theme[cpu_mid]="#EFB993" +theme[cpu_end]="#E93C58" + +# Mem/Disk free meter +theme[free_start]="#EFAF8E" +theme[free_mid]="#EFB993" +theme[free_end]="#E93C58" + +# Mem/Disk cached meter +theme[cached_start]="#EFAF8E" +theme[cached_mid]="#EFB993" +theme[cached_end]="#E93C58" + +# Mem/Disk available meter +theme[available_start]="#EFAF8E" +theme[available_mid]="#EFB993" +theme[available_end]="#E93C58" + +# Mem/Disk used meter +theme[used_start]="#EFAF8E" +theme[used_mid]="#EFB993" +theme[used_end]="#E93C58" + +# Download graph colors +theme[download_start]="#EFAF8E" +theme[download_mid]="#EFB993" +theme[download_end]="#E93C58" + +# Upload graph colors +theme[upload_start]="#EFAF8E" +theme[upload_mid]="#EFB993" +theme[upload_end]="#E93C58" diff --git a/colors/base16-horizon-light.theme b/colors/base16-horizon-light.theme new file mode 100644 index 0000000..a93dc06 --- /dev/null +++ b/colors/base16-horizon-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Horizon Light +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: horizon-light +# slug-underscored: horizon_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#FDF0ED" + +# Main text color +theme[main_fg]="#403C3D" + +# Title color for boxes +theme[title]="#403C3D" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#DA103F" + +# Background color of selected item in processes box +theme[selected_bg]="#FADAD1" + +# Foreground color of selected item in processes box +theme[selected_fg]="#403C3D" + +# Color of inactive/disabled text +theme[inactive_fg]="#948C8A" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#DA103F" + +# Cpu box outline color +theme[cpu_box]="#948C8A" + +# Memory/disks box outline color +theme[mem_box]="#948C8A" + +# Net up/down box outline color +theme[net_box]="#948C8A" + +# Processes box outline color +theme[proc_box]="#948C8A" + +# Box divider line and small boxes line color +theme[div_line]="#948C8A" + +# Temperature graph colors +theme[temp_start]="#94E1B0" +theme[temp_mid]="#FBE0D9" +theme[temp_end]="#F7939B" + +# CPU graph colors +theme[cpu_start]="#94E1B0" +theme[cpu_mid]="#FBE0D9" +theme[cpu_end]="#F7939B" + +# Mem/Disk free meter +theme[free_start]="#94E1B0" +theme[free_mid]="#FBE0D9" +theme[free_end]="#F7939B" + +# Mem/Disk cached meter +theme[cached_start]="#94E1B0" +theme[cached_mid]="#FBE0D9" +theme[cached_end]="#F7939B" + +# Mem/Disk available meter +theme[available_start]="#94E1B0" +theme[available_mid]="#FBE0D9" +theme[available_end]="#F7939B" + +# Mem/Disk used meter +theme[used_start]="#94E1B0" +theme[used_mid]="#FBE0D9" +theme[used_end]="#F7939B" + +# Download graph colors +theme[download_start]="#94E1B0" +theme[download_mid]="#FBE0D9" +theme[download_end]="#F7939B" + +# Upload graph colors +theme[upload_start]="#94E1B0" +theme[upload_mid]="#FBE0D9" +theme[upload_end]="#F7939B" diff --git a/colors/base16-horizon-terminal-dark.theme b/colors/base16-horizon-terminal-dark.theme new file mode 100644 index 0000000..b5bacc3 --- /dev/null +++ b/colors/base16-horizon-terminal-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Horizon Terminal Dark +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: horizon-terminal-dark +# slug-underscored: horizon_terminal_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1C1E26" + +# Main text color +theme[main_fg]="#CBCED0" + +# Title color for boxes +theme[title]="#CBCED0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#26BBD9" + +# Background color of selected item in processes box +theme[selected_bg]="#232530" + +# Foreground color of selected item in processes box +theme[selected_fg]="#CBCED0" + +# Color of inactive/disabled text +theme[inactive_fg]="#9DA0A2" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#26BBD9" + +# Cpu box outline color +theme[cpu_box]="#9DA0A2" + +# Memory/disks box outline color +theme[mem_box]="#9DA0A2" + +# Net up/down box outline color +theme[net_box]="#9DA0A2" + +# Processes box outline color +theme[proc_box]="#9DA0A2" + +# Box divider line and small boxes line color +theme[div_line]="#9DA0A2" + +# Temperature graph colors +theme[temp_start]="#29D398" +theme[temp_mid]="#FAC29A" +theme[temp_end]="#E95678" + +# CPU graph colors +theme[cpu_start]="#29D398" +theme[cpu_mid]="#FAC29A" +theme[cpu_end]="#E95678" + +# Mem/Disk free meter +theme[free_start]="#29D398" +theme[free_mid]="#FAC29A" +theme[free_end]="#E95678" + +# Mem/Disk cached meter +theme[cached_start]="#29D398" +theme[cached_mid]="#FAC29A" +theme[cached_end]="#E95678" + +# Mem/Disk available meter +theme[available_start]="#29D398" +theme[available_mid]="#FAC29A" +theme[available_end]="#E95678" + +# Mem/Disk used meter +theme[used_start]="#29D398" +theme[used_mid]="#FAC29A" +theme[used_end]="#E95678" + +# Download graph colors +theme[download_start]="#29D398" +theme[download_mid]="#FAC29A" +theme[download_end]="#E95678" + +# Upload graph colors +theme[upload_start]="#29D398" +theme[upload_mid]="#FAC29A" +theme[upload_end]="#E95678" diff --git a/colors/base16-horizon-terminal-light.theme b/colors/base16-horizon-terminal-light.theme new file mode 100644 index 0000000..2e1e3c9 --- /dev/null +++ b/colors/base16-horizon-terminal-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Horizon Terminal Light +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: horizon-terminal-light +# slug-underscored: horizon_terminal_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#FDF0ED" + +# Main text color +theme[main_fg]="#403C3D" + +# Title color for boxes +theme[title]="#403C3D" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#26BBD9" + +# Background color of selected item in processes box +theme[selected_bg]="#FADAD1" + +# Foreground color of selected item in processes box +theme[selected_fg]="#403C3D" + +# Color of inactive/disabled text +theme[inactive_fg]="#948C8A" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#26BBD9" + +# Cpu box outline color +theme[cpu_box]="#948C8A" + +# Memory/disks box outline color +theme[mem_box]="#948C8A" + +# Net up/down box outline color +theme[net_box]="#948C8A" + +# Processes box outline color +theme[proc_box]="#948C8A" + +# Box divider line and small boxes line color +theme[div_line]="#948C8A" + +# Temperature graph colors +theme[temp_start]="#29D398" +theme[temp_mid]="#FADAD1" +theme[temp_end]="#E95678" + +# CPU graph colors +theme[cpu_start]="#29D398" +theme[cpu_mid]="#FADAD1" +theme[cpu_end]="#E95678" + +# Mem/Disk free meter +theme[free_start]="#29D398" +theme[free_mid]="#FADAD1" +theme[free_end]="#E95678" + +# Mem/Disk cached meter +theme[cached_start]="#29D398" +theme[cached_mid]="#FADAD1" +theme[cached_end]="#E95678" + +# Mem/Disk available meter +theme[available_start]="#29D398" +theme[available_mid]="#FADAD1" +theme[available_end]="#E95678" + +# Mem/Disk used meter +theme[used_start]="#29D398" +theme[used_mid]="#FADAD1" +theme[used_end]="#E95678" + +# Download graph colors +theme[download_start]="#29D398" +theme[download_mid]="#FADAD1" +theme[download_end]="#E95678" + +# Upload graph colors +theme[upload_start]="#29D398" +theme[upload_mid]="#FADAD1" +theme[upload_end]="#E95678" diff --git a/colors/base16-humanoid-dark.theme b/colors/base16-humanoid-dark.theme new file mode 100644 index 0000000..f00afe8 --- /dev/null +++ b/colors/base16-humanoid-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Humanoid dark +# author: Thomas (tasmo) Friese +# slug: humanoid-dark +# slug-underscored: humanoid_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#232629" + +# Main text color +theme[main_fg]="#f8f8f2" + +# Title color for boxes +theme[title]="#f8f8f2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#00a6fb" + +# Background color of selected item in processes box +theme[selected_bg]="#333b3d" + +# Foreground color of selected item in processes box +theme[selected_fg]="#f8f8f2" + +# Color of inactive/disabled text +theme[inactive_fg]="#c0c0bd" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#00a6fb" + +# Cpu box outline color +theme[cpu_box]="#c0c0bd" + +# Memory/disks box outline color +theme[mem_box]="#c0c0bd" + +# Net up/down box outline color +theme[net_box]="#c0c0bd" + +# Processes box outline color +theme[proc_box]="#c0c0bd" + +# Box divider line and small boxes line color +theme[div_line]="#c0c0bd" + +# Temperature graph colors +theme[temp_start]="#02d849" +theme[temp_mid]="#ffb627" +theme[temp_end]="#f11235" + +# CPU graph colors +theme[cpu_start]="#02d849" +theme[cpu_mid]="#ffb627" +theme[cpu_end]="#f11235" + +# Mem/Disk free meter +theme[free_start]="#02d849" +theme[free_mid]="#ffb627" +theme[free_end]="#f11235" + +# Mem/Disk cached meter +theme[cached_start]="#02d849" +theme[cached_mid]="#ffb627" +theme[cached_end]="#f11235" + +# Mem/Disk available meter +theme[available_start]="#02d849" +theme[available_mid]="#ffb627" +theme[available_end]="#f11235" + +# Mem/Disk used meter +theme[used_start]="#02d849" +theme[used_mid]="#ffb627" +theme[used_end]="#f11235" + +# Download graph colors +theme[download_start]="#02d849" +theme[download_mid]="#ffb627" +theme[download_end]="#f11235" + +# Upload graph colors +theme[upload_start]="#02d849" +theme[upload_mid]="#ffb627" +theme[upload_end]="#f11235" diff --git a/colors/base16-humanoid-light.theme b/colors/base16-humanoid-light.theme new file mode 100644 index 0000000..b437db5 --- /dev/null +++ b/colors/base16-humanoid-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Humanoid light +# author: Thomas (tasmo) Friese +# slug: humanoid-light +# slug-underscored: humanoid_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f8f8f2" + +# Main text color +theme[main_fg]="#232629" + +# Title color for boxes +theme[title]="#232629" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0082c9" + +# Background color of selected item in processes box +theme[selected_bg]="#efefe9" + +# Foreground color of selected item in processes box +theme[selected_fg]="#232629" + +# Color of inactive/disabled text +theme[inactive_fg]="#60615d" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0082c9" + +# Cpu box outline color +theme[cpu_box]="#60615d" + +# Memory/disks box outline color +theme[mem_box]="#60615d" + +# Net up/down box outline color +theme[net_box]="#60615d" + +# Processes box outline color +theme[proc_box]="#60615d" + +# Box divider line and small boxes line color +theme[div_line]="#60615d" + +# Temperature graph colors +theme[temp_start]="#388e3c" +theme[temp_mid]="#ffb627" +theme[temp_end]="#b0151a" + +# CPU graph colors +theme[cpu_start]="#388e3c" +theme[cpu_mid]="#ffb627" +theme[cpu_end]="#b0151a" + +# Mem/Disk free meter +theme[free_start]="#388e3c" +theme[free_mid]="#ffb627" +theme[free_end]="#b0151a" + +# Mem/Disk cached meter +theme[cached_start]="#388e3c" +theme[cached_mid]="#ffb627" +theme[cached_end]="#b0151a" + +# Mem/Disk available meter +theme[available_start]="#388e3c" +theme[available_mid]="#ffb627" +theme[available_end]="#b0151a" + +# Mem/Disk used meter +theme[used_start]="#388e3c" +theme[used_mid]="#ffb627" +theme[used_end]="#b0151a" + +# Download graph colors +theme[download_start]="#388e3c" +theme[download_mid]="#ffb627" +theme[download_end]="#b0151a" + +# Upload graph colors +theme[upload_start]="#388e3c" +theme[upload_mid]="#ffb627" +theme[upload_end]="#b0151a" diff --git a/colors/base16-ia-dark.theme b/colors/base16-ia-dark.theme new file mode 100644 index 0000000..5b47abd --- /dev/null +++ b/colors/base16-ia-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: iA Dark +# author: iA Inc. (modified by aramisgithub) +# slug: ia-dark +# slug-underscored: ia_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1a1a1a" + +# Main text color +theme[main_fg]="#cccccc" + +# Title color for boxes +theme[title]="#cccccc" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8eccdd" + +# Background color of selected item in processes box +theme[selected_bg]="#222222" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cccccc" + +# Color of inactive/disabled text +theme[inactive_fg]="#b8b8b8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8eccdd" + +# Cpu box outline color +theme[cpu_box]="#b8b8b8" + +# Memory/disks box outline color +theme[mem_box]="#b8b8b8" + +# Net up/down box outline color +theme[net_box]="#b8b8b8" + +# Processes box outline color +theme[proc_box]="#b8b8b8" + +# Box divider line and small boxes line color +theme[div_line]="#b8b8b8" + +# Temperature graph colors +theme[temp_start]="#83a471" +theme[temp_mid]="#b99353" +theme[temp_end]="#d88568" + +# CPU graph colors +theme[cpu_start]="#83a471" +theme[cpu_mid]="#b99353" +theme[cpu_end]="#d88568" + +# Mem/Disk free meter +theme[free_start]="#83a471" +theme[free_mid]="#b99353" +theme[free_end]="#d88568" + +# Mem/Disk cached meter +theme[cached_start]="#83a471" +theme[cached_mid]="#b99353" +theme[cached_end]="#d88568" + +# Mem/Disk available meter +theme[available_start]="#83a471" +theme[available_mid]="#b99353" +theme[available_end]="#d88568" + +# Mem/Disk used meter +theme[used_start]="#83a471" +theme[used_mid]="#b99353" +theme[used_end]="#d88568" + +# Download graph colors +theme[download_start]="#83a471" +theme[download_mid]="#b99353" +theme[download_end]="#d88568" + +# Upload graph colors +theme[upload_start]="#83a471" +theme[upload_mid]="#b99353" +theme[upload_end]="#d88568" diff --git a/colors/base16-ia-light.theme b/colors/base16-ia-light.theme new file mode 100644 index 0000000..02437a8 --- /dev/null +++ b/colors/base16-ia-light.theme @@ -0,0 +1,90 @@ +# +# +# name: iA Light +# author: iA Inc. (modified by aramisgithub) +# slug: ia-light +# slug-underscored: ia_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f6f6f6" + +# Main text color +theme[main_fg]="#181818" + +# Title color for boxes +theme[title]="#181818" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#48bac2" + +# Background color of selected item in processes box +theme[selected_bg]="#dedede" + +# Foreground color of selected item in processes box +theme[selected_fg]="#181818" + +# Color of inactive/disabled text +theme[inactive_fg]="#767676" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#48bac2" + +# Cpu box outline color +theme[cpu_box]="#767676" + +# Memory/disks box outline color +theme[mem_box]="#767676" + +# Net up/down box outline color +theme[net_box]="#767676" + +# Processes box outline color +theme[proc_box]="#767676" + +# Box divider line and small boxes line color +theme[div_line]="#767676" + +# Temperature graph colors +theme[temp_start]="#38781c" +theme[temp_mid]="#c48218" +theme[temp_end]="#9c5a02" + +# CPU graph colors +theme[cpu_start]="#38781c" +theme[cpu_mid]="#c48218" +theme[cpu_end]="#9c5a02" + +# Mem/Disk free meter +theme[free_start]="#38781c" +theme[free_mid]="#c48218" +theme[free_end]="#9c5a02" + +# Mem/Disk cached meter +theme[cached_start]="#38781c" +theme[cached_mid]="#c48218" +theme[cached_end]="#9c5a02" + +# Mem/Disk available meter +theme[available_start]="#38781c" +theme[available_mid]="#c48218" +theme[available_end]="#9c5a02" + +# Mem/Disk used meter +theme[used_start]="#38781c" +theme[used_mid]="#c48218" +theme[used_end]="#9c5a02" + +# Download graph colors +theme[download_start]="#38781c" +theme[download_mid]="#c48218" +theme[download_end]="#9c5a02" + +# Upload graph colors +theme[upload_start]="#38781c" +theme[upload_mid]="#c48218" +theme[upload_end]="#9c5a02" diff --git a/colors/base16-icy.theme b/colors/base16-icy.theme new file mode 100644 index 0000000..50e63ff --- /dev/null +++ b/colors/base16-icy.theme @@ -0,0 +1,90 @@ +# +# +# name: Icy Dark +# author: icyphox (https://icyphox.ga) +# slug: icy +# slug-underscored: icy +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#021012" + +# Main text color +theme[main_fg]="#095b67" + +# Title color for boxes +theme[title]="#095b67" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#00bcd4" + +# Background color of selected item in processes box +theme[selected_bg]="#031619" + +# Foreground color of selected item in processes box +theme[selected_fg]="#095b67" + +# Color of inactive/disabled text +theme[inactive_fg]="#064048" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#00bcd4" + +# Cpu box outline color +theme[cpu_box]="#064048" + +# Memory/disks box outline color +theme[mem_box]="#064048" + +# Net up/down box outline color +theme[net_box]="#064048" + +# Processes box outline color +theme[proc_box]="#064048" + +# Box divider line and small boxes line color +theme[div_line]="#064048" + +# Temperature graph colors +theme[temp_start]="#4dd0e1" +theme[temp_mid]="#80deea" +theme[temp_end]="#16c1d9" + +# CPU graph colors +theme[cpu_start]="#4dd0e1" +theme[cpu_mid]="#80deea" +theme[cpu_end]="#16c1d9" + +# Mem/Disk free meter +theme[free_start]="#4dd0e1" +theme[free_mid]="#80deea" +theme[free_end]="#16c1d9" + +# Mem/Disk cached meter +theme[cached_start]="#4dd0e1" +theme[cached_mid]="#80deea" +theme[cached_end]="#16c1d9" + +# Mem/Disk available meter +theme[available_start]="#4dd0e1" +theme[available_mid]="#80deea" +theme[available_end]="#16c1d9" + +# Mem/Disk used meter +theme[used_start]="#4dd0e1" +theme[used_mid]="#80deea" +theme[used_end]="#16c1d9" + +# Download graph colors +theme[download_start]="#4dd0e1" +theme[download_mid]="#80deea" +theme[download_end]="#16c1d9" + +# Upload graph colors +theme[upload_start]="#4dd0e1" +theme[upload_mid]="#80deea" +theme[upload_end]="#16c1d9" diff --git a/colors/base16-irblack.theme b/colors/base16-irblack.theme new file mode 100644 index 0000000..7a52858 --- /dev/null +++ b/colors/base16-irblack.theme @@ -0,0 +1,90 @@ +# +# +# name: IR Black +# author: Timothée Poisot (http://timotheepoisot.fr) +# slug: irblack +# slug-underscored: irblack +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#b5b3aa" + +# Title color for boxes +theme[title]="#b5b3aa" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#96cbfe" + +# Background color of selected item in processes box +theme[selected_bg]="#242422" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b5b3aa" + +# Color of inactive/disabled text +theme[inactive_fg]="#918f88" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#96cbfe" + +# Cpu box outline color +theme[cpu_box]="#918f88" + +# Memory/disks box outline color +theme[mem_box]="#918f88" + +# Net up/down box outline color +theme[net_box]="#918f88" + +# Processes box outline color +theme[proc_box]="#918f88" + +# Box divider line and small boxes line color +theme[div_line]="#918f88" + +# Temperature graph colors +theme[temp_start]="#a8ff60" +theme[temp_mid]="#ffffb6" +theme[temp_end]="#ff6c60" + +# CPU graph colors +theme[cpu_start]="#a8ff60" +theme[cpu_mid]="#ffffb6" +theme[cpu_end]="#ff6c60" + +# Mem/Disk free meter +theme[free_start]="#a8ff60" +theme[free_mid]="#ffffb6" +theme[free_end]="#ff6c60" + +# Mem/Disk cached meter +theme[cached_start]="#a8ff60" +theme[cached_mid]="#ffffb6" +theme[cached_end]="#ff6c60" + +# Mem/Disk available meter +theme[available_start]="#a8ff60" +theme[available_mid]="#ffffb6" +theme[available_end]="#ff6c60" + +# Mem/Disk used meter +theme[used_start]="#a8ff60" +theme[used_mid]="#ffffb6" +theme[used_end]="#ff6c60" + +# Download graph colors +theme[download_start]="#a8ff60" +theme[download_mid]="#ffffb6" +theme[download_end]="#ff6c60" + +# Upload graph colors +theme[upload_start]="#a8ff60" +theme[upload_mid]="#ffffb6" +theme[upload_end]="#ff6c60" diff --git a/colors/base16-isotope.theme b/colors/base16-isotope.theme new file mode 100644 index 0000000..5075d6d --- /dev/null +++ b/colors/base16-isotope.theme @@ -0,0 +1,90 @@ +# +# +# name: Isotope +# author: Jan T. Sott +# slug: isotope +# slug-underscored: isotope +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#d0d0d0" + +# Title color for boxes +theme[title]="#d0d0d0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0066ff" + +# Background color of selected item in processes box +theme[selected_bg]="#404040" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d0d0d0" + +# Color of inactive/disabled text +theme[inactive_fg]="#c0c0c0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0066ff" + +# Cpu box outline color +theme[cpu_box]="#c0c0c0" + +# Memory/disks box outline color +theme[mem_box]="#c0c0c0" + +# Net up/down box outline color +theme[net_box]="#c0c0c0" + +# Processes box outline color +theme[proc_box]="#c0c0c0" + +# Box divider line and small boxes line color +theme[div_line]="#c0c0c0" + +# Temperature graph colors +theme[temp_start]="#33ff00" +theme[temp_mid]="#ff0099" +theme[temp_end]="#ff0000" + +# CPU graph colors +theme[cpu_start]="#33ff00" +theme[cpu_mid]="#ff0099" +theme[cpu_end]="#ff0000" + +# Mem/Disk free meter +theme[free_start]="#33ff00" +theme[free_mid]="#ff0099" +theme[free_end]="#ff0000" + +# Mem/Disk cached meter +theme[cached_start]="#33ff00" +theme[cached_mid]="#ff0099" +theme[cached_end]="#ff0000" + +# Mem/Disk available meter +theme[available_start]="#33ff00" +theme[available_mid]="#ff0099" +theme[available_end]="#ff0000" + +# Mem/Disk used meter +theme[used_start]="#33ff00" +theme[used_mid]="#ff0099" +theme[used_end]="#ff0000" + +# Download graph colors +theme[download_start]="#33ff00" +theme[download_mid]="#ff0099" +theme[download_end]="#ff0000" + +# Upload graph colors +theme[upload_start]="#33ff00" +theme[upload_mid]="#ff0099" +theme[upload_end]="#ff0000" diff --git a/colors/base16-jabuti.theme b/colors/base16-jabuti.theme new file mode 100644 index 0000000..9823f1d --- /dev/null +++ b/colors/base16-jabuti.theme @@ -0,0 +1,90 @@ +# +# +# name: Jabuti +# author: https://github.com/notusknot +# slug: jabuti +# slug-underscored: jabuti +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#292A37" + +# Main text color +theme[main_fg]="#c0cbe3" + +# Title color for boxes +theme[title]="#c0cbe3" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3FC6DE" + +# Background color of selected item in processes box +theme[selected_bg]="#343545" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c0cbe3" + +# Color of inactive/disabled text +theme[inactive_fg]="#50526b" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3FC6DE" + +# Cpu box outline color +theme[cpu_box]="#50526b" + +# Memory/disks box outline color +theme[mem_box]="#50526b" + +# Net up/down box outline color +theme[net_box]="#50526b" + +# Processes box outline color +theme[proc_box]="#50526b" + +# Box divider line and small boxes line color +theme[div_line]="#50526b" + +# Temperature graph colors +theme[temp_start]="#3FDAA4" +theme[temp_mid]="#e1c697" +theme[temp_end]="#ec6a88" + +# CPU graph colors +theme[cpu_start]="#3FDAA4" +theme[cpu_mid]="#e1c697" +theme[cpu_end]="#ec6a88" + +# Mem/Disk free meter +theme[free_start]="#3FDAA4" +theme[free_mid]="#e1c697" +theme[free_end]="#ec6a88" + +# Mem/Disk cached meter +theme[cached_start]="#3FDAA4" +theme[cached_mid]="#e1c697" +theme[cached_end]="#ec6a88" + +# Mem/Disk available meter +theme[available_start]="#3FDAA4" +theme[available_mid]="#e1c697" +theme[available_end]="#ec6a88" + +# Mem/Disk used meter +theme[used_start]="#3FDAA4" +theme[used_mid]="#e1c697" +theme[used_end]="#ec6a88" + +# Download graph colors +theme[download_start]="#3FDAA4" +theme[download_mid]="#e1c697" +theme[download_end]="#ec6a88" + +# Upload graph colors +theme[upload_start]="#3FDAA4" +theme[upload_mid]="#e1c697" +theme[upload_end]="#ec6a88" diff --git a/colors/base16-kanagawa.theme b/colors/base16-kanagawa.theme new file mode 100644 index 0000000..138ab36 --- /dev/null +++ b/colors/base16-kanagawa.theme @@ -0,0 +1,90 @@ +# +# +# name: Kanagawa +# author: Tommaso Laurenzi (https://github.com/rebelot) +# slug: kanagawa +# slug-underscored: kanagawa +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1F1F28" + +# Main text color +theme[main_fg]="#DCD7BA" + +# Title color for boxes +theme[title]="#DCD7BA" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7E9CD8" + +# Background color of selected item in processes box +theme[selected_bg]="#16161D" + +# Foreground color of selected item in processes box +theme[selected_fg]="#DCD7BA" + +# Color of inactive/disabled text +theme[inactive_fg]="#727169" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7E9CD8" + +# Cpu box outline color +theme[cpu_box]="#727169" + +# Memory/disks box outline color +theme[mem_box]="#727169" + +# Net up/down box outline color +theme[net_box]="#727169" + +# Processes box outline color +theme[proc_box]="#727169" + +# Box divider line and small boxes line color +theme[div_line]="#727169" + +# Temperature graph colors +theme[temp_start]="#76946A" +theme[temp_mid]="#C0A36E" +theme[temp_end]="#C34043" + +# CPU graph colors +theme[cpu_start]="#76946A" +theme[cpu_mid]="#C0A36E" +theme[cpu_end]="#C34043" + +# Mem/Disk free meter +theme[free_start]="#76946A" +theme[free_mid]="#C0A36E" +theme[free_end]="#C34043" + +# Mem/Disk cached meter +theme[cached_start]="#76946A" +theme[cached_mid]="#C0A36E" +theme[cached_end]="#C34043" + +# Mem/Disk available meter +theme[available_start]="#76946A" +theme[available_mid]="#C0A36E" +theme[available_end]="#C34043" + +# Mem/Disk used meter +theme[used_start]="#76946A" +theme[used_mid]="#C0A36E" +theme[used_end]="#C34043" + +# Download graph colors +theme[download_start]="#76946A" +theme[download_mid]="#C0A36E" +theme[download_end]="#C34043" + +# Upload graph colors +theme[upload_start]="#76946A" +theme[upload_mid]="#C0A36E" +theme[upload_end]="#C34043" diff --git a/colors/base16-katy.theme b/colors/base16-katy.theme new file mode 100644 index 0000000..64248f2 --- /dev/null +++ b/colors/base16-katy.theme @@ -0,0 +1,90 @@ +# +# +# name: Katy +# author: George Essig (https://github.com/gessig) +# slug: katy +# slug-underscored: katy +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#292d3e" + +# Main text color +theme[main_fg]="#959dcb" + +# Title color for boxes +theme[title]="#959dcb" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#82aaff" + +# Background color of selected item in processes box +theme[selected_bg]="#444267" + +# Foreground color of selected item in processes box +theme[selected_fg]="#959dcb" + +# Color of inactive/disabled text +theme[inactive_fg]="#8796b0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#82aaff" + +# Cpu box outline color +theme[cpu_box]="#8796b0" + +# Memory/disks box outline color +theme[mem_box]="#8796b0" + +# Net up/down box outline color +theme[net_box]="#8796b0" + +# Processes box outline color +theme[proc_box]="#8796b0" + +# Box divider line and small boxes line color +theme[div_line]="#8796b0" + +# Temperature graph colors +theme[temp_start]="#78c06e" +theme[temp_mid]="#e0a557" +theme[temp_end]="#6e98e1" + +# CPU graph colors +theme[cpu_start]="#78c06e" +theme[cpu_mid]="#e0a557" +theme[cpu_end]="#6e98e1" + +# Mem/Disk free meter +theme[free_start]="#78c06e" +theme[free_mid]="#e0a557" +theme[free_end]="#6e98e1" + +# Mem/Disk cached meter +theme[cached_start]="#78c06e" +theme[cached_mid]="#e0a557" +theme[cached_end]="#6e98e1" + +# Mem/Disk available meter +theme[available_start]="#78c06e" +theme[available_mid]="#e0a557" +theme[available_end]="#6e98e1" + +# Mem/Disk used meter +theme[used_start]="#78c06e" +theme[used_mid]="#e0a557" +theme[used_end]="#6e98e1" + +# Download graph colors +theme[download_start]="#78c06e" +theme[download_mid]="#e0a557" +theme[download_end]="#6e98e1" + +# Upload graph colors +theme[upload_start]="#78c06e" +theme[upload_mid]="#e0a557" +theme[upload_end]="#6e98e1" diff --git a/colors/base16-kimber.theme b/colors/base16-kimber.theme new file mode 100644 index 0000000..f1d218d --- /dev/null +++ b/colors/base16-kimber.theme @@ -0,0 +1,90 @@ +# +# +# name: Kimber +# author: Mishka Nguyen (https://github.com/akhsiM) +# slug: kimber +# slug-underscored: kimber +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#222222" + +# Main text color +theme[main_fg]="#DEDEE7" + +# Title color for boxes +theme[title]="#DEDEE7" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#537C9C" + +# Background color of selected item in processes box +theme[selected_bg]="#313131" + +# Foreground color of selected item in processes box +theme[selected_fg]="#DEDEE7" + +# Color of inactive/disabled text +theme[inactive_fg]="#5A5A5A" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#537C9C" + +# Cpu box outline color +theme[cpu_box]="#5A5A5A" + +# Memory/disks box outline color +theme[mem_box]="#5A5A5A" + +# Net up/down box outline color +theme[net_box]="#5A5A5A" + +# Processes box outline color +theme[proc_box]="#5A5A5A" + +# Box divider line and small boxes line color +theme[div_line]="#5A5A5A" + +# Temperature graph colors +theme[temp_start]="#99C899" +theme[temp_mid]="#D8B56D" +theme[temp_end]="#C88C8C" + +# CPU graph colors +theme[cpu_start]="#99C899" +theme[cpu_mid]="#D8B56D" +theme[cpu_end]="#C88C8C" + +# Mem/Disk free meter +theme[free_start]="#99C899" +theme[free_mid]="#D8B56D" +theme[free_end]="#C88C8C" + +# Mem/Disk cached meter +theme[cached_start]="#99C899" +theme[cached_mid]="#D8B56D" +theme[cached_end]="#C88C8C" + +# Mem/Disk available meter +theme[available_start]="#99C899" +theme[available_mid]="#D8B56D" +theme[available_end]="#C88C8C" + +# Mem/Disk used meter +theme[used_start]="#99C899" +theme[used_mid]="#D8B56D" +theme[used_end]="#C88C8C" + +# Download graph colors +theme[download_start]="#99C899" +theme[download_mid]="#D8B56D" +theme[download_end]="#C88C8C" + +# Upload graph colors +theme[upload_start]="#99C899" +theme[upload_mid]="#D8B56D" +theme[upload_end]="#C88C8C" diff --git a/colors/base16-lime.theme b/colors/base16-lime.theme new file mode 100644 index 0000000..3fbe6bd --- /dev/null +++ b/colors/base16-lime.theme @@ -0,0 +1,90 @@ +# +# +# name: lime +# author: limelier +# slug: lime +# slug-underscored: lime +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1a1a2f" + +# Main text color +theme[main_fg]="#818175" + +# Title color for boxes +theme[title]="#818175" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#2b926f" + +# Background color of selected item in processes box +theme[selected_bg]="#202030" + +# Foreground color of selected item in processes box +theme[selected_fg]="#818175" + +# Color of inactive/disabled text +theme[inactive_fg]="#515155" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#2b926f" + +# Cpu box outline color +theme[cpu_box]="#515155" + +# Memory/disks box outline color +theme[mem_box]="#515155" + +# Net up/down box outline color +theme[net_box]="#515155" + +# Processes box outline color +theme[proc_box]="#515155" + +# Box divider line and small boxes line color +theme[div_line]="#515155" + +# Temperature graph colors +theme[temp_start]="#8cd97c" +theme[temp_mid]="#ffd15e" +theme[temp_end]="#ff662a" + +# CPU graph colors +theme[cpu_start]="#8cd97c" +theme[cpu_mid]="#ffd15e" +theme[cpu_end]="#ff662a" + +# Mem/Disk free meter +theme[free_start]="#8cd97c" +theme[free_mid]="#ffd15e" +theme[free_end]="#ff662a" + +# Mem/Disk cached meter +theme[cached_start]="#8cd97c" +theme[cached_mid]="#ffd15e" +theme[cached_end]="#ff662a" + +# Mem/Disk available meter +theme[available_start]="#8cd97c" +theme[available_mid]="#ffd15e" +theme[available_end]="#ff662a" + +# Mem/Disk used meter +theme[used_start]="#8cd97c" +theme[used_mid]="#ffd15e" +theme[used_end]="#ff662a" + +# Download graph colors +theme[download_start]="#8cd97c" +theme[download_mid]="#ffd15e" +theme[download_end]="#ff662a" + +# Upload graph colors +theme[upload_start]="#8cd97c" +theme[upload_mid]="#ffd15e" +theme[upload_end]="#ff662a" diff --git a/colors/base16-macintosh.theme b/colors/base16-macintosh.theme new file mode 100644 index 0000000..936f8f6 --- /dev/null +++ b/colors/base16-macintosh.theme @@ -0,0 +1,90 @@ +# +# +# name: Macintosh +# author: Rebecca Bettencourt (http://www.kreativekorp.com) +# slug: macintosh +# slug-underscored: macintosh +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c0c0c0" + +# Title color for boxes +theme[title]="#c0c0c0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0000d3" + +# Background color of selected item in processes box +theme[selected_bg]="#404040" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c0c0c0" + +# Color of inactive/disabled text +theme[inactive_fg]="#808080" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0000d3" + +# Cpu box outline color +theme[cpu_box]="#808080" + +# Memory/disks box outline color +theme[mem_box]="#808080" + +# Net up/down box outline color +theme[net_box]="#808080" + +# Processes box outline color +theme[proc_box]="#808080" + +# Box divider line and small boxes line color +theme[div_line]="#808080" + +# Temperature graph colors +theme[temp_start]="#1fb714" +theme[temp_mid]="#fbf305" +theme[temp_end]="#dd0907" + +# CPU graph colors +theme[cpu_start]="#1fb714" +theme[cpu_mid]="#fbf305" +theme[cpu_end]="#dd0907" + +# Mem/Disk free meter +theme[free_start]="#1fb714" +theme[free_mid]="#fbf305" +theme[free_end]="#dd0907" + +# Mem/Disk cached meter +theme[cached_start]="#1fb714" +theme[cached_mid]="#fbf305" +theme[cached_end]="#dd0907" + +# Mem/Disk available meter +theme[available_start]="#1fb714" +theme[available_mid]="#fbf305" +theme[available_end]="#dd0907" + +# Mem/Disk used meter +theme[used_start]="#1fb714" +theme[used_mid]="#fbf305" +theme[used_end]="#dd0907" + +# Download graph colors +theme[download_start]="#1fb714" +theme[download_mid]="#fbf305" +theme[download_end]="#dd0907" + +# Upload graph colors +theme[upload_start]="#1fb714" +theme[upload_mid]="#fbf305" +theme[upload_end]="#dd0907" diff --git a/colors/base16-marrakesh.theme b/colors/base16-marrakesh.theme new file mode 100644 index 0000000..1218eba --- /dev/null +++ b/colors/base16-marrakesh.theme @@ -0,0 +1,90 @@ +# +# +# name: Marrakesh +# author: Alexandre Gavioli (http://github.com/Alexx2/) +# slug: marrakesh +# slug-underscored: marrakesh +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#201602" + +# Main text color +theme[main_fg]="#948e48" + +# Title color for boxes +theme[title]="#948e48" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#477ca1" + +# Background color of selected item in processes box +theme[selected_bg]="#302e00" + +# Foreground color of selected item in processes box +theme[selected_fg]="#948e48" + +# Color of inactive/disabled text +theme[inactive_fg]="#86813b" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#477ca1" + +# Cpu box outline color +theme[cpu_box]="#86813b" + +# Memory/disks box outline color +theme[mem_box]="#86813b" + +# Net up/down box outline color +theme[net_box]="#86813b" + +# Processes box outline color +theme[proc_box]="#86813b" + +# Box divider line and small boxes line color +theme[div_line]="#86813b" + +# Temperature graph colors +theme[temp_start]="#18974e" +theme[temp_mid]="#a88339" +theme[temp_end]="#c35359" + +# CPU graph colors +theme[cpu_start]="#18974e" +theme[cpu_mid]="#a88339" +theme[cpu_end]="#c35359" + +# Mem/Disk free meter +theme[free_start]="#18974e" +theme[free_mid]="#a88339" +theme[free_end]="#c35359" + +# Mem/Disk cached meter +theme[cached_start]="#18974e" +theme[cached_mid]="#a88339" +theme[cached_end]="#c35359" + +# Mem/Disk available meter +theme[available_start]="#18974e" +theme[available_mid]="#a88339" +theme[available_end]="#c35359" + +# Mem/Disk used meter +theme[used_start]="#18974e" +theme[used_mid]="#a88339" +theme[used_end]="#c35359" + +# Download graph colors +theme[download_start]="#18974e" +theme[download_mid]="#a88339" +theme[download_end]="#c35359" + +# Upload graph colors +theme[upload_start]="#18974e" +theme[upload_mid]="#a88339" +theme[upload_end]="#c35359" diff --git a/colors/base16-materia.theme b/colors/base16-materia.theme new file mode 100644 index 0000000..6dd473b --- /dev/null +++ b/colors/base16-materia.theme @@ -0,0 +1,90 @@ +# +# +# name: Materia +# author: Defman21 +# slug: materia +# slug-underscored: materia +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#263238" + +# Main text color +theme[main_fg]="#CDD3DE" + +# Title color for boxes +theme[title]="#CDD3DE" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#89DDFF" + +# Background color of selected item in processes box +theme[selected_bg]="#2C393F" + +# Foreground color of selected item in processes box +theme[selected_fg]="#CDD3DE" + +# Color of inactive/disabled text +theme[inactive_fg]="#C9CCD3" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#89DDFF" + +# Cpu box outline color +theme[cpu_box]="#C9CCD3" + +# Memory/disks box outline color +theme[mem_box]="#C9CCD3" + +# Net up/down box outline color +theme[net_box]="#C9CCD3" + +# Processes box outline color +theme[proc_box]="#C9CCD3" + +# Box divider line and small boxes line color +theme[div_line]="#C9CCD3" + +# Temperature graph colors +theme[temp_start]="#8BD649" +theme[temp_mid]="#FFCC00" +theme[temp_end]="#EC5F67" + +# CPU graph colors +theme[cpu_start]="#8BD649" +theme[cpu_mid]="#FFCC00" +theme[cpu_end]="#EC5F67" + +# Mem/Disk free meter +theme[free_start]="#8BD649" +theme[free_mid]="#FFCC00" +theme[free_end]="#EC5F67" + +# Mem/Disk cached meter +theme[cached_start]="#8BD649" +theme[cached_mid]="#FFCC00" +theme[cached_end]="#EC5F67" + +# Mem/Disk available meter +theme[available_start]="#8BD649" +theme[available_mid]="#FFCC00" +theme[available_end]="#EC5F67" + +# Mem/Disk used meter +theme[used_start]="#8BD649" +theme[used_mid]="#FFCC00" +theme[used_end]="#EC5F67" + +# Download graph colors +theme[download_start]="#8BD649" +theme[download_mid]="#FFCC00" +theme[download_end]="#EC5F67" + +# Upload graph colors +theme[upload_start]="#8BD649" +theme[upload_mid]="#FFCC00" +theme[upload_end]="#EC5F67" diff --git a/colors/base16-material-darker.theme b/colors/base16-material-darker.theme new file mode 100644 index 0000000..133be6a --- /dev/null +++ b/colors/base16-material-darker.theme @@ -0,0 +1,90 @@ +# +# +# name: Material Darker +# author: Nate Peterson +# slug: material-darker +# slug-underscored: material_darker +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#212121" + +# Main text color +theme[main_fg]="#EEFFFF" + +# Title color for boxes +theme[title]="#EEFFFF" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#82AAFF" + +# Background color of selected item in processes box +theme[selected_bg]="#303030" + +# Foreground color of selected item in processes box +theme[selected_fg]="#EEFFFF" + +# Color of inactive/disabled text +theme[inactive_fg]="#B2CCD6" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#82AAFF" + +# Cpu box outline color +theme[cpu_box]="#B2CCD6" + +# Memory/disks box outline color +theme[mem_box]="#B2CCD6" + +# Net up/down box outline color +theme[net_box]="#B2CCD6" + +# Processes box outline color +theme[proc_box]="#B2CCD6" + +# Box divider line and small boxes line color +theme[div_line]="#B2CCD6" + +# Temperature graph colors +theme[temp_start]="#C3E88D" +theme[temp_mid]="#FFCB6B" +theme[temp_end]="#F07178" + +# CPU graph colors +theme[cpu_start]="#C3E88D" +theme[cpu_mid]="#FFCB6B" +theme[cpu_end]="#F07178" + +# Mem/Disk free meter +theme[free_start]="#C3E88D" +theme[free_mid]="#FFCB6B" +theme[free_end]="#F07178" + +# Mem/Disk cached meter +theme[cached_start]="#C3E88D" +theme[cached_mid]="#FFCB6B" +theme[cached_end]="#F07178" + +# Mem/Disk available meter +theme[available_start]="#C3E88D" +theme[available_mid]="#FFCB6B" +theme[available_end]="#F07178" + +# Mem/Disk used meter +theme[used_start]="#C3E88D" +theme[used_mid]="#FFCB6B" +theme[used_end]="#F07178" + +# Download graph colors +theme[download_start]="#C3E88D" +theme[download_mid]="#FFCB6B" +theme[download_end]="#F07178" + +# Upload graph colors +theme[upload_start]="#C3E88D" +theme[upload_mid]="#FFCB6B" +theme[upload_end]="#F07178" diff --git a/colors/base16-material-lighter.theme b/colors/base16-material-lighter.theme new file mode 100644 index 0000000..bc1255e --- /dev/null +++ b/colors/base16-material-lighter.theme @@ -0,0 +1,90 @@ +# +# +# name: Material Lighter +# author: Nate Peterson +# slug: material-lighter +# slug-underscored: material_lighter +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#FAFAFA" + +# Main text color +theme[main_fg]="#80CBC4" + +# Title color for boxes +theme[title]="#80CBC4" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6182B8" + +# Background color of selected item in processes box +theme[selected_bg]="#E7EAEC" + +# Foreground color of selected item in processes box +theme[selected_fg]="#80CBC4" + +# Color of inactive/disabled text +theme[inactive_fg]="#8796B0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6182B8" + +# Cpu box outline color +theme[cpu_box]="#8796B0" + +# Memory/disks box outline color +theme[mem_box]="#8796B0" + +# Net up/down box outline color +theme[net_box]="#8796B0" + +# Processes box outline color +theme[proc_box]="#8796B0" + +# Box divider line and small boxes line color +theme[div_line]="#8796B0" + +# Temperature graph colors +theme[temp_start]="#91B859" +theme[temp_mid]="#FFB62C" +theme[temp_end]="#FF5370" + +# CPU graph colors +theme[cpu_start]="#91B859" +theme[cpu_mid]="#FFB62C" +theme[cpu_end]="#FF5370" + +# Mem/Disk free meter +theme[free_start]="#91B859" +theme[free_mid]="#FFB62C" +theme[free_end]="#FF5370" + +# Mem/Disk cached meter +theme[cached_start]="#91B859" +theme[cached_mid]="#FFB62C" +theme[cached_end]="#FF5370" + +# Mem/Disk available meter +theme[available_start]="#91B859" +theme[available_mid]="#FFB62C" +theme[available_end]="#FF5370" + +# Mem/Disk used meter +theme[used_start]="#91B859" +theme[used_mid]="#FFB62C" +theme[used_end]="#FF5370" + +# Download graph colors +theme[download_start]="#91B859" +theme[download_mid]="#FFB62C" +theme[download_end]="#FF5370" + +# Upload graph colors +theme[upload_start]="#91B859" +theme[upload_mid]="#FFB62C" +theme[upload_end]="#FF5370" diff --git a/colors/base16-material-palenight.theme b/colors/base16-material-palenight.theme new file mode 100644 index 0000000..c6f3584 --- /dev/null +++ b/colors/base16-material-palenight.theme @@ -0,0 +1,90 @@ +# +# +# name: Material Palenight +# author: Nate Peterson +# slug: material-palenight +# slug-underscored: material_palenight +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#292D3E" + +# Main text color +theme[main_fg]="#959DCB" + +# Title color for boxes +theme[title]="#959DCB" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#82AAFF" + +# Background color of selected item in processes box +theme[selected_bg]="#444267" + +# Foreground color of selected item in processes box +theme[selected_fg]="#959DCB" + +# Color of inactive/disabled text +theme[inactive_fg]="#8796B0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#82AAFF" + +# Cpu box outline color +theme[cpu_box]="#8796B0" + +# Memory/disks box outline color +theme[mem_box]="#8796B0" + +# Net up/down box outline color +theme[net_box]="#8796B0" + +# Processes box outline color +theme[proc_box]="#8796B0" + +# Box divider line and small boxes line color +theme[div_line]="#8796B0" + +# Temperature graph colors +theme[temp_start]="#C3E88D" +theme[temp_mid]="#FFCB6B" +theme[temp_end]="#F07178" + +# CPU graph colors +theme[cpu_start]="#C3E88D" +theme[cpu_mid]="#FFCB6B" +theme[cpu_end]="#F07178" + +# Mem/Disk free meter +theme[free_start]="#C3E88D" +theme[free_mid]="#FFCB6B" +theme[free_end]="#F07178" + +# Mem/Disk cached meter +theme[cached_start]="#C3E88D" +theme[cached_mid]="#FFCB6B" +theme[cached_end]="#F07178" + +# Mem/Disk available meter +theme[available_start]="#C3E88D" +theme[available_mid]="#FFCB6B" +theme[available_end]="#F07178" + +# Mem/Disk used meter +theme[used_start]="#C3E88D" +theme[used_mid]="#FFCB6B" +theme[used_end]="#F07178" + +# Download graph colors +theme[download_start]="#C3E88D" +theme[download_mid]="#FFCB6B" +theme[download_end]="#F07178" + +# Upload graph colors +theme[upload_start]="#C3E88D" +theme[upload_mid]="#FFCB6B" +theme[upload_end]="#F07178" diff --git a/colors/base16-material-vivid.theme b/colors/base16-material-vivid.theme new file mode 100644 index 0000000..e4863b1 --- /dev/null +++ b/colors/base16-material-vivid.theme @@ -0,0 +1,90 @@ +# +# +# name: Material Vivid +# author: joshyrobot +# slug: material-vivid +# slug-underscored: material_vivid +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#202124" + +# Main text color +theme[main_fg]="#80868b" + +# Title color for boxes +theme[title]="#80868b" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#2196f3" + +# Background color of selected item in processes box +theme[selected_bg]="#27292c" + +# Foreground color of selected item in processes box +theme[selected_fg]="#80868b" + +# Color of inactive/disabled text +theme[inactive_fg]="#676c71" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#2196f3" + +# Cpu box outline color +theme[cpu_box]="#676c71" + +# Memory/disks box outline color +theme[mem_box]="#676c71" + +# Net up/down box outline color +theme[net_box]="#676c71" + +# Processes box outline color +theme[proc_box]="#676c71" + +# Box divider line and small boxes line color +theme[div_line]="#676c71" + +# Temperature graph colors +theme[temp_start]="#00e676" +theme[temp_mid]="#ffeb3b" +theme[temp_end]="#f44336" + +# CPU graph colors +theme[cpu_start]="#00e676" +theme[cpu_mid]="#ffeb3b" +theme[cpu_end]="#f44336" + +# Mem/Disk free meter +theme[free_start]="#00e676" +theme[free_mid]="#ffeb3b" +theme[free_end]="#f44336" + +# Mem/Disk cached meter +theme[cached_start]="#00e676" +theme[cached_mid]="#ffeb3b" +theme[cached_end]="#f44336" + +# Mem/Disk available meter +theme[available_start]="#00e676" +theme[available_mid]="#ffeb3b" +theme[available_end]="#f44336" + +# Mem/Disk used meter +theme[used_start]="#00e676" +theme[used_mid]="#ffeb3b" +theme[used_end]="#f44336" + +# Download graph colors +theme[download_start]="#00e676" +theme[download_mid]="#ffeb3b" +theme[download_end]="#f44336" + +# Upload graph colors +theme[upload_start]="#00e676" +theme[upload_mid]="#ffeb3b" +theme[upload_end]="#f44336" diff --git a/colors/base16-material.theme b/colors/base16-material.theme new file mode 100644 index 0000000..3ef2f6e --- /dev/null +++ b/colors/base16-material.theme @@ -0,0 +1,90 @@ +# +# +# name: Material +# author: Nate Peterson +# slug: material +# slug-underscored: material +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#263238" + +# Main text color +theme[main_fg]="#EEFFFF" + +# Title color for boxes +theme[title]="#EEFFFF" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#82AAFF" + +# Background color of selected item in processes box +theme[selected_bg]="#2E3C43" + +# Foreground color of selected item in processes box +theme[selected_fg]="#EEFFFF" + +# Color of inactive/disabled text +theme[inactive_fg]="#B2CCD6" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#82AAFF" + +# Cpu box outline color +theme[cpu_box]="#B2CCD6" + +# Memory/disks box outline color +theme[mem_box]="#B2CCD6" + +# Net up/down box outline color +theme[net_box]="#B2CCD6" + +# Processes box outline color +theme[proc_box]="#B2CCD6" + +# Box divider line and small boxes line color +theme[div_line]="#B2CCD6" + +# Temperature graph colors +theme[temp_start]="#C3E88D" +theme[temp_mid]="#FFCB6B" +theme[temp_end]="#F07178" + +# CPU graph colors +theme[cpu_start]="#C3E88D" +theme[cpu_mid]="#FFCB6B" +theme[cpu_end]="#F07178" + +# Mem/Disk free meter +theme[free_start]="#C3E88D" +theme[free_mid]="#FFCB6B" +theme[free_end]="#F07178" + +# Mem/Disk cached meter +theme[cached_start]="#C3E88D" +theme[cached_mid]="#FFCB6B" +theme[cached_end]="#F07178" + +# Mem/Disk available meter +theme[available_start]="#C3E88D" +theme[available_mid]="#FFCB6B" +theme[available_end]="#F07178" + +# Mem/Disk used meter +theme[used_start]="#C3E88D" +theme[used_mid]="#FFCB6B" +theme[used_end]="#F07178" + +# Download graph colors +theme[download_start]="#C3E88D" +theme[download_mid]="#FFCB6B" +theme[download_end]="#F07178" + +# Upload graph colors +theme[upload_start]="#C3E88D" +theme[upload_mid]="#FFCB6B" +theme[upload_end]="#F07178" diff --git a/colors/base16-measured-dark.theme b/colors/base16-measured-dark.theme new file mode 100644 index 0000000..541d43c --- /dev/null +++ b/colors/base16-measured-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Measured Dark +# author: Measured (https://measured.co) +# slug: measured-dark +# slug-underscored: measured_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#00211f" + +# Main text color +theme[main_fg]="#dcdcdc" + +# Title color for boxes +theme[title]="#dcdcdc" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#88b0da" + +# Background color of selected item in processes box +theme[selected_bg]="#003a38" + +# Foreground color of selected item in processes box +theme[selected_fg]="#dcdcdc" + +# Color of inactive/disabled text +theme[inactive_fg]="#c3c3c3" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#88b0da" + +# Cpu box outline color +theme[cpu_box]="#c3c3c3" + +# Memory/disks box outline color +theme[mem_box]="#c3c3c3" + +# Net up/down box outline color +theme[net_box]="#c3c3c3" + +# Processes box outline color +theme[proc_box]="#c3c3c3" + +# Box divider line and small boxes line color +theme[div_line]="#c3c3c3" + +# Temperature graph colors +theme[temp_start]="#56c16f" +theme[temp_mid]="#bfac4e" +theme[temp_end]="#ce7e8e" + +# CPU graph colors +theme[cpu_start]="#56c16f" +theme[cpu_mid]="#bfac4e" +theme[cpu_end]="#ce7e8e" + +# Mem/Disk free meter +theme[free_start]="#56c16f" +theme[free_mid]="#bfac4e" +theme[free_end]="#ce7e8e" + +# Mem/Disk cached meter +theme[cached_start]="#56c16f" +theme[cached_mid]="#bfac4e" +theme[cached_end]="#ce7e8e" + +# Mem/Disk available meter +theme[available_start]="#56c16f" +theme[available_mid]="#bfac4e" +theme[available_end]="#ce7e8e" + +# Mem/Disk used meter +theme[used_start]="#56c16f" +theme[used_mid]="#bfac4e" +theme[used_end]="#ce7e8e" + +# Download graph colors +theme[download_start]="#56c16f" +theme[download_mid]="#bfac4e" +theme[download_end]="#ce7e8e" + +# Upload graph colors +theme[upload_start]="#56c16f" +theme[upload_mid]="#bfac4e" +theme[upload_end]="#ce7e8e" diff --git a/colors/base16-measured-light.theme b/colors/base16-measured-light.theme new file mode 100644 index 0000000..6706b89 --- /dev/null +++ b/colors/base16-measured-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Measured Light +# author: Measured (https://measured.co) +# slug: measured-light +# slug-underscored: measured_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fdf9f5" + +# Main text color +theme[main_fg]="#292929" + +# Title color for boxes +theme[title]="#292929" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0158ad" + +# Background color of selected item in processes box +theme[selected_bg]="#f9f5f1" + +# Foreground color of selected item in processes box +theme[selected_fg]="#292929" + +# Color of inactive/disabled text +theme[inactive_fg]="#404040" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0158ad" + +# Cpu box outline color +theme[cpu_box]="#404040" + +# Memory/disks box outline color +theme[mem_box]="#404040" + +# Net up/down box outline color +theme[net_box]="#404040" + +# Processes box outline color +theme[proc_box]="#404040" + +# Box divider line and small boxes line color +theme[div_line]="#404040" + +# Temperature graph colors +theme[temp_start]="#0c680c" +theme[temp_mid]="#645a00" +theme[temp_end]="#ac1f35" + +# CPU graph colors +theme[cpu_start]="#0c680c" +theme[cpu_mid]="#645a00" +theme[cpu_end]="#ac1f35" + +# Mem/Disk free meter +theme[free_start]="#0c680c" +theme[free_mid]="#645a00" +theme[free_end]="#ac1f35" + +# Mem/Disk cached meter +theme[cached_start]="#0c680c" +theme[cached_mid]="#645a00" +theme[cached_end]="#ac1f35" + +# Mem/Disk available meter +theme[available_start]="#0c680c" +theme[available_mid]="#645a00" +theme[available_end]="#ac1f35" + +# Mem/Disk used meter +theme[used_start]="#0c680c" +theme[used_mid]="#645a00" +theme[used_end]="#ac1f35" + +# Download graph colors +theme[download_start]="#0c680c" +theme[download_mid]="#645a00" +theme[download_end]="#ac1f35" + +# Upload graph colors +theme[upload_start]="#0c680c" +theme[upload_mid]="#645a00" +theme[upload_end]="#ac1f35" diff --git a/colors/base16-mellow-purple.theme b/colors/base16-mellow-purple.theme new file mode 100644 index 0000000..2ef9f2e --- /dev/null +++ b/colors/base16-mellow-purple.theme @@ -0,0 +1,90 @@ +# +# +# name: Mellow Purple +# author: gidsi +# slug: mellow-purple +# slug-underscored: mellow_purple +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1e0528" + +# Main text color +theme[main_fg]="#ffeeff" + +# Title color for boxes +theme[title]="#ffeeff" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#550068" + +# Background color of selected item in processes box +theme[selected_bg]="#1A092D" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ffeeff" + +# Color of inactive/disabled text +theme[inactive_fg]="#873582" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#550068" + +# Cpu box outline color +theme[cpu_box]="#873582" + +# Memory/disks box outline color +theme[mem_box]="#873582" + +# Net up/down box outline color +theme[net_box]="#873582" + +# Processes box outline color +theme[proc_box]="#873582" + +# Box divider line and small boxes line color +theme[div_line]="#873582" + +# Temperature graph colors +theme[temp_start]="#05cb0d" +theme[temp_mid]="#955ae7" +theme[temp_end]="#00d9e9" + +# CPU graph colors +theme[cpu_start]="#05cb0d" +theme[cpu_mid]="#955ae7" +theme[cpu_end]="#00d9e9" + +# Mem/Disk free meter +theme[free_start]="#05cb0d" +theme[free_mid]="#955ae7" +theme[free_end]="#00d9e9" + +# Mem/Disk cached meter +theme[cached_start]="#05cb0d" +theme[cached_mid]="#955ae7" +theme[cached_end]="#00d9e9" + +# Mem/Disk available meter +theme[available_start]="#05cb0d" +theme[available_mid]="#955ae7" +theme[available_end]="#00d9e9" + +# Mem/Disk used meter +theme[used_start]="#05cb0d" +theme[used_mid]="#955ae7" +theme[used_end]="#00d9e9" + +# Download graph colors +theme[download_start]="#05cb0d" +theme[download_mid]="#955ae7" +theme[download_end]="#00d9e9" + +# Upload graph colors +theme[upload_start]="#05cb0d" +theme[upload_mid]="#955ae7" +theme[upload_end]="#00d9e9" diff --git a/colors/base16-mexico-light.theme b/colors/base16-mexico-light.theme new file mode 100644 index 0000000..c52b75e --- /dev/null +++ b/colors/base16-mexico-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Mexico Light +# author: Sheldon Johnson +# slug: mexico-light +# slug-underscored: mexico_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f8f8f8" + +# Main text color +theme[main_fg]="#383838" + +# Title color for boxes +theme[title]="#383838" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7cafc2" + +# Background color of selected item in processes box +theme[selected_bg]="#e8e8e8" + +# Foreground color of selected item in processes box +theme[selected_fg]="#383838" + +# Color of inactive/disabled text +theme[inactive_fg]="#585858" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7cafc2" + +# Cpu box outline color +theme[cpu_box]="#585858" + +# Memory/disks box outline color +theme[mem_box]="#585858" + +# Net up/down box outline color +theme[net_box]="#585858" + +# Processes box outline color +theme[proc_box]="#585858" + +# Box divider line and small boxes line color +theme[div_line]="#585858" + +# Temperature graph colors +theme[temp_start]="#538947" +theme[temp_mid]="#f79a0e" +theme[temp_end]="#ab4642" + +# CPU graph colors +theme[cpu_start]="#538947" +theme[cpu_mid]="#f79a0e" +theme[cpu_end]="#ab4642" + +# Mem/Disk free meter +theme[free_start]="#538947" +theme[free_mid]="#f79a0e" +theme[free_end]="#ab4642" + +# Mem/Disk cached meter +theme[cached_start]="#538947" +theme[cached_mid]="#f79a0e" +theme[cached_end]="#ab4642" + +# Mem/Disk available meter +theme[available_start]="#538947" +theme[available_mid]="#f79a0e" +theme[available_end]="#ab4642" + +# Mem/Disk used meter +theme[used_start]="#538947" +theme[used_mid]="#f79a0e" +theme[used_end]="#ab4642" + +# Download graph colors +theme[download_start]="#538947" +theme[download_mid]="#f79a0e" +theme[download_end]="#ab4642" + +# Upload graph colors +theme[upload_start]="#538947" +theme[upload_mid]="#f79a0e" +theme[upload_end]="#ab4642" diff --git a/colors/base16-mocha.theme b/colors/base16-mocha.theme new file mode 100644 index 0000000..296783a --- /dev/null +++ b/colors/base16-mocha.theme @@ -0,0 +1,90 @@ +# +# +# name: Mocha +# author: Chris Kempson (http://chriskempson.com) +# slug: mocha +# slug-underscored: mocha +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#3B3228" + +# Main text color +theme[main_fg]="#d0c8c6" + +# Title color for boxes +theme[title]="#d0c8c6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8ab3b5" + +# Background color of selected item in processes box +theme[selected_bg]="#534636" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d0c8c6" + +# Color of inactive/disabled text +theme[inactive_fg]="#b8afad" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8ab3b5" + +# Cpu box outline color +theme[cpu_box]="#b8afad" + +# Memory/disks box outline color +theme[mem_box]="#b8afad" + +# Net up/down box outline color +theme[net_box]="#b8afad" + +# Processes box outline color +theme[proc_box]="#b8afad" + +# Box divider line and small boxes line color +theme[div_line]="#b8afad" + +# Temperature graph colors +theme[temp_start]="#beb55b" +theme[temp_mid]="#f4bc87" +theme[temp_end]="#cb6077" + +# CPU graph colors +theme[cpu_start]="#beb55b" +theme[cpu_mid]="#f4bc87" +theme[cpu_end]="#cb6077" + +# Mem/Disk free meter +theme[free_start]="#beb55b" +theme[free_mid]="#f4bc87" +theme[free_end]="#cb6077" + +# Mem/Disk cached meter +theme[cached_start]="#beb55b" +theme[cached_mid]="#f4bc87" +theme[cached_end]="#cb6077" + +# Mem/Disk available meter +theme[available_start]="#beb55b" +theme[available_mid]="#f4bc87" +theme[available_end]="#cb6077" + +# Mem/Disk used meter +theme[used_start]="#beb55b" +theme[used_mid]="#f4bc87" +theme[used_end]="#cb6077" + +# Download graph colors +theme[download_start]="#beb55b" +theme[download_mid]="#f4bc87" +theme[download_end]="#cb6077" + +# Upload graph colors +theme[upload_start]="#beb55b" +theme[upload_mid]="#f4bc87" +theme[upload_end]="#cb6077" diff --git a/colors/base16-monokai.theme b/colors/base16-monokai.theme new file mode 100644 index 0000000..c59cab5 --- /dev/null +++ b/colors/base16-monokai.theme @@ -0,0 +1,90 @@ +# +# +# name: Monokai +# author: Wimer Hazenberg (http://www.monokai.nl) +# slug: monokai +# slug-underscored: monokai +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#272822" + +# Main text color +theme[main_fg]="#f8f8f2" + +# Title color for boxes +theme[title]="#f8f8f2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#66d9ef" + +# Background color of selected item in processes box +theme[selected_bg]="#383830" + +# Foreground color of selected item in processes box +theme[selected_fg]="#f8f8f2" + +# Color of inactive/disabled text +theme[inactive_fg]="#a59f85" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#66d9ef" + +# Cpu box outline color +theme[cpu_box]="#a59f85" + +# Memory/disks box outline color +theme[mem_box]="#a59f85" + +# Net up/down box outline color +theme[net_box]="#a59f85" + +# Processes box outline color +theme[proc_box]="#a59f85" + +# Box divider line and small boxes line color +theme[div_line]="#a59f85" + +# Temperature graph colors +theme[temp_start]="#a6e22e" +theme[temp_mid]="#f4bf75" +theme[temp_end]="#f92672" + +# CPU graph colors +theme[cpu_start]="#a6e22e" +theme[cpu_mid]="#f4bf75" +theme[cpu_end]="#f92672" + +# Mem/Disk free meter +theme[free_start]="#a6e22e" +theme[free_mid]="#f4bf75" +theme[free_end]="#f92672" + +# Mem/Disk cached meter +theme[cached_start]="#a6e22e" +theme[cached_mid]="#f4bf75" +theme[cached_end]="#f92672" + +# Mem/Disk available meter +theme[available_start]="#a6e22e" +theme[available_mid]="#f4bf75" +theme[available_end]="#f92672" + +# Mem/Disk used meter +theme[used_start]="#a6e22e" +theme[used_mid]="#f4bf75" +theme[used_end]="#f92672" + +# Download graph colors +theme[download_start]="#a6e22e" +theme[download_mid]="#f4bf75" +theme[download_end]="#f92672" + +# Upload graph colors +theme[upload_start]="#a6e22e" +theme[upload_mid]="#f4bf75" +theme[upload_end]="#f92672" diff --git a/colors/base16-moonlight.theme b/colors/base16-moonlight.theme new file mode 100644 index 0000000..cffe249 --- /dev/null +++ b/colors/base16-moonlight.theme @@ -0,0 +1,90 @@ +# +# +# name: Moonlight +# author: Jeremy Swinarton (https://github.com/jswinarton) +# slug: moonlight +# slug-underscored: moonlight +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#212337" + +# Main text color +theme[main_fg]="#a3ace1" + +# Title color for boxes +theme[title]="#a3ace1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#40ffff" + +# Background color of selected item in processes box +theme[selected_bg]="#403c64" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a3ace1" + +# Color of inactive/disabled text +theme[inactive_fg]="#a1abe0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#40ffff" + +# Cpu box outline color +theme[cpu_box]="#a1abe0" + +# Memory/disks box outline color +theme[mem_box]="#a1abe0" + +# Net up/down box outline color +theme[net_box]="#a1abe0" + +# Processes box outline color +theme[proc_box]="#a1abe0" + +# Box divider line and small boxes line color +theme[div_line]="#a1abe0" + +# Temperature graph colors +theme[temp_start]="#2df4c0" +theme[temp_mid]="#ffc777" +theme[temp_end]="#ff5370" + +# CPU graph colors +theme[cpu_start]="#2df4c0" +theme[cpu_mid]="#ffc777" +theme[cpu_end]="#ff5370" + +# Mem/Disk free meter +theme[free_start]="#2df4c0" +theme[free_mid]="#ffc777" +theme[free_end]="#ff5370" + +# Mem/Disk cached meter +theme[cached_start]="#2df4c0" +theme[cached_mid]="#ffc777" +theme[cached_end]="#ff5370" + +# Mem/Disk available meter +theme[available_start]="#2df4c0" +theme[available_mid]="#ffc777" +theme[available_end]="#ff5370" + +# Mem/Disk used meter +theme[used_start]="#2df4c0" +theme[used_mid]="#ffc777" +theme[used_end]="#ff5370" + +# Download graph colors +theme[download_start]="#2df4c0" +theme[download_mid]="#ffc777" +theme[download_end]="#ff5370" + +# Upload graph colors +theme[upload_start]="#2df4c0" +theme[upload_mid]="#ffc777" +theme[upload_end]="#ff5370" diff --git a/colors/base16-mountain.theme b/colors/base16-mountain.theme new file mode 100644 index 0000000..cd4bf88 --- /dev/null +++ b/colors/base16-mountain.theme @@ -0,0 +1,90 @@ +# +# +# name: Mountain +# author: gnsfujiwara (https://github.com/gnsfujiwara) +# slug: mountain +# slug-underscored: mountain +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#0f0f0f" + +# Main text color +theme[main_fg]="#cacaca" + +# Title color for boxes +theme[title]="#cacaca" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8f8aac" + +# Background color of selected item in processes box +theme[selected_bg]="#191919" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cacaca" + +# Color of inactive/disabled text +theme[inactive_fg]="#ac8a8c" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8f8aac" + +# Cpu box outline color +theme[cpu_box]="#ac8a8c" + +# Memory/disks box outline color +theme[mem_box]="#ac8a8c" + +# Net up/down box outline color +theme[net_box]="#ac8a8c" + +# Processes box outline color +theme[proc_box]="#ac8a8c" + +# Box divider line and small boxes line color +theme[div_line]="#ac8a8c" + +# Temperature graph colors +theme[temp_start]="#8aac8b" +theme[temp_mid]="#aca98a" +theme[temp_end]="#ac8a8c" + +# CPU graph colors +theme[cpu_start]="#8aac8b" +theme[cpu_mid]="#aca98a" +theme[cpu_end]="#ac8a8c" + +# Mem/Disk free meter +theme[free_start]="#8aac8b" +theme[free_mid]="#aca98a" +theme[free_end]="#ac8a8c" + +# Mem/Disk cached meter +theme[cached_start]="#8aac8b" +theme[cached_mid]="#aca98a" +theme[cached_end]="#ac8a8c" + +# Mem/Disk available meter +theme[available_start]="#8aac8b" +theme[available_mid]="#aca98a" +theme[available_end]="#ac8a8c" + +# Mem/Disk used meter +theme[used_start]="#8aac8b" +theme[used_mid]="#aca98a" +theme[used_end]="#ac8a8c" + +# Download graph colors +theme[download_start]="#8aac8b" +theme[download_mid]="#aca98a" +theme[download_end]="#ac8a8c" + +# Upload graph colors +theme[upload_start]="#8aac8b" +theme[upload_mid]="#aca98a" +theme[upload_end]="#ac8a8c" diff --git a/colors/base16-nebula.theme b/colors/base16-nebula.theme new file mode 100644 index 0000000..1e63d84 --- /dev/null +++ b/colors/base16-nebula.theme @@ -0,0 +1,90 @@ +# +# +# name: Nebula +# author: Gabriel Fontes (https://github.com/Misterio77) +# slug: nebula +# slug-underscored: nebula +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#22273b" + +# Main text color +theme[main_fg]="#a4a6a9" + +# Title color for boxes +theme[title]="#a4a6a9" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#4d6bb6" + +# Background color of selected item in processes box +theme[selected_bg]="#414f60" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a4a6a9" + +# Color of inactive/disabled text +theme[inactive_fg]="#87888b" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#4d6bb6" + +# Cpu box outline color +theme[cpu_box]="#87888b" + +# Memory/disks box outline color +theme[mem_box]="#87888b" + +# Net up/down box outline color +theme[net_box]="#87888b" + +# Processes box outline color +theme[proc_box]="#87888b" + +# Box divider line and small boxes line color +theme[div_line]="#87888b" + +# Temperature graph colors +theme[temp_start]="#6562a8" +theme[temp_mid]="#4f9062" +theme[temp_end]="#777abc" + +# CPU graph colors +theme[cpu_start]="#6562a8" +theme[cpu_mid]="#4f9062" +theme[cpu_end]="#777abc" + +# Mem/Disk free meter +theme[free_start]="#6562a8" +theme[free_mid]="#4f9062" +theme[free_end]="#777abc" + +# Mem/Disk cached meter +theme[cached_start]="#6562a8" +theme[cached_mid]="#4f9062" +theme[cached_end]="#777abc" + +# Mem/Disk available meter +theme[available_start]="#6562a8" +theme[available_mid]="#4f9062" +theme[available_end]="#777abc" + +# Mem/Disk used meter +theme[used_start]="#6562a8" +theme[used_mid]="#4f9062" +theme[used_end]="#777abc" + +# Download graph colors +theme[download_start]="#6562a8" +theme[download_mid]="#4f9062" +theme[download_end]="#777abc" + +# Upload graph colors +theme[upload_start]="#6562a8" +theme[upload_mid]="#4f9062" +theme[upload_end]="#777abc" diff --git a/colors/base16-nord-light.theme b/colors/base16-nord-light.theme new file mode 100644 index 0000000..9c8558d --- /dev/null +++ b/colors/base16-nord-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Nord Light +# author: threddast, based on fuxialexander's doom-nord-light-theme (Doom Emacs) +# slug: nord-light +# slug-underscored: nord_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#e5e9f0" + +# Main text color +theme[main_fg]="#2e3440" + +# Title color for boxes +theme[title]="#2e3440" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3b6ea8" + +# Background color of selected item in processes box +theme[selected_bg]="#c2d0e7" + +# Foreground color of selected item in processes box +theme[selected_fg]="#2e3440" + +# Color of inactive/disabled text +theme[inactive_fg]="#60728c" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3b6ea8" + +# Cpu box outline color +theme[cpu_box]="#60728c" + +# Memory/disks box outline color +theme[mem_box]="#60728c" + +# Net up/down box outline color +theme[net_box]="#60728c" + +# Processes box outline color +theme[proc_box]="#60728c" + +# Box divider line and small boxes line color +theme[div_line]="#60728c" + +# Temperature graph colors +theme[temp_start]="#4f894c" +theme[temp_mid]="#9a7500" +theme[temp_end]="#99324b" + +# CPU graph colors +theme[cpu_start]="#4f894c" +theme[cpu_mid]="#9a7500" +theme[cpu_end]="#99324b" + +# Mem/Disk free meter +theme[free_start]="#4f894c" +theme[free_mid]="#9a7500" +theme[free_end]="#99324b" + +# Mem/Disk cached meter +theme[cached_start]="#4f894c" +theme[cached_mid]="#9a7500" +theme[cached_end]="#99324b" + +# Mem/Disk available meter +theme[available_start]="#4f894c" +theme[available_mid]="#9a7500" +theme[available_end]="#99324b" + +# Mem/Disk used meter +theme[used_start]="#4f894c" +theme[used_mid]="#9a7500" +theme[used_end]="#99324b" + +# Download graph colors +theme[download_start]="#4f894c" +theme[download_mid]="#9a7500" +theme[download_end]="#99324b" + +# Upload graph colors +theme[upload_start]="#4f894c" +theme[upload_mid]="#9a7500" +theme[upload_end]="#99324b" diff --git a/colors/base16-nord.theme b/colors/base16-nord.theme new file mode 100644 index 0000000..f1698c0 --- /dev/null +++ b/colors/base16-nord.theme @@ -0,0 +1,90 @@ +# +# +# name: Nord +# author: arcticicestudio +# slug: nord +# slug-underscored: nord +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2E3440" + +# Main text color +theme[main_fg]="#E5E9F0" + +# Title color for boxes +theme[title]="#E5E9F0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#81A1C1" + +# Background color of selected item in processes box +theme[selected_bg]="#3B4252" + +# Foreground color of selected item in processes box +theme[selected_fg]="#E5E9F0" + +# Color of inactive/disabled text +theme[inactive_fg]="#D8DEE9" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#81A1C1" + +# Cpu box outline color +theme[cpu_box]="#D8DEE9" + +# Memory/disks box outline color +theme[mem_box]="#D8DEE9" + +# Net up/down box outline color +theme[net_box]="#D8DEE9" + +# Processes box outline color +theme[proc_box]="#D8DEE9" + +# Box divider line and small boxes line color +theme[div_line]="#D8DEE9" + +# Temperature graph colors +theme[temp_start]="#A3BE8C" +theme[temp_mid]="#EBCB8B" +theme[temp_end]="#BF616A" + +# CPU graph colors +theme[cpu_start]="#A3BE8C" +theme[cpu_mid]="#EBCB8B" +theme[cpu_end]="#BF616A" + +# Mem/Disk free meter +theme[free_start]="#A3BE8C" +theme[free_mid]="#EBCB8B" +theme[free_end]="#BF616A" + +# Mem/Disk cached meter +theme[cached_start]="#A3BE8C" +theme[cached_mid]="#EBCB8B" +theme[cached_end]="#BF616A" + +# Mem/Disk available meter +theme[available_start]="#A3BE8C" +theme[available_mid]="#EBCB8B" +theme[available_end]="#BF616A" + +# Mem/Disk used meter +theme[used_start]="#A3BE8C" +theme[used_mid]="#EBCB8B" +theme[used_end]="#BF616A" + +# Download graph colors +theme[download_start]="#A3BE8C" +theme[download_mid]="#EBCB8B" +theme[download_end]="#BF616A" + +# Upload graph colors +theme[upload_start]="#A3BE8C" +theme[upload_mid]="#EBCB8B" +theme[upload_end]="#BF616A" diff --git a/colors/base16-nova.theme b/colors/base16-nova.theme new file mode 100644 index 0000000..0b46970 --- /dev/null +++ b/colors/base16-nova.theme @@ -0,0 +1,90 @@ +# +# +# name: Nova +# author: George Essig (https://github.com/gessig), Trevor D. Miller (https://trevordmiller.com) +# slug: nova +# slug-underscored: nova +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#3C4C55" + +# Main text color +theme[main_fg]="#C5D4DD" + +# Title color for boxes +theme[title]="#C5D4DD" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#83AFE5" + +# Background color of selected item in processes box +theme[selected_bg]="#556873" + +# Foreground color of selected item in processes box +theme[selected_fg]="#C5D4DD" + +# Color of inactive/disabled text +theme[inactive_fg]="#899BA6" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#83AFE5" + +# Cpu box outline color +theme[cpu_box]="#899BA6" + +# Memory/disks box outline color +theme[mem_box]="#899BA6" + +# Net up/down box outline color +theme[net_box]="#899BA6" + +# Processes box outline color +theme[proc_box]="#899BA6" + +# Box divider line and small boxes line color +theme[div_line]="#899BA6" + +# Temperature graph colors +theme[temp_start]="#7FC1CA" +theme[temp_mid]="#A8CE93" +theme[temp_end]="#83AFE5" + +# CPU graph colors +theme[cpu_start]="#7FC1CA" +theme[cpu_mid]="#A8CE93" +theme[cpu_end]="#83AFE5" + +# Mem/Disk free meter +theme[free_start]="#7FC1CA" +theme[free_mid]="#A8CE93" +theme[free_end]="#83AFE5" + +# Mem/Disk cached meter +theme[cached_start]="#7FC1CA" +theme[cached_mid]="#A8CE93" +theme[cached_end]="#83AFE5" + +# Mem/Disk available meter +theme[available_start]="#7FC1CA" +theme[available_mid]="#A8CE93" +theme[available_end]="#83AFE5" + +# Mem/Disk used meter +theme[used_start]="#7FC1CA" +theme[used_mid]="#A8CE93" +theme[used_end]="#83AFE5" + +# Download graph colors +theme[download_start]="#7FC1CA" +theme[download_mid]="#A8CE93" +theme[download_end]="#83AFE5" + +# Upload graph colors +theme[upload_start]="#7FC1CA" +theme[upload_mid]="#A8CE93" +theme[upload_end]="#83AFE5" diff --git a/colors/base16-ocean.theme b/colors/base16-ocean.theme new file mode 100644 index 0000000..6533b4a --- /dev/null +++ b/colors/base16-ocean.theme @@ -0,0 +1,90 @@ +# +# +# name: Ocean +# author: Chris Kempson (http://chriskempson.com) +# slug: ocean +# slug-underscored: ocean +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2b303b" + +# Main text color +theme[main_fg]="#c0c5ce" + +# Title color for boxes +theme[title]="#c0c5ce" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8fa1b3" + +# Background color of selected item in processes box +theme[selected_bg]="#343d46" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c0c5ce" + +# Color of inactive/disabled text +theme[inactive_fg]="#a7adba" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8fa1b3" + +# Cpu box outline color +theme[cpu_box]="#a7adba" + +# Memory/disks box outline color +theme[mem_box]="#a7adba" + +# Net up/down box outline color +theme[net_box]="#a7adba" + +# Processes box outline color +theme[proc_box]="#a7adba" + +# Box divider line and small boxes line color +theme[div_line]="#a7adba" + +# Temperature graph colors +theme[temp_start]="#a3be8c" +theme[temp_mid]="#ebcb8b" +theme[temp_end]="#bf616a" + +# CPU graph colors +theme[cpu_start]="#a3be8c" +theme[cpu_mid]="#ebcb8b" +theme[cpu_end]="#bf616a" + +# Mem/Disk free meter +theme[free_start]="#a3be8c" +theme[free_mid]="#ebcb8b" +theme[free_end]="#bf616a" + +# Mem/Disk cached meter +theme[cached_start]="#a3be8c" +theme[cached_mid]="#ebcb8b" +theme[cached_end]="#bf616a" + +# Mem/Disk available meter +theme[available_start]="#a3be8c" +theme[available_mid]="#ebcb8b" +theme[available_end]="#bf616a" + +# Mem/Disk used meter +theme[used_start]="#a3be8c" +theme[used_mid]="#ebcb8b" +theme[used_end]="#bf616a" + +# Download graph colors +theme[download_start]="#a3be8c" +theme[download_mid]="#ebcb8b" +theme[download_end]="#bf616a" + +# Upload graph colors +theme[upload_start]="#a3be8c" +theme[upload_mid]="#ebcb8b" +theme[upload_end]="#bf616a" diff --git a/colors/base16-oceanicnext.theme b/colors/base16-oceanicnext.theme new file mode 100644 index 0000000..7a3c56c --- /dev/null +++ b/colors/base16-oceanicnext.theme @@ -0,0 +1,90 @@ +# +# +# name: OceanicNext +# author: https://github.com/voronianski/oceanic-next-color-scheme +# slug: oceanicnext +# slug-underscored: oceanicnext +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1B2B34" + +# Main text color +theme[main_fg]="#C0C5CE" + +# Title color for boxes +theme[title]="#C0C5CE" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6699CC" + +# Background color of selected item in processes box +theme[selected_bg]="#343D46" + +# Foreground color of selected item in processes box +theme[selected_fg]="#C0C5CE" + +# Color of inactive/disabled text +theme[inactive_fg]="#A7ADBA" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6699CC" + +# Cpu box outline color +theme[cpu_box]="#A7ADBA" + +# Memory/disks box outline color +theme[mem_box]="#A7ADBA" + +# Net up/down box outline color +theme[net_box]="#A7ADBA" + +# Processes box outline color +theme[proc_box]="#A7ADBA" + +# Box divider line and small boxes line color +theme[div_line]="#A7ADBA" + +# Temperature graph colors +theme[temp_start]="#99C794" +theme[temp_mid]="#FAC863" +theme[temp_end]="#EC5f67" + +# CPU graph colors +theme[cpu_start]="#99C794" +theme[cpu_mid]="#FAC863" +theme[cpu_end]="#EC5f67" + +# Mem/Disk free meter +theme[free_start]="#99C794" +theme[free_mid]="#FAC863" +theme[free_end]="#EC5f67" + +# Mem/Disk cached meter +theme[cached_start]="#99C794" +theme[cached_mid]="#FAC863" +theme[cached_end]="#EC5f67" + +# Mem/Disk available meter +theme[available_start]="#99C794" +theme[available_mid]="#FAC863" +theme[available_end]="#EC5f67" + +# Mem/Disk used meter +theme[used_start]="#99C794" +theme[used_mid]="#FAC863" +theme[used_end]="#EC5f67" + +# Download graph colors +theme[download_start]="#99C794" +theme[download_mid]="#FAC863" +theme[download_end]="#EC5f67" + +# Upload graph colors +theme[upload_start]="#99C794" +theme[upload_mid]="#FAC863" +theme[upload_end]="#EC5f67" diff --git a/colors/base16-one-light.theme b/colors/base16-one-light.theme new file mode 100644 index 0000000..fb3fc39 --- /dev/null +++ b/colors/base16-one-light.theme @@ -0,0 +1,90 @@ +# +# +# name: One Light +# author: Daniel Pfeifer (http://github.com/purpleKarrot) +# slug: one-light +# slug-underscored: one_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fafafa" + +# Main text color +theme[main_fg]="#383a42" + +# Title color for boxes +theme[title]="#383a42" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#4078f2" + +# Background color of selected item in processes box +theme[selected_bg]="#f0f0f1" + +# Foreground color of selected item in processes box +theme[selected_fg]="#383a42" + +# Color of inactive/disabled text +theme[inactive_fg]="#696c77" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#4078f2" + +# Cpu box outline color +theme[cpu_box]="#696c77" + +# Memory/disks box outline color +theme[mem_box]="#696c77" + +# Net up/down box outline color +theme[net_box]="#696c77" + +# Processes box outline color +theme[proc_box]="#696c77" + +# Box divider line and small boxes line color +theme[div_line]="#696c77" + +# Temperature graph colors +theme[temp_start]="#50a14f" +theme[temp_mid]="#c18401" +theme[temp_end]="#ca1243" + +# CPU graph colors +theme[cpu_start]="#50a14f" +theme[cpu_mid]="#c18401" +theme[cpu_end]="#ca1243" + +# Mem/Disk free meter +theme[free_start]="#50a14f" +theme[free_mid]="#c18401" +theme[free_end]="#ca1243" + +# Mem/Disk cached meter +theme[cached_start]="#50a14f" +theme[cached_mid]="#c18401" +theme[cached_end]="#ca1243" + +# Mem/Disk available meter +theme[available_start]="#50a14f" +theme[available_mid]="#c18401" +theme[available_end]="#ca1243" + +# Mem/Disk used meter +theme[used_start]="#50a14f" +theme[used_mid]="#c18401" +theme[used_end]="#ca1243" + +# Download graph colors +theme[download_start]="#50a14f" +theme[download_mid]="#c18401" +theme[download_end]="#ca1243" + +# Upload graph colors +theme[upload_start]="#50a14f" +theme[upload_mid]="#c18401" +theme[upload_end]="#ca1243" diff --git a/colors/base16-onedark-dark.theme b/colors/base16-onedark-dark.theme new file mode 100644 index 0000000..398731a --- /dev/null +++ b/colors/base16-onedark-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: OneDark Dark +# author: olimorris (https://github.com/olimorris) +# slug: onedark-dark +# slug-underscored: onedark_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#abb2bf" + +# Title color for boxes +theme[title]="#abb2bf" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#61afef" + +# Background color of selected item in processes box +theme[selected_bg]="#1c1f24" + +# Foreground color of selected item in processes box +theme[selected_fg]="#abb2bf" + +# Color of inactive/disabled text +theme[inactive_fg]="#565c64" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#61afef" + +# Cpu box outline color +theme[cpu_box]="#565c64" + +# Memory/disks box outline color +theme[mem_box]="#565c64" + +# Net up/down box outline color +theme[net_box]="#565c64" + +# Processes box outline color +theme[proc_box]="#565c64" + +# Box divider line and small boxes line color +theme[div_line]="#565c64" + +# Temperature graph colors +theme[temp_start]="#89ca78" +theme[temp_mid]="#e5c07b" +theme[temp_end]="#ef596f" + +# CPU graph colors +theme[cpu_start]="#89ca78" +theme[cpu_mid]="#e5c07b" +theme[cpu_end]="#ef596f" + +# Mem/Disk free meter +theme[free_start]="#89ca78" +theme[free_mid]="#e5c07b" +theme[free_end]="#ef596f" + +# Mem/Disk cached meter +theme[cached_start]="#89ca78" +theme[cached_mid]="#e5c07b" +theme[cached_end]="#ef596f" + +# Mem/Disk available meter +theme[available_start]="#89ca78" +theme[available_mid]="#e5c07b" +theme[available_end]="#ef596f" + +# Mem/Disk used meter +theme[used_start]="#89ca78" +theme[used_mid]="#e5c07b" +theme[used_end]="#ef596f" + +# Download graph colors +theme[download_start]="#89ca78" +theme[download_mid]="#e5c07b" +theme[download_end]="#ef596f" + +# Upload graph colors +theme[upload_start]="#89ca78" +theme[upload_mid]="#e5c07b" +theme[upload_end]="#ef596f" diff --git a/colors/base16-onedark.theme b/colors/base16-onedark.theme new file mode 100644 index 0000000..96b18d8 --- /dev/null +++ b/colors/base16-onedark.theme @@ -0,0 +1,90 @@ +# +# +# name: OneDark +# author: Lalit Magant (http://github.com/tilal6991) +# slug: onedark +# slug-underscored: onedark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#282c34" + +# Main text color +theme[main_fg]="#abb2bf" + +# Title color for boxes +theme[title]="#abb2bf" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#61afef" + +# Background color of selected item in processes box +theme[selected_bg]="#353b45" + +# Foreground color of selected item in processes box +theme[selected_fg]="#abb2bf" + +# Color of inactive/disabled text +theme[inactive_fg]="#565c64" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#61afef" + +# Cpu box outline color +theme[cpu_box]="#565c64" + +# Memory/disks box outline color +theme[mem_box]="#565c64" + +# Net up/down box outline color +theme[net_box]="#565c64" + +# Processes box outline color +theme[proc_box]="#565c64" + +# Box divider line and small boxes line color +theme[div_line]="#565c64" + +# Temperature graph colors +theme[temp_start]="#98c379" +theme[temp_mid]="#e5c07b" +theme[temp_end]="#e06c75" + +# CPU graph colors +theme[cpu_start]="#98c379" +theme[cpu_mid]="#e5c07b" +theme[cpu_end]="#e06c75" + +# Mem/Disk free meter +theme[free_start]="#98c379" +theme[free_mid]="#e5c07b" +theme[free_end]="#e06c75" + +# Mem/Disk cached meter +theme[cached_start]="#98c379" +theme[cached_mid]="#e5c07b" +theme[cached_end]="#e06c75" + +# Mem/Disk available meter +theme[available_start]="#98c379" +theme[available_mid]="#e5c07b" +theme[available_end]="#e06c75" + +# Mem/Disk used meter +theme[used_start]="#98c379" +theme[used_mid]="#e5c07b" +theme[used_end]="#e06c75" + +# Download graph colors +theme[download_start]="#98c379" +theme[download_mid]="#e5c07b" +theme[download_end]="#e06c75" + +# Upload graph colors +theme[upload_start]="#98c379" +theme[upload_mid]="#e5c07b" +theme[upload_end]="#e06c75" diff --git a/colors/base16-outrun-dark.theme b/colors/base16-outrun-dark.theme new file mode 100644 index 0000000..60c343f --- /dev/null +++ b/colors/base16-outrun-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Outrun Dark +# author: Hugo Delahousse (http://github.com/hugodelahousse/) +# slug: outrun-dark +# slug-underscored: outrun_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#00002A" + +# Main text color +theme[main_fg]="#D0D0FA" + +# Title color for boxes +theme[title]="#D0D0FA" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#66B0FF" + +# Background color of selected item in processes box +theme[selected_bg]="#20204A" + +# Foreground color of selected item in processes box +theme[selected_fg]="#D0D0FA" + +# Color of inactive/disabled text +theme[inactive_fg]="#B0B0DA" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#66B0FF" + +# Cpu box outline color +theme[cpu_box]="#B0B0DA" + +# Memory/disks box outline color +theme[mem_box]="#B0B0DA" + +# Net up/down box outline color +theme[net_box]="#B0B0DA" + +# Processes box outline color +theme[proc_box]="#B0B0DA" + +# Box divider line and small boxes line color +theme[div_line]="#B0B0DA" + +# Temperature graph colors +theme[temp_start]="#59F176" +theme[temp_mid]="#F3E877" +theme[temp_end]="#FF4242" + +# CPU graph colors +theme[cpu_start]="#59F176" +theme[cpu_mid]="#F3E877" +theme[cpu_end]="#FF4242" + +# Mem/Disk free meter +theme[free_start]="#59F176" +theme[free_mid]="#F3E877" +theme[free_end]="#FF4242" + +# Mem/Disk cached meter +theme[cached_start]="#59F176" +theme[cached_mid]="#F3E877" +theme[cached_end]="#FF4242" + +# Mem/Disk available meter +theme[available_start]="#59F176" +theme[available_mid]="#F3E877" +theme[available_end]="#FF4242" + +# Mem/Disk used meter +theme[used_start]="#59F176" +theme[used_mid]="#F3E877" +theme[used_end]="#FF4242" + +# Download graph colors +theme[download_start]="#59F176" +theme[download_mid]="#F3E877" +theme[download_end]="#FF4242" + +# Upload graph colors +theme[upload_start]="#59F176" +theme[upload_mid]="#F3E877" +theme[upload_end]="#FF4242" diff --git a/colors/base16-oxocarbon-dark.theme b/colors/base16-oxocarbon-dark.theme new file mode 100644 index 0000000..c761eee --- /dev/null +++ b/colors/base16-oxocarbon-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Oxocarbon Dark +# author: shaunsingh/IBM +# slug: oxocarbon-dark +# slug-underscored: oxocarbon_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#161616" + +# Main text color +theme[main_fg]="#f2f4f8" + +# Title color for boxes +theme[title]="#f2f4f8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#42be65" + +# Background color of selected item in processes box +theme[selected_bg]="#262626" + +# Foreground color of selected item in processes box +theme[selected_fg]="#f2f4f8" + +# Color of inactive/disabled text +theme[inactive_fg]="#dde1e6" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#42be65" + +# Cpu box outline color +theme[cpu_box]="#dde1e6" + +# Memory/disks box outline color +theme[mem_box]="#dde1e6" + +# Net up/down box outline color +theme[net_box]="#dde1e6" + +# Processes box outline color +theme[proc_box]="#dde1e6" + +# Box divider line and small boxes line color +theme[div_line]="#dde1e6" + +# Temperature graph colors +theme[temp_start]="#33b1ff" +theme[temp_mid]="#ee5396" +theme[temp_end]="#3ddbd9" + +# CPU graph colors +theme[cpu_start]="#33b1ff" +theme[cpu_mid]="#ee5396" +theme[cpu_end]="#3ddbd9" + +# Mem/Disk free meter +theme[free_start]="#33b1ff" +theme[free_mid]="#ee5396" +theme[free_end]="#3ddbd9" + +# Mem/Disk cached meter +theme[cached_start]="#33b1ff" +theme[cached_mid]="#ee5396" +theme[cached_end]="#3ddbd9" + +# Mem/Disk available meter +theme[available_start]="#33b1ff" +theme[available_mid]="#ee5396" +theme[available_end]="#3ddbd9" + +# Mem/Disk used meter +theme[used_start]="#33b1ff" +theme[used_mid]="#ee5396" +theme[used_end]="#3ddbd9" + +# Download graph colors +theme[download_start]="#33b1ff" +theme[download_mid]="#ee5396" +theme[download_end]="#3ddbd9" + +# Upload graph colors +theme[upload_start]="#33b1ff" +theme[upload_mid]="#ee5396" +theme[upload_end]="#3ddbd9" diff --git a/colors/base16-oxocarbon-light.theme b/colors/base16-oxocarbon-light.theme new file mode 100644 index 0000000..e6ef137 --- /dev/null +++ b/colors/base16-oxocarbon-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Oxocarbon Light +# author: shaunsingh/IBM +# slug: oxocarbon-light +# slug-underscored: oxocarbon_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f2f4f8" + +# Main text color +theme[main_fg]="#393939" + +# Title color for boxes +theme[title]="#393939" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#42be65" + +# Background color of selected item in processes box +theme[selected_bg]="#dde1e6" + +# Foreground color of selected item in processes box +theme[selected_fg]="#393939" + +# Color of inactive/disabled text +theme[inactive_fg]="#262626" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#42be65" + +# Cpu box outline color +theme[cpu_box]="#262626" + +# Memory/disks box outline color +theme[mem_box]="#262626" + +# Net up/down box outline color +theme[net_box]="#262626" + +# Processes box outline color +theme[proc_box]="#262626" + +# Box divider line and small boxes line color +theme[div_line]="#262626" + +# Temperature graph colors +theme[temp_start]="#0f62fe" +theme[temp_mid]="#FF6F00" +theme[temp_end]="#ff7eb6" + +# CPU graph colors +theme[cpu_start]="#0f62fe" +theme[cpu_mid]="#FF6F00" +theme[cpu_end]="#ff7eb6" + +# Mem/Disk free meter +theme[free_start]="#0f62fe" +theme[free_mid]="#FF6F00" +theme[free_end]="#ff7eb6" + +# Mem/Disk cached meter +theme[cached_start]="#0f62fe" +theme[cached_mid]="#FF6F00" +theme[cached_end]="#ff7eb6" + +# Mem/Disk available meter +theme[available_start]="#0f62fe" +theme[available_mid]="#FF6F00" +theme[available_end]="#ff7eb6" + +# Mem/Disk used meter +theme[used_start]="#0f62fe" +theme[used_mid]="#FF6F00" +theme[used_end]="#ff7eb6" + +# Download graph colors +theme[download_start]="#0f62fe" +theme[download_mid]="#FF6F00" +theme[download_end]="#ff7eb6" + +# Upload graph colors +theme[upload_start]="#0f62fe" +theme[upload_mid]="#FF6F00" +theme[upload_end]="#ff7eb6" diff --git a/colors/base16-pandora.theme b/colors/base16-pandora.theme new file mode 100644 index 0000000..85e62e7 --- /dev/null +++ b/colors/base16-pandora.theme @@ -0,0 +1,90 @@ +# +# +# name: pandora +# author: Cassandra Fox +# slug: pandora +# slug-underscored: pandora +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#131213" + +# Main text color +theme[main_fg]="#f15c99" + +# Title color for boxes +theme[title]="#f15c99" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#008080" + +# Background color of selected item in processes box +theme[selected_bg]="#2f1823" + +# Foreground color of selected item in processes box +theme[selected_fg]="#f15c99" + +# Color of inactive/disabled text +theme[inactive_fg]="#9b2a46" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#008080" + +# Cpu box outline color +theme[cpu_box]="#9b2a46" + +# Memory/disks box outline color +theme[mem_box]="#9b2a46" + +# Net up/down box outline color +theme[net_box]="#9b2a46" + +# Processes box outline color +theme[proc_box]="#9b2a46" + +# Box divider line and small boxes line color +theme[div_line]="#9b2a46" + +# Temperature graph colors +theme[temp_start]="#9ddf69" +theme[temp_mid]="#ffcc00" +theme[temp_end]="#b00b69" + +# CPU graph colors +theme[cpu_start]="#9ddf69" +theme[cpu_mid]="#ffcc00" +theme[cpu_end]="#b00b69" + +# Mem/Disk free meter +theme[free_start]="#9ddf69" +theme[free_mid]="#ffcc00" +theme[free_end]="#b00b69" + +# Mem/Disk cached meter +theme[cached_start]="#9ddf69" +theme[cached_mid]="#ffcc00" +theme[cached_end]="#b00b69" + +# Mem/Disk available meter +theme[available_start]="#9ddf69" +theme[available_mid]="#ffcc00" +theme[available_end]="#b00b69" + +# Mem/Disk used meter +theme[used_start]="#9ddf69" +theme[used_mid]="#ffcc00" +theme[used_end]="#b00b69" + +# Download graph colors +theme[download_start]="#9ddf69" +theme[download_mid]="#ffcc00" +theme[download_end]="#b00b69" + +# Upload graph colors +theme[upload_start]="#9ddf69" +theme[upload_mid]="#ffcc00" +theme[upload_end]="#b00b69" diff --git a/colors/base16-papercolor-dark.theme b/colors/base16-papercolor-dark.theme new file mode 100644 index 0000000..0d7e0b0 --- /dev/null +++ b/colors/base16-papercolor-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: PaperColor Dark +# author: Jon Leopard (http://github.com/jonleopard), based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) +# slug: papercolor-dark +# slug-underscored: papercolor_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1c1c1c" + +# Main text color +theme[main_fg]="#808080" + +# Title color for boxes +theme[title]="#808080" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#ff5faf" + +# Background color of selected item in processes box +theme[selected_bg]="#af005f" + +# Foreground color of selected item in processes box +theme[selected_fg]="#808080" + +# Color of inactive/disabled text +theme[inactive_fg]="#5fafd7" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#ff5faf" + +# Cpu box outline color +theme[cpu_box]="#5fafd7" + +# Memory/disks box outline color +theme[mem_box]="#5fafd7" + +# Net up/down box outline color +theme[net_box]="#5fafd7" + +# Processes box outline color +theme[proc_box]="#5fafd7" + +# Box divider line and small boxes line color +theme[div_line]="#5fafd7" + +# Temperature graph colors +theme[temp_start]="#af87d7" +theme[temp_mid]="#afd700" +theme[temp_end]="#585858" + +# CPU graph colors +theme[cpu_start]="#af87d7" +theme[cpu_mid]="#afd700" +theme[cpu_end]="#585858" + +# Mem/Disk free meter +theme[free_start]="#af87d7" +theme[free_mid]="#afd700" +theme[free_end]="#585858" + +# Mem/Disk cached meter +theme[cached_start]="#af87d7" +theme[cached_mid]="#afd700" +theme[cached_end]="#585858" + +# Mem/Disk available meter +theme[available_start]="#af87d7" +theme[available_mid]="#afd700" +theme[available_end]="#585858" + +# Mem/Disk used meter +theme[used_start]="#af87d7" +theme[used_mid]="#afd700" +theme[used_end]="#585858" + +# Download graph colors +theme[download_start]="#af87d7" +theme[download_mid]="#afd700" +theme[download_end]="#585858" + +# Upload graph colors +theme[upload_start]="#af87d7" +theme[upload_mid]="#afd700" +theme[upload_end]="#585858" diff --git a/colors/base16-papercolor-light.theme b/colors/base16-papercolor-light.theme new file mode 100644 index 0000000..27150db --- /dev/null +++ b/colors/base16-papercolor-light.theme @@ -0,0 +1,90 @@ +# +# +# name: PaperColor Light +# author: Jon Leopard (http://github.com/jonleopard), based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) +# slug: papercolor-light +# slug-underscored: papercolor_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#eeeeee" + +# Main text color +theme[main_fg]="#444444" + +# Title color for boxes +theme[title]="#444444" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#d75f00" + +# Background color of selected item in processes box +theme[selected_bg]="#af0000" + +# Foreground color of selected item in processes box +theme[selected_fg]="#444444" + +# Color of inactive/disabled text +theme[inactive_fg]="#0087af" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#d75f00" + +# Cpu box outline color +theme[cpu_box]="#0087af" + +# Memory/disks box outline color +theme[mem_box]="#0087af" + +# Net up/down box outline color +theme[net_box]="#0087af" + +# Processes box outline color +theme[proc_box]="#0087af" + +# Box divider line and small boxes line color +theme[div_line]="#0087af" + +# Temperature graph colors +theme[temp_start]="#8700af" +theme[temp_mid]="#d70087" +theme[temp_end]="#bcbcbc" + +# CPU graph colors +theme[cpu_start]="#8700af" +theme[cpu_mid]="#d70087" +theme[cpu_end]="#bcbcbc" + +# Mem/Disk free meter +theme[free_start]="#8700af" +theme[free_mid]="#d70087" +theme[free_end]="#bcbcbc" + +# Mem/Disk cached meter +theme[cached_start]="#8700af" +theme[cached_mid]="#d70087" +theme[cached_end]="#bcbcbc" + +# Mem/Disk available meter +theme[available_start]="#8700af" +theme[available_mid]="#d70087" +theme[available_end]="#bcbcbc" + +# Mem/Disk used meter +theme[used_start]="#8700af" +theme[used_mid]="#d70087" +theme[used_end]="#bcbcbc" + +# Download graph colors +theme[download_start]="#8700af" +theme[download_mid]="#d70087" +theme[download_end]="#bcbcbc" + +# Upload graph colors +theme[upload_start]="#8700af" +theme[upload_mid]="#d70087" +theme[upload_end]="#bcbcbc" diff --git a/colors/base16-paraiso.theme b/colors/base16-paraiso.theme new file mode 100644 index 0000000..90c8af5 --- /dev/null +++ b/colors/base16-paraiso.theme @@ -0,0 +1,90 @@ +# +# +# name: Paraiso +# author: Jan T. Sott +# slug: paraiso +# slug-underscored: paraiso +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2f1e2e" + +# Main text color +theme[main_fg]="#a39e9b" + +# Title color for boxes +theme[title]="#a39e9b" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#06b6ef" + +# Background color of selected item in processes box +theme[selected_bg]="#41323f" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a39e9b" + +# Color of inactive/disabled text +theme[inactive_fg]="#8d8687" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#06b6ef" + +# Cpu box outline color +theme[cpu_box]="#8d8687" + +# Memory/disks box outline color +theme[mem_box]="#8d8687" + +# Net up/down box outline color +theme[net_box]="#8d8687" + +# Processes box outline color +theme[proc_box]="#8d8687" + +# Box divider line and small boxes line color +theme[div_line]="#8d8687" + +# Temperature graph colors +theme[temp_start]="#48b685" +theme[temp_mid]="#fec418" +theme[temp_end]="#ef6155" + +# CPU graph colors +theme[cpu_start]="#48b685" +theme[cpu_mid]="#fec418" +theme[cpu_end]="#ef6155" + +# Mem/Disk free meter +theme[free_start]="#48b685" +theme[free_mid]="#fec418" +theme[free_end]="#ef6155" + +# Mem/Disk cached meter +theme[cached_start]="#48b685" +theme[cached_mid]="#fec418" +theme[cached_end]="#ef6155" + +# Mem/Disk available meter +theme[available_start]="#48b685" +theme[available_mid]="#fec418" +theme[available_end]="#ef6155" + +# Mem/Disk used meter +theme[used_start]="#48b685" +theme[used_mid]="#fec418" +theme[used_end]="#ef6155" + +# Download graph colors +theme[download_start]="#48b685" +theme[download_mid]="#fec418" +theme[download_end]="#ef6155" + +# Upload graph colors +theme[upload_start]="#48b685" +theme[upload_mid]="#fec418" +theme[upload_end]="#ef6155" diff --git a/colors/base16-pasque.theme b/colors/base16-pasque.theme new file mode 100644 index 0000000..617b1e9 --- /dev/null +++ b/colors/base16-pasque.theme @@ -0,0 +1,90 @@ +# +# +# name: Pasque +# author: Gabriel Fontes (https://github.com/Misterio77) +# slug: pasque +# slug-underscored: pasque +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#271C3A" + +# Main text color +theme[main_fg]="#DEDCDF" + +# Title color for boxes +theme[title]="#DEDCDF" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8E7DC6" + +# Background color of selected item in processes box +theme[selected_bg]="#100323" + +# Foreground color of selected item in processes box +theme[selected_fg]="#DEDCDF" + +# Color of inactive/disabled text +theme[inactive_fg]="#BEBCBF" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8E7DC6" + +# Cpu box outline color +theme[cpu_box]="#BEBCBF" + +# Memory/disks box outline color +theme[mem_box]="#BEBCBF" + +# Net up/down box outline color +theme[net_box]="#BEBCBF" + +# Processes box outline color +theme[proc_box]="#BEBCBF" + +# Box divider line and small boxes line color +theme[div_line]="#BEBCBF" + +# Temperature graph colors +theme[temp_start]="#C6914B" +theme[temp_mid]="#804ead" +theme[temp_end]="#A92258" + +# CPU graph colors +theme[cpu_start]="#C6914B" +theme[cpu_mid]="#804ead" +theme[cpu_end]="#A92258" + +# Mem/Disk free meter +theme[free_start]="#C6914B" +theme[free_mid]="#804ead" +theme[free_end]="#A92258" + +# Mem/Disk cached meter +theme[cached_start]="#C6914B" +theme[cached_mid]="#804ead" +theme[cached_end]="#A92258" + +# Mem/Disk available meter +theme[available_start]="#C6914B" +theme[available_mid]="#804ead" +theme[available_end]="#A92258" + +# Mem/Disk used meter +theme[used_start]="#C6914B" +theme[used_mid]="#804ead" +theme[used_end]="#A92258" + +# Download graph colors +theme[download_start]="#C6914B" +theme[download_mid]="#804ead" +theme[download_end]="#A92258" + +# Upload graph colors +theme[upload_start]="#C6914B" +theme[upload_mid]="#804ead" +theme[upload_end]="#A92258" diff --git a/colors/base16-phd.theme b/colors/base16-phd.theme new file mode 100644 index 0000000..b5f4075 --- /dev/null +++ b/colors/base16-phd.theme @@ -0,0 +1,90 @@ +# +# +# name: PhD +# author: Hennig Hasemann (http://leetless.de/vim.html) +# slug: phd +# slug-underscored: phd +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#061229" + +# Main text color +theme[main_fg]="#b8bbc2" + +# Title color for boxes +theme[title]="#b8bbc2" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#5299bf" + +# Background color of selected item in processes box +theme[selected_bg]="#2a3448" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b8bbc2" + +# Color of inactive/disabled text +theme[inactive_fg]="#9a99a3" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#5299bf" + +# Cpu box outline color +theme[cpu_box]="#9a99a3" + +# Memory/disks box outline color +theme[mem_box]="#9a99a3" + +# Net up/down box outline color +theme[net_box]="#9a99a3" + +# Processes box outline color +theme[proc_box]="#9a99a3" + +# Box divider line and small boxes line color +theme[div_line]="#9a99a3" + +# Temperature graph colors +theme[temp_start]="#99bf52" +theme[temp_mid]="#fbd461" +theme[temp_end]="#d07346" + +# CPU graph colors +theme[cpu_start]="#99bf52" +theme[cpu_mid]="#fbd461" +theme[cpu_end]="#d07346" + +# Mem/Disk free meter +theme[free_start]="#99bf52" +theme[free_mid]="#fbd461" +theme[free_end]="#d07346" + +# Mem/Disk cached meter +theme[cached_start]="#99bf52" +theme[cached_mid]="#fbd461" +theme[cached_end]="#d07346" + +# Mem/Disk available meter +theme[available_start]="#99bf52" +theme[available_mid]="#fbd461" +theme[available_end]="#d07346" + +# Mem/Disk used meter +theme[used_start]="#99bf52" +theme[used_mid]="#fbd461" +theme[used_end]="#d07346" + +# Download graph colors +theme[download_start]="#99bf52" +theme[download_mid]="#fbd461" +theme[download_end]="#d07346" + +# Upload graph colors +theme[upload_start]="#99bf52" +theme[upload_mid]="#fbd461" +theme[upload_end]="#d07346" diff --git a/colors/base16-pico.theme b/colors/base16-pico.theme new file mode 100644 index 0000000..618e704 --- /dev/null +++ b/colors/base16-pico.theme @@ -0,0 +1,90 @@ +# +# +# name: Pico +# author: PICO-8 (http://www.lexaloffle.com/pico-8.php) +# slug: pico +# slug-underscored: pico +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#5f574f" + +# Title color for boxes +theme[title]="#5f574f" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#83769c" + +# Background color of selected item in processes box +theme[selected_bg]="#1d2b53" + +# Foreground color of selected item in processes box +theme[selected_fg]="#5f574f" + +# Color of inactive/disabled text +theme[inactive_fg]="#ab5236" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#83769c" + +# Cpu box outline color +theme[cpu_box]="#ab5236" + +# Memory/disks box outline color +theme[mem_box]="#ab5236" + +# Net up/down box outline color +theme[net_box]="#ab5236" + +# Processes box outline color +theme[proc_box]="#ab5236" + +# Box divider line and small boxes line color +theme[div_line]="#ab5236" + +# Temperature graph colors +theme[temp_start]="#00e756" +theme[temp_mid]="#fff024" +theme[temp_end]="#ff004d" + +# CPU graph colors +theme[cpu_start]="#00e756" +theme[cpu_mid]="#fff024" +theme[cpu_end]="#ff004d" + +# Mem/Disk free meter +theme[free_start]="#00e756" +theme[free_mid]="#fff024" +theme[free_end]="#ff004d" + +# Mem/Disk cached meter +theme[cached_start]="#00e756" +theme[cached_mid]="#fff024" +theme[cached_end]="#ff004d" + +# Mem/Disk available meter +theme[available_start]="#00e756" +theme[available_mid]="#fff024" +theme[available_end]="#ff004d" + +# Mem/Disk used meter +theme[used_start]="#00e756" +theme[used_mid]="#fff024" +theme[used_end]="#ff004d" + +# Download graph colors +theme[download_start]="#00e756" +theme[download_mid]="#fff024" +theme[download_end]="#ff004d" + +# Upload graph colors +theme[upload_start]="#00e756" +theme[upload_mid]="#fff024" +theme[upload_end]="#ff004d" diff --git a/colors/base16-pinky.theme b/colors/base16-pinky.theme new file mode 100644 index 0000000..306b342 --- /dev/null +++ b/colors/base16-pinky.theme @@ -0,0 +1,90 @@ +# +# +# name: pinky +# author: Benjamin (https://github.com/b3nj5m1n) +# slug: pinky +# slug-underscored: pinky +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#171517" + +# Main text color +theme[main_fg]="#f5f5f5" + +# Title color for boxes +theme[title]="#f5f5f5" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#00ffff" + +# Background color of selected item in processes box +theme[selected_bg]="#1b181b" + +# Foreground color of selected item in processes box +theme[selected_fg]="#f5f5f5" + +# Color of inactive/disabled text +theme[inactive_fg]="#e7dbdb" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#00ffff" + +# Cpu box outline color +theme[cpu_box]="#e7dbdb" + +# Memory/disks box outline color +theme[mem_box]="#e7dbdb" + +# Net up/down box outline color +theme[net_box]="#e7dbdb" + +# Processes box outline color +theme[proc_box]="#e7dbdb" + +# Box divider line and small boxes line color +theme[div_line]="#e7dbdb" + +# Temperature graph colors +theme[temp_start]="#ff0066" +theme[temp_mid]="#20df6c" +theme[temp_end]="#ffa600" + +# CPU graph colors +theme[cpu_start]="#ff0066" +theme[cpu_mid]="#20df6c" +theme[cpu_end]="#ffa600" + +# Mem/Disk free meter +theme[free_start]="#ff0066" +theme[free_mid]="#20df6c" +theme[free_end]="#ffa600" + +# Mem/Disk cached meter +theme[cached_start]="#ff0066" +theme[cached_mid]="#20df6c" +theme[cached_end]="#ffa600" + +# Mem/Disk available meter +theme[available_start]="#ff0066" +theme[available_mid]="#20df6c" +theme[available_end]="#ffa600" + +# Mem/Disk used meter +theme[used_start]="#ff0066" +theme[used_mid]="#20df6c" +theme[used_end]="#ffa600" + +# Download graph colors +theme[download_start]="#ff0066" +theme[download_mid]="#20df6c" +theme[download_end]="#ffa600" + +# Upload graph colors +theme[upload_start]="#ff0066" +theme[upload_mid]="#20df6c" +theme[upload_end]="#ffa600" diff --git a/colors/base16-pop.theme b/colors/base16-pop.theme new file mode 100644 index 0000000..9094fc9 --- /dev/null +++ b/colors/base16-pop.theme @@ -0,0 +1,90 @@ +# +# +# name: Pop +# author: Chris Kempson (http://chriskempson.com) +# slug: pop +# slug-underscored: pop +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#d0d0d0" + +# Title color for boxes +theme[title]="#d0d0d0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0e5a94" + +# Background color of selected item in processes box +theme[selected_bg]="#202020" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d0d0d0" + +# Color of inactive/disabled text +theme[inactive_fg]="#b0b0b0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0e5a94" + +# Cpu box outline color +theme[cpu_box]="#b0b0b0" + +# Memory/disks box outline color +theme[mem_box]="#b0b0b0" + +# Net up/down box outline color +theme[net_box]="#b0b0b0" + +# Processes box outline color +theme[proc_box]="#b0b0b0" + +# Box divider line and small boxes line color +theme[div_line]="#b0b0b0" + +# Temperature graph colors +theme[temp_start]="#37b349" +theme[temp_mid]="#f8ca12" +theme[temp_end]="#eb008a" + +# CPU graph colors +theme[cpu_start]="#37b349" +theme[cpu_mid]="#f8ca12" +theme[cpu_end]="#eb008a" + +# Mem/Disk free meter +theme[free_start]="#37b349" +theme[free_mid]="#f8ca12" +theme[free_end]="#eb008a" + +# Mem/Disk cached meter +theme[cached_start]="#37b349" +theme[cached_mid]="#f8ca12" +theme[cached_end]="#eb008a" + +# Mem/Disk available meter +theme[available_start]="#37b349" +theme[available_mid]="#f8ca12" +theme[available_end]="#eb008a" + +# Mem/Disk used meter +theme[used_start]="#37b349" +theme[used_mid]="#f8ca12" +theme[used_end]="#eb008a" + +# Download graph colors +theme[download_start]="#37b349" +theme[download_mid]="#f8ca12" +theme[download_end]="#eb008a" + +# Upload graph colors +theme[upload_start]="#37b349" +theme[upload_mid]="#f8ca12" +theme[upload_end]="#eb008a" diff --git a/colors/base16-porple.theme b/colors/base16-porple.theme new file mode 100644 index 0000000..365d77b --- /dev/null +++ b/colors/base16-porple.theme @@ -0,0 +1,90 @@ +# +# +# name: Porple +# author: Niek den Breeje (https://github.com/AuditeMarlow) +# slug: porple +# slug-underscored: porple +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#292c36" + +# Main text color +theme[main_fg]="#d8d8d8" + +# Title color for boxes +theme[title]="#d8d8d8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8485ce" + +# Background color of selected item in processes box +theme[selected_bg]="#333344" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d8d8d8" + +# Color of inactive/disabled text +theme[inactive_fg]="#b8b8b8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8485ce" + +# Cpu box outline color +theme[cpu_box]="#b8b8b8" + +# Memory/disks box outline color +theme[mem_box]="#b8b8b8" + +# Net up/down box outline color +theme[net_box]="#b8b8b8" + +# Processes box outline color +theme[proc_box]="#b8b8b8" + +# Box divider line and small boxes line color +theme[div_line]="#b8b8b8" + +# Temperature graph colors +theme[temp_start]="#95c76f" +theme[temp_mid]="#efa16b" +theme[temp_end]="#f84547" + +# CPU graph colors +theme[cpu_start]="#95c76f" +theme[cpu_mid]="#efa16b" +theme[cpu_end]="#f84547" + +# Mem/Disk free meter +theme[free_start]="#95c76f" +theme[free_mid]="#efa16b" +theme[free_end]="#f84547" + +# Mem/Disk cached meter +theme[cached_start]="#95c76f" +theme[cached_mid]="#efa16b" +theme[cached_end]="#f84547" + +# Mem/Disk available meter +theme[available_start]="#95c76f" +theme[available_mid]="#efa16b" +theme[available_end]="#f84547" + +# Mem/Disk used meter +theme[used_start]="#95c76f" +theme[used_mid]="#efa16b" +theme[used_end]="#f84547" + +# Download graph colors +theme[download_start]="#95c76f" +theme[download_mid]="#efa16b" +theme[download_end]="#f84547" + +# Upload graph colors +theme[upload_start]="#95c76f" +theme[upload_mid]="#efa16b" +theme[upload_end]="#f84547" diff --git a/colors/base16-precious-dark-eleven.theme b/colors/base16-precious-dark-eleven.theme new file mode 100644 index 0000000..4ae1f45 --- /dev/null +++ b/colors/base16-precious-dark-eleven.theme @@ -0,0 +1,90 @@ +# +# +# name: Precious Dark Eleven +# author: 4lex4 <4lex49@zoho.com> +# slug: precious-dark-eleven +# slug-underscored: precious_dark_eleven +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1c1e20" + +# Main text color +theme[main_fg]="#b8b7b6" + +# Title color for boxes +theme[title]="#b8b7b6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#68b0ee" + +# Background color of selected item in processes box +theme[selected_bg]="#292b2d" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b8b7b6" + +# Color of inactive/disabled text +theme[inactive_fg]="#a8a8a7" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#68b0ee" + +# Cpu box outline color +theme[cpu_box]="#a8a8a7" + +# Memory/disks box outline color +theme[mem_box]="#a8a8a7" + +# Net up/down box outline color +theme[net_box]="#a8a8a7" + +# Processes box outline color +theme[proc_box]="#a8a8a7" + +# Box divider line and small boxes line color +theme[div_line]="#a8a8a7" + +# Temperature graph colors +theme[temp_start]="#95b658" +theme[temp_mid]="#d0a543" +theme[temp_end]="#ff8782" + +# CPU graph colors +theme[cpu_start]="#95b658" +theme[cpu_mid]="#d0a543" +theme[cpu_end]="#ff8782" + +# Mem/Disk free meter +theme[free_start]="#95b658" +theme[free_mid]="#d0a543" +theme[free_end]="#ff8782" + +# Mem/Disk cached meter +theme[cached_start]="#95b658" +theme[cached_mid]="#d0a543" +theme[cached_end]="#ff8782" + +# Mem/Disk available meter +theme[available_start]="#95b658" +theme[available_mid]="#d0a543" +theme[available_end]="#ff8782" + +# Mem/Disk used meter +theme[used_start]="#95b658" +theme[used_mid]="#d0a543" +theme[used_end]="#ff8782" + +# Download graph colors +theme[download_start]="#95b658" +theme[download_mid]="#d0a543" +theme[download_end]="#ff8782" + +# Upload graph colors +theme[upload_start]="#95b658" +theme[upload_mid]="#d0a543" +theme[upload_end]="#ff8782" diff --git a/colors/base16-precious-dark-fifteen.theme b/colors/base16-precious-dark-fifteen.theme new file mode 100644 index 0000000..7c68d65 --- /dev/null +++ b/colors/base16-precious-dark-fifteen.theme @@ -0,0 +1,90 @@ +# +# +# name: Precious Dark Fifteen +# author: 4lex4 <4lex49@zoho.com> +# slug: precious-dark-fifteen +# slug-underscored: precious_dark_fifteen +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#23262b" + +# Main text color +theme[main_fg]="#bab9b6" + +# Title color for boxes +theme[title]="#bab9b6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#66b0ef" + +# Background color of selected item in processes box +theme[selected_bg]="#303337" + +# Foreground color of selected item in processes box +theme[selected_fg]="#bab9b6" + +# Color of inactive/disabled text +theme[inactive_fg]="#abaaa8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#66b0ef" + +# Cpu box outline color +theme[cpu_box]="#abaaa8" + +# Memory/disks box outline color +theme[mem_box]="#abaaa8" + +# Net up/down box outline color +theme[net_box]="#abaaa8" + +# Processes box outline color +theme[proc_box]="#abaaa8" + +# Box divider line and small boxes line color +theme[div_line]="#abaaa8" + +# Temperature graph colors +theme[temp_start]="#95b659" +theme[temp_mid]="#cfa546" +theme[temp_end]="#ff8782" + +# CPU graph colors +theme[cpu_start]="#95b659" +theme[cpu_mid]="#cfa546" +theme[cpu_end]="#ff8782" + +# Mem/Disk free meter +theme[free_start]="#95b659" +theme[free_mid]="#cfa546" +theme[free_end]="#ff8782" + +# Mem/Disk cached meter +theme[cached_start]="#95b659" +theme[cached_mid]="#cfa546" +theme[cached_end]="#ff8782" + +# Mem/Disk available meter +theme[available_start]="#95b659" +theme[available_mid]="#cfa546" +theme[available_end]="#ff8782" + +# Mem/Disk used meter +theme[used_start]="#95b659" +theme[used_mid]="#cfa546" +theme[used_end]="#ff8782" + +# Download graph colors +theme[download_start]="#95b659" +theme[download_mid]="#cfa546" +theme[download_end]="#ff8782" + +# Upload graph colors +theme[upload_start]="#95b659" +theme[upload_mid]="#cfa546" +theme[upload_end]="#ff8782" diff --git a/colors/base16-precious-light-warm.theme b/colors/base16-precious-light-warm.theme new file mode 100644 index 0000000..ef77427 --- /dev/null +++ b/colors/base16-precious-light-warm.theme @@ -0,0 +1,90 @@ +# +# +# name: Precious Light Warm +# author: 4lex4 <4lex49@zoho.com> +# slug: precious-light-warm +# slug-underscored: precious_light_warm +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fff5e5" + +# Main text color +theme[main_fg]="#4e5359" + +# Title color for boxes +theme[title]="#4e5359" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#246da5" + +# Background color of selected item in processes box +theme[selected_bg]="#ece4d6" + +# Foreground color of selected item in processes box +theme[selected_fg]="#4e5359" + +# Color of inactive/disabled text +theme[inactive_fg]="#5d6065" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#246da5" + +# Cpu box outline color +theme[cpu_box]="#5d6065" + +# Memory/disks box outline color +theme[mem_box]="#5d6065" + +# Net up/down box outline color +theme[net_box]="#5d6065" + +# Processes box outline color +theme[proc_box]="#5d6065" + +# Box divider line and small boxes line color +theme[div_line]="#5d6065" + +# Temperature graph colors +theme[temp_start]="#557300" +theme[temp_mid]="#876500" +theme[temp_end]="#b14745" + +# CPU graph colors +theme[cpu_start]="#557300" +theme[cpu_mid]="#876500" +theme[cpu_end]="#b14745" + +# Mem/Disk free meter +theme[free_start]="#557300" +theme[free_mid]="#876500" +theme[free_end]="#b14745" + +# Mem/Disk cached meter +theme[cached_start]="#557300" +theme[cached_mid]="#876500" +theme[cached_end]="#b14745" + +# Mem/Disk available meter +theme[available_start]="#557300" +theme[available_mid]="#876500" +theme[available_end]="#b14745" + +# Mem/Disk used meter +theme[used_start]="#557300" +theme[used_mid]="#876500" +theme[used_end]="#b14745" + +# Download graph colors +theme[download_start]="#557300" +theme[download_mid]="#876500" +theme[download_end]="#b14745" + +# Upload graph colors +theme[upload_start]="#557300" +theme[upload_mid]="#876500" +theme[upload_end]="#b14745" diff --git a/colors/base16-precious-light-white.theme b/colors/base16-precious-light-white.theme new file mode 100644 index 0000000..4c8239f --- /dev/null +++ b/colors/base16-precious-light-white.theme @@ -0,0 +1,90 @@ +# +# +# name: Precious Light White +# author: 4lex4 <4lex49@zoho.com> +# slug: precious-light-white +# slug-underscored: precious_light_white +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ffffff" + +# Main text color +theme[main_fg]="#555555" + +# Title color for boxes +theme[title]="#555555" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#186daa" + +# Background color of selected item in processes box +theme[selected_bg]="#ededed" + +# Foreground color of selected item in processes box +theme[selected_fg]="#555555" + +# Color of inactive/disabled text +theme[inactive_fg]="#636363" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#186daa" + +# Cpu box outline color +theme[cpu_box]="#636363" + +# Memory/disks box outline color +theme[mem_box]="#636363" + +# Net up/down box outline color +theme[net_box]="#636363" + +# Processes box outline color +theme[proc_box]="#636363" + +# Box divider line and small boxes line color +theme[div_line]="#636363" + +# Temperature graph colors +theme[temp_start]="#557301" +theme[temp_mid]="#876500" +theme[temp_end]="#af4947" + +# CPU graph colors +theme[cpu_start]="#557301" +theme[cpu_mid]="#876500" +theme[cpu_end]="#af4947" + +# Mem/Disk free meter +theme[free_start]="#557301" +theme[free_mid]="#876500" +theme[free_end]="#af4947" + +# Mem/Disk cached meter +theme[cached_start]="#557301" +theme[cached_mid]="#876500" +theme[cached_end]="#af4947" + +# Mem/Disk available meter +theme[available_start]="#557301" +theme[available_mid]="#876500" +theme[available_end]="#af4947" + +# Mem/Disk used meter +theme[used_start]="#557301" +theme[used_mid]="#876500" +theme[used_end]="#af4947" + +# Download graph colors +theme[download_start]="#557301" +theme[download_mid]="#876500" +theme[download_end]="#af4947" + +# Upload graph colors +theme[upload_start]="#557301" +theme[upload_mid]="#876500" +theme[upload_end]="#af4947" diff --git a/colors/base16-primer-dark-dimmed.theme b/colors/base16-primer-dark-dimmed.theme new file mode 100644 index 0000000..e42a9f8 --- /dev/null +++ b/colors/base16-primer-dark-dimmed.theme @@ -0,0 +1,90 @@ +# +# +# name: Primer Dark Dimmed +# author: Jimmy Lin +# slug: primer-dark-dimmed +# slug-underscored: primer_dark_dimmed +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1c2128" + +# Main text color +theme[main_fg]="#909dab" + +# Title color for boxes +theme[title]="#909dab" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#539bf5" + +# Background color of selected item in processes box +theme[selected_bg]="#373e47" + +# Foreground color of selected item in processes box +theme[selected_fg]="#909dab" + +# Color of inactive/disabled text +theme[inactive_fg]="#768390" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#539bf5" + +# Cpu box outline color +theme[cpu_box]="#768390" + +# Memory/disks box outline color +theme[mem_box]="#768390" + +# Net up/down box outline color +theme[net_box]="#768390" + +# Processes box outline color +theme[proc_box]="#768390" + +# Box divider line and small boxes line color +theme[div_line]="#768390" + +# Temperature graph colors +theme[temp_start]="#57ab5a" +theme[temp_mid]="#c69026" +theme[temp_end]="#f47067" + +# CPU graph colors +theme[cpu_start]="#57ab5a" +theme[cpu_mid]="#c69026" +theme[cpu_end]="#f47067" + +# Mem/Disk free meter +theme[free_start]="#57ab5a" +theme[free_mid]="#c69026" +theme[free_end]="#f47067" + +# Mem/Disk cached meter +theme[cached_start]="#57ab5a" +theme[cached_mid]="#c69026" +theme[cached_end]="#f47067" + +# Mem/Disk available meter +theme[available_start]="#57ab5a" +theme[available_mid]="#c69026" +theme[available_end]="#f47067" + +# Mem/Disk used meter +theme[used_start]="#57ab5a" +theme[used_mid]="#c69026" +theme[used_end]="#f47067" + +# Download graph colors +theme[download_start]="#57ab5a" +theme[download_mid]="#c69026" +theme[download_end]="#f47067" + +# Upload graph colors +theme[upload_start]="#57ab5a" +theme[upload_mid]="#c69026" +theme[upload_end]="#f47067" diff --git a/colors/base16-primer-dark.theme b/colors/base16-primer-dark.theme new file mode 100644 index 0000000..683958d --- /dev/null +++ b/colors/base16-primer-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Primer Dark +# author: Jimmy Lin +# slug: primer-dark +# slug-underscored: primer_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#010409" + +# Main text color +theme[main_fg]="#b1bac4" + +# Title color for boxes +theme[title]="#b1bac4" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#58a6ff" + +# Background color of selected item in processes box +theme[selected_bg]="#21262d" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b1bac4" + +# Color of inactive/disabled text +theme[inactive_fg]="#8b949e" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#58a6ff" + +# Cpu box outline color +theme[cpu_box]="#8b949e" + +# Memory/disks box outline color +theme[mem_box]="#8b949e" + +# Net up/down box outline color +theme[net_box]="#8b949e" + +# Processes box outline color +theme[proc_box]="#8b949e" + +# Box divider line and small boxes line color +theme[div_line]="#8b949e" + +# Temperature graph colors +theme[temp_start]="#3fb950" +theme[temp_mid]="#d29922" +theme[temp_end]="#ff7b72" + +# CPU graph colors +theme[cpu_start]="#3fb950" +theme[cpu_mid]="#d29922" +theme[cpu_end]="#ff7b72" + +# Mem/Disk free meter +theme[free_start]="#3fb950" +theme[free_mid]="#d29922" +theme[free_end]="#ff7b72" + +# Mem/Disk cached meter +theme[cached_start]="#3fb950" +theme[cached_mid]="#d29922" +theme[cached_end]="#ff7b72" + +# Mem/Disk available meter +theme[available_start]="#3fb950" +theme[available_mid]="#d29922" +theme[available_end]="#ff7b72" + +# Mem/Disk used meter +theme[used_start]="#3fb950" +theme[used_mid]="#d29922" +theme[used_end]="#ff7b72" + +# Download graph colors +theme[download_start]="#3fb950" +theme[download_mid]="#d29922" +theme[download_end]="#ff7b72" + +# Upload graph colors +theme[upload_start]="#3fb950" +theme[upload_mid]="#d29922" +theme[upload_end]="#ff7b72" diff --git a/colors/base16-primer-light.theme b/colors/base16-primer-light.theme new file mode 100644 index 0000000..2213b39 --- /dev/null +++ b/colors/base16-primer-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Primer Light +# author: Jimmy Lin +# slug: primer-light +# slug-underscored: primer_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fafbfc" + +# Main text color +theme[main_fg]="#2f363d" + +# Title color for boxes +theme[title]="#2f363d" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0366d6" + +# Background color of selected item in processes box +theme[selected_bg]="#e1e4e8" + +# Foreground color of selected item in processes box +theme[selected_fg]="#2f363d" + +# Color of inactive/disabled text +theme[inactive_fg]="#444d56" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0366d6" + +# Cpu box outline color +theme[cpu_box]="#444d56" + +# Memory/disks box outline color +theme[mem_box]="#444d56" + +# Net up/down box outline color +theme[net_box]="#444d56" + +# Processes box outline color +theme[proc_box]="#444d56" + +# Box divider line and small boxes line color +theme[div_line]="#444d56" + +# Temperature graph colors +theme[temp_start]="#28a745" +theme[temp_mid]="#ffd33d" +theme[temp_end]="#d73a49" + +# CPU graph colors +theme[cpu_start]="#28a745" +theme[cpu_mid]="#ffd33d" +theme[cpu_end]="#d73a49" + +# Mem/Disk free meter +theme[free_start]="#28a745" +theme[free_mid]="#ffd33d" +theme[free_end]="#d73a49" + +# Mem/Disk cached meter +theme[cached_start]="#28a745" +theme[cached_mid]="#ffd33d" +theme[cached_end]="#d73a49" + +# Mem/Disk available meter +theme[available_start]="#28a745" +theme[available_mid]="#ffd33d" +theme[available_end]="#d73a49" + +# Mem/Disk used meter +theme[used_start]="#28a745" +theme[used_mid]="#ffd33d" +theme[used_end]="#d73a49" + +# Download graph colors +theme[download_start]="#28a745" +theme[download_mid]="#ffd33d" +theme[download_end]="#d73a49" + +# Upload graph colors +theme[upload_start]="#28a745" +theme[upload_mid]="#ffd33d" +theme[upload_end]="#d73a49" diff --git a/colors/base16-purpledream.theme b/colors/base16-purpledream.theme new file mode 100644 index 0000000..39d0815 --- /dev/null +++ b/colors/base16-purpledream.theme @@ -0,0 +1,90 @@ +# +# +# name: Purpledream +# author: malet +# slug: purpledream +# slug-underscored: purpledream +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#100510" + +# Main text color +theme[main_fg]="#ddd0dd" + +# Title color for boxes +theme[title]="#ddd0dd" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#00A0F0" + +# Background color of selected item in processes box +theme[selected_bg]="#302030" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ddd0dd" + +# Color of inactive/disabled text +theme[inactive_fg]="#bbb0bb" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#00A0F0" + +# Cpu box outline color +theme[cpu_box]="#bbb0bb" + +# Memory/disks box outline color +theme[mem_box]="#bbb0bb" + +# Net up/down box outline color +theme[net_box]="#bbb0bb" + +# Processes box outline color +theme[proc_box]="#bbb0bb" + +# Box divider line and small boxes line color +theme[div_line]="#bbb0bb" + +# Temperature graph colors +theme[temp_start]="#14CC64" +theme[temp_mid]="#F000A0" +theme[temp_end]="#FF1D0D" + +# CPU graph colors +theme[cpu_start]="#14CC64" +theme[cpu_mid]="#F000A0" +theme[cpu_end]="#FF1D0D" + +# Mem/Disk free meter +theme[free_start]="#14CC64" +theme[free_mid]="#F000A0" +theme[free_end]="#FF1D0D" + +# Mem/Disk cached meter +theme[cached_start]="#14CC64" +theme[cached_mid]="#F000A0" +theme[cached_end]="#FF1D0D" + +# Mem/Disk available meter +theme[available_start]="#14CC64" +theme[available_mid]="#F000A0" +theme[available_end]="#FF1D0D" + +# Mem/Disk used meter +theme[used_start]="#14CC64" +theme[used_mid]="#F000A0" +theme[used_end]="#FF1D0D" + +# Download graph colors +theme[download_start]="#14CC64" +theme[download_mid]="#F000A0" +theme[download_end]="#FF1D0D" + +# Upload graph colors +theme[upload_start]="#14CC64" +theme[upload_mid]="#F000A0" +theme[upload_end]="#FF1D0D" diff --git a/colors/base16-qualia.theme b/colors/base16-qualia.theme new file mode 100644 index 0000000..1e17bd1 --- /dev/null +++ b/colors/base16-qualia.theme @@ -0,0 +1,90 @@ +# +# +# name: Qualia +# author: isaacwhanson +# slug: qualia +# slug-underscored: qualia +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#101010" + +# Main text color +theme[main_fg]="#C0C0C0" + +# Title color for boxes +theme[title]="#C0C0C0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#50CACD" + +# Background color of selected item in processes box +theme[selected_bg]="#454545" + +# Foreground color of selected item in processes box +theme[selected_fg]="#C0C0C0" + +# Color of inactive/disabled text +theme[inactive_fg]="#808080" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#50CACD" + +# Cpu box outline color +theme[cpu_box]="#808080" + +# Memory/disks box outline color +theme[mem_box]="#808080" + +# Net up/down box outline color +theme[net_box]="#808080" + +# Processes box outline color +theme[proc_box]="#808080" + +# Box divider line and small boxes line color +theme[div_line]="#808080" + +# Temperature graph colors +theme[temp_start]="#80C990" +theme[temp_mid]="#E6A3DC" +theme[temp_end]="#EFA6A2" + +# CPU graph colors +theme[cpu_start]="#80C990" +theme[cpu_mid]="#E6A3DC" +theme[cpu_end]="#EFA6A2" + +# Mem/Disk free meter +theme[free_start]="#80C990" +theme[free_mid]="#E6A3DC" +theme[free_end]="#EFA6A2" + +# Mem/Disk cached meter +theme[cached_start]="#80C990" +theme[cached_mid]="#E6A3DC" +theme[cached_end]="#EFA6A2" + +# Mem/Disk available meter +theme[available_start]="#80C990" +theme[available_mid]="#E6A3DC" +theme[available_end]="#EFA6A2" + +# Mem/Disk used meter +theme[used_start]="#80C990" +theme[used_mid]="#E6A3DC" +theme[used_end]="#EFA6A2" + +# Download graph colors +theme[download_start]="#80C990" +theme[download_mid]="#E6A3DC" +theme[download_end]="#EFA6A2" + +# Upload graph colors +theme[upload_start]="#80C990" +theme[upload_mid]="#E6A3DC" +theme[upload_end]="#EFA6A2" diff --git a/colors/base16-railscasts.theme b/colors/base16-railscasts.theme new file mode 100644 index 0000000..3d7efeb --- /dev/null +++ b/colors/base16-railscasts.theme @@ -0,0 +1,90 @@ +# +# +# name: Railscasts +# author: Ryan Bates (http://railscasts.com) +# slug: railscasts +# slug-underscored: railscasts +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2b2b2b" + +# Main text color +theme[main_fg]="#e6e1dc" + +# Title color for boxes +theme[title]="#e6e1dc" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6d9cbe" + +# Background color of selected item in processes box +theme[selected_bg]="#272935" + +# Foreground color of selected item in processes box +theme[selected_fg]="#e6e1dc" + +# Color of inactive/disabled text +theme[inactive_fg]="#d4cfc9" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6d9cbe" + +# Cpu box outline color +theme[cpu_box]="#d4cfc9" + +# Memory/disks box outline color +theme[mem_box]="#d4cfc9" + +# Net up/down box outline color +theme[net_box]="#d4cfc9" + +# Processes box outline color +theme[proc_box]="#d4cfc9" + +# Box divider line and small boxes line color +theme[div_line]="#d4cfc9" + +# Temperature graph colors +theme[temp_start]="#a5c261" +theme[temp_mid]="#ffc66d" +theme[temp_end]="#da4939" + +# CPU graph colors +theme[cpu_start]="#a5c261" +theme[cpu_mid]="#ffc66d" +theme[cpu_end]="#da4939" + +# Mem/Disk free meter +theme[free_start]="#a5c261" +theme[free_mid]="#ffc66d" +theme[free_end]="#da4939" + +# Mem/Disk cached meter +theme[cached_start]="#a5c261" +theme[cached_mid]="#ffc66d" +theme[cached_end]="#da4939" + +# Mem/Disk available meter +theme[available_start]="#a5c261" +theme[available_mid]="#ffc66d" +theme[available_end]="#da4939" + +# Mem/Disk used meter +theme[used_start]="#a5c261" +theme[used_mid]="#ffc66d" +theme[used_end]="#da4939" + +# Download graph colors +theme[download_start]="#a5c261" +theme[download_mid]="#ffc66d" +theme[download_end]="#da4939" + +# Upload graph colors +theme[upload_start]="#a5c261" +theme[upload_mid]="#ffc66d" +theme[upload_end]="#da4939" diff --git a/colors/base16-rebecca.theme b/colors/base16-rebecca.theme new file mode 100644 index 0000000..bcef6e4 --- /dev/null +++ b/colors/base16-rebecca.theme @@ -0,0 +1,90 @@ +# +# +# name: Rebecca +# author: Victor Borja (http://github.com/vic) based on Rebecca Theme (http://github.com/vic/rebecca-theme) +# slug: rebecca +# slug-underscored: rebecca +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#292a44" + +# Main text color +theme[main_fg]="#f1eff8" + +# Title color for boxes +theme[title]="#f1eff8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#2de0a7" + +# Background color of selected item in processes box +theme[selected_bg]="#663399" + +# Foreground color of selected item in processes box +theme[selected_fg]="#f1eff8" + +# Color of inactive/disabled text +theme[inactive_fg]="#a0a0c5" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#2de0a7" + +# Cpu box outline color +theme[cpu_box]="#a0a0c5" + +# Memory/disks box outline color +theme[mem_box]="#a0a0c5" + +# Net up/down box outline color +theme[net_box]="#a0a0c5" + +# Processes box outline color +theme[proc_box]="#a0a0c5" + +# Box divider line and small boxes line color +theme[div_line]="#a0a0c5" + +# Temperature graph colors +theme[temp_start]="#6dfedf" +theme[temp_mid]="#ae81ff" +theme[temp_end]="#a0a0c5" + +# CPU graph colors +theme[cpu_start]="#6dfedf" +theme[cpu_mid]="#ae81ff" +theme[cpu_end]="#a0a0c5" + +# Mem/Disk free meter +theme[free_start]="#6dfedf" +theme[free_mid]="#ae81ff" +theme[free_end]="#a0a0c5" + +# Mem/Disk cached meter +theme[cached_start]="#6dfedf" +theme[cached_mid]="#ae81ff" +theme[cached_end]="#a0a0c5" + +# Mem/Disk available meter +theme[available_start]="#6dfedf" +theme[available_mid]="#ae81ff" +theme[available_end]="#a0a0c5" + +# Mem/Disk used meter +theme[used_start]="#6dfedf" +theme[used_mid]="#ae81ff" +theme[used_end]="#a0a0c5" + +# Download graph colors +theme[download_start]="#6dfedf" +theme[download_mid]="#ae81ff" +theme[download_end]="#a0a0c5" + +# Upload graph colors +theme[upload_start]="#6dfedf" +theme[upload_mid]="#ae81ff" +theme[upload_end]="#a0a0c5" diff --git a/colors/base16-rose-pine-dawn.theme b/colors/base16-rose-pine-dawn.theme new file mode 100644 index 0000000..277d107 --- /dev/null +++ b/colors/base16-rose-pine-dawn.theme @@ -0,0 +1,90 @@ +# +# +# name: Rosé Pine Dawn +# author: Emilia Dunfelt <edun@dunfelt.se> +# slug: rose-pine-dawn +# slug-underscored: rose_pine_dawn +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#faf4ed" + +# Main text color +theme[main_fg]="#575279" + +# Title color for boxes +theme[title]="#575279" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#907aa9" + +# Background color of selected item in processes box +theme[selected_bg]="#fffaf3" + +# Foreground color of selected item in processes box +theme[selected_fg]="#575279" + +# Color of inactive/disabled text +theme[inactive_fg]="#797593" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#907aa9" + +# Cpu box outline color +theme[cpu_box]="#797593" + +# Memory/disks box outline color +theme[mem_box]="#797593" + +# Net up/down box outline color +theme[net_box]="#797593" + +# Processes box outline color +theme[proc_box]="#797593" + +# Box divider line and small boxes line color +theme[div_line]="#797593" + +# Temperature graph colors +theme[temp_start]="#286983" +theme[temp_mid]="#d7827e" +theme[temp_end]="#b4637a" + +# CPU graph colors +theme[cpu_start]="#286983" +theme[cpu_mid]="#d7827e" +theme[cpu_end]="#b4637a" + +# Mem/Disk free meter +theme[free_start]="#286983" +theme[free_mid]="#d7827e" +theme[free_end]="#b4637a" + +# Mem/Disk cached meter +theme[cached_start]="#286983" +theme[cached_mid]="#d7827e" +theme[cached_end]="#b4637a" + +# Mem/Disk available meter +theme[available_start]="#286983" +theme[available_mid]="#d7827e" +theme[available_end]="#b4637a" + +# Mem/Disk used meter +theme[used_start]="#286983" +theme[used_mid]="#d7827e" +theme[used_end]="#b4637a" + +# Download graph colors +theme[download_start]="#286983" +theme[download_mid]="#d7827e" +theme[download_end]="#b4637a" + +# Upload graph colors +theme[upload_start]="#286983" +theme[upload_mid]="#d7827e" +theme[upload_end]="#b4637a" diff --git a/colors/base16-rose-pine-moon.theme b/colors/base16-rose-pine-moon.theme new file mode 100644 index 0000000..0f737c6 --- /dev/null +++ b/colors/base16-rose-pine-moon.theme @@ -0,0 +1,90 @@ +# +# +# name: Rosé Pine Moon +# author: Emilia Dunfelt <edun@dunfelt.se> +# slug: rose-pine-moon +# slug-underscored: rose_pine_moon +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#232136" + +# Main text color +theme[main_fg]="#e0def4" + +# Title color for boxes +theme[title]="#e0def4" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#c4a7e7" + +# Background color of selected item in processes box +theme[selected_bg]="#2a273f" + +# Foreground color of selected item in processes box +theme[selected_fg]="#e0def4" + +# Color of inactive/disabled text +theme[inactive_fg]="#908caa" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#c4a7e7" + +# Cpu box outline color +theme[cpu_box]="#908caa" + +# Memory/disks box outline color +theme[mem_box]="#908caa" + +# Net up/down box outline color +theme[net_box]="#908caa" + +# Processes box outline color +theme[proc_box]="#908caa" + +# Box divider line and small boxes line color +theme[div_line]="#908caa" + +# Temperature graph colors +theme[temp_start]="#3e8fb0" +theme[temp_mid]="#ea9a97" +theme[temp_end]="#eb6f92" + +# CPU graph colors +theme[cpu_start]="#3e8fb0" +theme[cpu_mid]="#ea9a97" +theme[cpu_end]="#eb6f92" + +# Mem/Disk free meter +theme[free_start]="#3e8fb0" +theme[free_mid]="#ea9a97" +theme[free_end]="#eb6f92" + +# Mem/Disk cached meter +theme[cached_start]="#3e8fb0" +theme[cached_mid]="#ea9a97" +theme[cached_end]="#eb6f92" + +# Mem/Disk available meter +theme[available_start]="#3e8fb0" +theme[available_mid]="#ea9a97" +theme[available_end]="#eb6f92" + +# Mem/Disk used meter +theme[used_start]="#3e8fb0" +theme[used_mid]="#ea9a97" +theme[used_end]="#eb6f92" + +# Download graph colors +theme[download_start]="#3e8fb0" +theme[download_mid]="#ea9a97" +theme[download_end]="#eb6f92" + +# Upload graph colors +theme[upload_start]="#3e8fb0" +theme[upload_mid]="#ea9a97" +theme[upload_end]="#eb6f92" diff --git a/colors/base16-rose-pine.theme b/colors/base16-rose-pine.theme new file mode 100644 index 0000000..8a87f97 --- /dev/null +++ b/colors/base16-rose-pine.theme @@ -0,0 +1,90 @@ +# +# +# name: Rosé Pine +# author: Emilia Dunfelt <edun@dunfelt.se> +# slug: rose-pine +# slug-underscored: rose_pine +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#191724" + +# Main text color +theme[main_fg]="#e0def4" + +# Title color for boxes +theme[title]="#e0def4" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#c4a7e7" + +# Background color of selected item in processes box +theme[selected_bg]="#1f1d2e" + +# Foreground color of selected item in processes box +theme[selected_fg]="#e0def4" + +# Color of inactive/disabled text +theme[inactive_fg]="#908caa" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#c4a7e7" + +# Cpu box outline color +theme[cpu_box]="#908caa" + +# Memory/disks box outline color +theme[mem_box]="#908caa" + +# Net up/down box outline color +theme[net_box]="#908caa" + +# Processes box outline color +theme[proc_box]="#908caa" + +# Box divider line and small boxes line color +theme[div_line]="#908caa" + +# Temperature graph colors +theme[temp_start]="#31748f" +theme[temp_mid]="#ebbcba" +theme[temp_end]="#eb6f92" + +# CPU graph colors +theme[cpu_start]="#31748f" +theme[cpu_mid]="#ebbcba" +theme[cpu_end]="#eb6f92" + +# Mem/Disk free meter +theme[free_start]="#31748f" +theme[free_mid]="#ebbcba" +theme[free_end]="#eb6f92" + +# Mem/Disk cached meter +theme[cached_start]="#31748f" +theme[cached_mid]="#ebbcba" +theme[cached_end]="#eb6f92" + +# Mem/Disk available meter +theme[available_start]="#31748f" +theme[available_mid]="#ebbcba" +theme[available_end]="#eb6f92" + +# Mem/Disk used meter +theme[used_start]="#31748f" +theme[used_mid]="#ebbcba" +theme[used_end]="#eb6f92" + +# Download graph colors +theme[download_start]="#31748f" +theme[download_mid]="#ebbcba" +theme[download_end]="#eb6f92" + +# Upload graph colors +theme[upload_start]="#31748f" +theme[upload_mid]="#ebbcba" +theme[upload_end]="#eb6f92" diff --git a/colors/base16-saga.theme b/colors/base16-saga.theme new file mode 100644 index 0000000..e70059a --- /dev/null +++ b/colors/base16-saga.theme @@ -0,0 +1,90 @@ +# +# +# name: SAGA +# author: https://github.com/SAGAtheme/SAGA +# slug: saga +# slug-underscored: saga +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#05080a" + +# Main text color +theme[main_fg]="#dce2f7" + +# Title color for boxes +theme[title]="#dce2f7" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#c9fff7" + +# Background color of selected item in processes box +theme[selected_bg]="#0a1014" + +# Foreground color of selected item in processes box +theme[selected_fg]="#dce2f7" + +# Color of inactive/disabled text +theme[inactive_fg]="#192630" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#c9fff7" + +# Cpu box outline color +theme[cpu_box]="#192630" + +# Memory/disks box outline color +theme[mem_box]="#192630" + +# Net up/down box outline color +theme[net_box]="#192630" + +# Processes box outline color +theme[proc_box]="#192630" + +# Box divider line and small boxes line color +theme[div_line]="#192630" + +# Temperature graph colors +theme[temp_start]="#f7ddff" +theme[temp_mid]="#fbebc8" +theme[temp_end]="#ffd4e9" + +# CPU graph colors +theme[cpu_start]="#f7ddff" +theme[cpu_mid]="#fbebc8" +theme[cpu_end]="#ffd4e9" + +# Mem/Disk free meter +theme[free_start]="#f7ddff" +theme[free_mid]="#fbebc8" +theme[free_end]="#ffd4e9" + +# Mem/Disk cached meter +theme[cached_start]="#f7ddff" +theme[cached_mid]="#fbebc8" +theme[cached_end]="#ffd4e9" + +# Mem/Disk available meter +theme[available_start]="#f7ddff" +theme[available_mid]="#fbebc8" +theme[available_end]="#ffd4e9" + +# Mem/Disk used meter +theme[used_start]="#f7ddff" +theme[used_mid]="#fbebc8" +theme[used_end]="#ffd4e9" + +# Download graph colors +theme[download_start]="#f7ddff" +theme[download_mid]="#fbebc8" +theme[download_end]="#ffd4e9" + +# Upload graph colors +theme[upload_start]="#f7ddff" +theme[upload_mid]="#fbebc8" +theme[upload_end]="#ffd4e9" diff --git a/colors/base16-sagelight.theme b/colors/base16-sagelight.theme new file mode 100644 index 0000000..58fdc17 --- /dev/null +++ b/colors/base16-sagelight.theme @@ -0,0 +1,90 @@ +# +# +# name: Sagelight +# author: Carter Veldhuizen +# slug: sagelight +# slug-underscored: sagelight +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f8f8f8" + +# Main text color +theme[main_fg]="#383838" + +# Title color for boxes +theme[title]="#383838" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#a0a7d2" + +# Background color of selected item in processes box +theme[selected_bg]="#e8e8e8" + +# Foreground color of selected item in processes box +theme[selected_fg]="#383838" + +# Color of inactive/disabled text +theme[inactive_fg]="#585858" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#a0a7d2" + +# Cpu box outline color +theme[cpu_box]="#585858" + +# Memory/disks box outline color +theme[mem_box]="#585858" + +# Net up/down box outline color +theme[net_box]="#585858" + +# Processes box outline color +theme[proc_box]="#585858" + +# Box divider line and small boxes line color +theme[div_line]="#585858" + +# Temperature graph colors +theme[temp_start]="#a0d2c8" +theme[temp_mid]="#ffdc61" +theme[temp_end]="#fa8480" + +# CPU graph colors +theme[cpu_start]="#a0d2c8" +theme[cpu_mid]="#ffdc61" +theme[cpu_end]="#fa8480" + +# Mem/Disk free meter +theme[free_start]="#a0d2c8" +theme[free_mid]="#ffdc61" +theme[free_end]="#fa8480" + +# Mem/Disk cached meter +theme[cached_start]="#a0d2c8" +theme[cached_mid]="#ffdc61" +theme[cached_end]="#fa8480" + +# Mem/Disk available meter +theme[available_start]="#a0d2c8" +theme[available_mid]="#ffdc61" +theme[available_end]="#fa8480" + +# Mem/Disk used meter +theme[used_start]="#a0d2c8" +theme[used_mid]="#ffdc61" +theme[used_end]="#fa8480" + +# Download graph colors +theme[download_start]="#a0d2c8" +theme[download_mid]="#ffdc61" +theme[download_end]="#fa8480" + +# Upload graph colors +theme[upload_start]="#a0d2c8" +theme[upload_mid]="#ffdc61" +theme[upload_end]="#fa8480" diff --git a/colors/base16-sakura.theme b/colors/base16-sakura.theme new file mode 100644 index 0000000..5e6149e --- /dev/null +++ b/colors/base16-sakura.theme @@ -0,0 +1,90 @@ +# +# +# name: Sakura +# author: Misterio77 (http://github.com/Misterio77) +# slug: sakura +# slug-underscored: sakura +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#feedf3" + +# Main text color +theme[main_fg]="#564448" + +# Title color for boxes +theme[title]="#564448" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#006e93" + +# Background color of selected item in processes box +theme[selected_bg]="#f8e2e7" + +# Foreground color of selected item in processes box +theme[selected_fg]="#564448" + +# Color of inactive/disabled text +theme[inactive_fg]="#665055" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#006e93" + +# Cpu box outline color +theme[cpu_box]="#665055" + +# Memory/disks box outline color +theme[mem_box]="#665055" + +# Net up/down box outline color +theme[net_box]="#665055" + +# Processes box outline color +theme[proc_box]="#665055" + +# Box divider line and small boxes line color +theme[div_line]="#665055" + +# Temperature graph colors +theme[temp_start]="#2e916d" +theme[temp_mid]="#c29461" +theme[temp_end]="#df2d52" + +# CPU graph colors +theme[cpu_start]="#2e916d" +theme[cpu_mid]="#c29461" +theme[cpu_end]="#df2d52" + +# Mem/Disk free meter +theme[free_start]="#2e916d" +theme[free_mid]="#c29461" +theme[free_end]="#df2d52" + +# Mem/Disk cached meter +theme[cached_start]="#2e916d" +theme[cached_mid]="#c29461" +theme[cached_end]="#df2d52" + +# Mem/Disk available meter +theme[available_start]="#2e916d" +theme[available_mid]="#c29461" +theme[available_end]="#df2d52" + +# Mem/Disk used meter +theme[used_start]="#2e916d" +theme[used_mid]="#c29461" +theme[used_end]="#df2d52" + +# Download graph colors +theme[download_start]="#2e916d" +theme[download_mid]="#c29461" +theme[download_end]="#df2d52" + +# Upload graph colors +theme[upload_start]="#2e916d" +theme[upload_mid]="#c29461" +theme[upload_end]="#df2d52" diff --git a/colors/base16-sandcastle.theme b/colors/base16-sandcastle.theme new file mode 100644 index 0000000..e005b70 --- /dev/null +++ b/colors/base16-sandcastle.theme @@ -0,0 +1,90 @@ +# +# +# name: Sandcastle +# author: George Essig (https://github.com/gessig) +# slug: sandcastle +# slug-underscored: sandcastle +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#282c34" + +# Main text color +theme[main_fg]="#a89984" + +# Title color for boxes +theme[title]="#a89984" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#83a598" + +# Background color of selected item in processes box +theme[selected_bg]="#2c323b" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a89984" + +# Color of inactive/disabled text +theme[inactive_fg]="#928374" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#83a598" + +# Cpu box outline color +theme[cpu_box]="#928374" + +# Memory/disks box outline color +theme[mem_box]="#928374" + +# Net up/down box outline color +theme[net_box]="#928374" + +# Processes box outline color +theme[proc_box]="#928374" + +# Box divider line and small boxes line color +theme[div_line]="#928374" + +# Temperature graph colors +theme[temp_start]="#528b8b" +theme[temp_mid]="#a07e3b" +theme[temp_end]="#83a598" + +# CPU graph colors +theme[cpu_start]="#528b8b" +theme[cpu_mid]="#a07e3b" +theme[cpu_end]="#83a598" + +# Mem/Disk free meter +theme[free_start]="#528b8b" +theme[free_mid]="#a07e3b" +theme[free_end]="#83a598" + +# Mem/Disk cached meter +theme[cached_start]="#528b8b" +theme[cached_mid]="#a07e3b" +theme[cached_end]="#83a598" + +# Mem/Disk available meter +theme[available_start]="#528b8b" +theme[available_mid]="#a07e3b" +theme[available_end]="#83a598" + +# Mem/Disk used meter +theme[used_start]="#528b8b" +theme[used_mid]="#a07e3b" +theme[used_end]="#83a598" + +# Download graph colors +theme[download_start]="#528b8b" +theme[download_mid]="#a07e3b" +theme[download_end]="#83a598" + +# Upload graph colors +theme[upload_start]="#528b8b" +theme[upload_mid]="#a07e3b" +theme[upload_end]="#83a598" diff --git a/colors/base16-selenized-black.theme b/colors/base16-selenized-black.theme new file mode 100644 index 0000000..2a2d23c --- /dev/null +++ b/colors/base16-selenized-black.theme @@ -0,0 +1,90 @@ +# +# +# name: selenized-black +# author: Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali +# slug: selenized-black +# slug-underscored: selenized_black +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#181818" + +# Main text color +theme[main_fg]="#b9b9b9" + +# Title color for boxes +theme[title]="#b9b9b9" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#368aeb" + +# Background color of selected item in processes box +theme[selected_bg]="#252525" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b9b9b9" + +# Color of inactive/disabled text +theme[inactive_fg]="#777777" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#368aeb" + +# Cpu box outline color +theme[cpu_box]="#777777" + +# Memory/disks box outline color +theme[mem_box]="#777777" + +# Net up/down box outline color +theme[net_box]="#777777" + +# Processes box outline color +theme[proc_box]="#777777" + +# Box divider line and small boxes line color +theme[div_line]="#777777" + +# Temperature graph colors +theme[temp_start]="#70b433" +theme[temp_mid]="#dbb32d" +theme[temp_end]="#ed4a46" + +# CPU graph colors +theme[cpu_start]="#70b433" +theme[cpu_mid]="#dbb32d" +theme[cpu_end]="#ed4a46" + +# Mem/Disk free meter +theme[free_start]="#70b433" +theme[free_mid]="#dbb32d" +theme[free_end]="#ed4a46" + +# Mem/Disk cached meter +theme[cached_start]="#70b433" +theme[cached_mid]="#dbb32d" +theme[cached_end]="#ed4a46" + +# Mem/Disk available meter +theme[available_start]="#70b433" +theme[available_mid]="#dbb32d" +theme[available_end]="#ed4a46" + +# Mem/Disk used meter +theme[used_start]="#70b433" +theme[used_mid]="#dbb32d" +theme[used_end]="#ed4a46" + +# Download graph colors +theme[download_start]="#70b433" +theme[download_mid]="#dbb32d" +theme[download_end]="#ed4a46" + +# Upload graph colors +theme[upload_start]="#70b433" +theme[upload_mid]="#dbb32d" +theme[upload_end]="#ed4a46" diff --git a/colors/base16-selenized-dark.theme b/colors/base16-selenized-dark.theme new file mode 100644 index 0000000..592020c --- /dev/null +++ b/colors/base16-selenized-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: selenized-dark +# author: Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali +# slug: selenized-dark +# slug-underscored: selenized_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#103c48" + +# Main text color +theme[main_fg]="#adbcbc" + +# Title color for boxes +theme[title]="#adbcbc" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#4695f7" + +# Background color of selected item in processes box +theme[selected_bg]="#184956" + +# Foreground color of selected item in processes box +theme[selected_fg]="#adbcbc" + +# Color of inactive/disabled text +theme[inactive_fg]="#72898f" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#4695f7" + +# Cpu box outline color +theme[cpu_box]="#72898f" + +# Memory/disks box outline color +theme[mem_box]="#72898f" + +# Net up/down box outline color +theme[net_box]="#72898f" + +# Processes box outline color +theme[proc_box]="#72898f" + +# Box divider line and small boxes line color +theme[div_line]="#72898f" + +# Temperature graph colors +theme[temp_start]="#75b938" +theme[temp_mid]="#dbb32d" +theme[temp_end]="#fa5750" + +# CPU graph colors +theme[cpu_start]="#75b938" +theme[cpu_mid]="#dbb32d" +theme[cpu_end]="#fa5750" + +# Mem/Disk free meter +theme[free_start]="#75b938" +theme[free_mid]="#dbb32d" +theme[free_end]="#fa5750" + +# Mem/Disk cached meter +theme[cached_start]="#75b938" +theme[cached_mid]="#dbb32d" +theme[cached_end]="#fa5750" + +# Mem/Disk available meter +theme[available_start]="#75b938" +theme[available_mid]="#dbb32d" +theme[available_end]="#fa5750" + +# Mem/Disk used meter +theme[used_start]="#75b938" +theme[used_mid]="#dbb32d" +theme[used_end]="#fa5750" + +# Download graph colors +theme[download_start]="#75b938" +theme[download_mid]="#dbb32d" +theme[download_end]="#fa5750" + +# Upload graph colors +theme[upload_start]="#75b938" +theme[upload_mid]="#dbb32d" +theme[upload_end]="#fa5750" diff --git a/colors/base16-selenized-light.theme b/colors/base16-selenized-light.theme new file mode 100644 index 0000000..5bd1652 --- /dev/null +++ b/colors/base16-selenized-light.theme @@ -0,0 +1,90 @@ +# +# +# name: selenized-light +# author: Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali +# slug: selenized-light +# slug-underscored: selenized_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fbf3db" + +# Main text color +theme[main_fg]="#53676d" + +# Title color for boxes +theme[title]="#53676d" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#006dce" + +# Background color of selected item in processes box +theme[selected_bg]="#ece3cc" + +# Foreground color of selected item in processes box +theme[selected_fg]="#53676d" + +# Color of inactive/disabled text +theme[inactive_fg]="#909995" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#006dce" + +# Cpu box outline color +theme[cpu_box]="#909995" + +# Memory/disks box outline color +theme[mem_box]="#909995" + +# Net up/down box outline color +theme[net_box]="#909995" + +# Processes box outline color +theme[proc_box]="#909995" + +# Box divider line and small boxes line color +theme[div_line]="#909995" + +# Temperature graph colors +theme[temp_start]="#428b00" +theme[temp_mid]="#a78300" +theme[temp_end]="#cc1729" + +# CPU graph colors +theme[cpu_start]="#428b00" +theme[cpu_mid]="#a78300" +theme[cpu_end]="#cc1729" + +# Mem/Disk free meter +theme[free_start]="#428b00" +theme[free_mid]="#a78300" +theme[free_end]="#cc1729" + +# Mem/Disk cached meter +theme[cached_start]="#428b00" +theme[cached_mid]="#a78300" +theme[cached_end]="#cc1729" + +# Mem/Disk available meter +theme[available_start]="#428b00" +theme[available_mid]="#a78300" +theme[available_end]="#cc1729" + +# Mem/Disk used meter +theme[used_start]="#428b00" +theme[used_mid]="#a78300" +theme[used_end]="#cc1729" + +# Download graph colors +theme[download_start]="#428b00" +theme[download_mid]="#a78300" +theme[download_end]="#cc1729" + +# Upload graph colors +theme[upload_start]="#428b00" +theme[upload_mid]="#a78300" +theme[upload_end]="#cc1729" diff --git a/colors/base16-selenized-white.theme b/colors/base16-selenized-white.theme new file mode 100644 index 0000000..60c4bbb --- /dev/null +++ b/colors/base16-selenized-white.theme @@ -0,0 +1,90 @@ +# +# +# name: selenized-white +# author: Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali +# slug: selenized-white +# slug-underscored: selenized_white +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ffffff" + +# Main text color +theme[main_fg]="#474747" + +# Title color for boxes +theme[title]="#474747" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0054cf" + +# Background color of selected item in processes box +theme[selected_bg]="#ebebeb" + +# Foreground color of selected item in processes box +theme[selected_fg]="#474747" + +# Color of inactive/disabled text +theme[inactive_fg]="#878787" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0054cf" + +# Cpu box outline color +theme[cpu_box]="#878787" + +# Memory/disks box outline color +theme[mem_box]="#878787" + +# Net up/down box outline color +theme[net_box]="#878787" + +# Processes box outline color +theme[proc_box]="#878787" + +# Box divider line and small boxes line color +theme[div_line]="#878787" + +# Temperature graph colors +theme[temp_start]="#008400" +theme[temp_mid]="#af8500" +theme[temp_end]="#bf0000" + +# CPU graph colors +theme[cpu_start]="#008400" +theme[cpu_mid]="#af8500" +theme[cpu_end]="#bf0000" + +# Mem/Disk free meter +theme[free_start]="#008400" +theme[free_mid]="#af8500" +theme[free_end]="#bf0000" + +# Mem/Disk cached meter +theme[cached_start]="#008400" +theme[cached_mid]="#af8500" +theme[cached_end]="#bf0000" + +# Mem/Disk available meter +theme[available_start]="#008400" +theme[available_mid]="#af8500" +theme[available_end]="#bf0000" + +# Mem/Disk used meter +theme[used_start]="#008400" +theme[used_mid]="#af8500" +theme[used_end]="#bf0000" + +# Download graph colors +theme[download_start]="#008400" +theme[download_mid]="#af8500" +theme[download_end]="#bf0000" + +# Upload graph colors +theme[upload_start]="#008400" +theme[upload_mid]="#af8500" +theme[upload_end]="#bf0000" diff --git a/colors/base16-seti.theme b/colors/base16-seti.theme new file mode 100644 index 0000000..e76572d --- /dev/null +++ b/colors/base16-seti.theme @@ -0,0 +1,90 @@ +# +# +# name: Seti UI +# author: +# slug: seti +# slug-underscored: seti +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#151718" + +# Main text color +theme[main_fg]="#d6d6d6" + +# Title color for boxes +theme[title]="#d6d6d6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#55b5db" + +# Background color of selected item in processes box +theme[selected_bg]="#282a2b" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d6d6d6" + +# Color of inactive/disabled text +theme[inactive_fg]="#43a5d5" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#55b5db" + +# Cpu box outline color +theme[cpu_box]="#43a5d5" + +# Memory/disks box outline color +theme[mem_box]="#43a5d5" + +# Net up/down box outline color +theme[net_box]="#43a5d5" + +# Processes box outline color +theme[proc_box]="#43a5d5" + +# Box divider line and small boxes line color +theme[div_line]="#43a5d5" + +# Temperature graph colors +theme[temp_start]="#9fca56" +theme[temp_mid]="#e6cd69" +theme[temp_end]="#Cd3f45" + +# CPU graph colors +theme[cpu_start]="#9fca56" +theme[cpu_mid]="#e6cd69" +theme[cpu_end]="#Cd3f45" + +# Mem/Disk free meter +theme[free_start]="#9fca56" +theme[free_mid]="#e6cd69" +theme[free_end]="#Cd3f45" + +# Mem/Disk cached meter +theme[cached_start]="#9fca56" +theme[cached_mid]="#e6cd69" +theme[cached_end]="#Cd3f45" + +# Mem/Disk available meter +theme[available_start]="#9fca56" +theme[available_mid]="#e6cd69" +theme[available_end]="#Cd3f45" + +# Mem/Disk used meter +theme[used_start]="#9fca56" +theme[used_mid]="#e6cd69" +theme[used_end]="#Cd3f45" + +# Download graph colors +theme[download_start]="#9fca56" +theme[download_mid]="#e6cd69" +theme[download_end]="#Cd3f45" + +# Upload graph colors +theme[upload_start]="#9fca56" +theme[upload_mid]="#e6cd69" +theme[upload_end]="#Cd3f45" diff --git a/colors/base16-shades-of-purple.theme b/colors/base16-shades-of-purple.theme new file mode 100644 index 0000000..36b832d --- /dev/null +++ b/colors/base16-shades-of-purple.theme @@ -0,0 +1,90 @@ +# +# +# name: Shades of Purple +# author: Iolar Demartini Junior (http://github.com/demartini), based on Shades of Purple Theme (https://github.com/ahmadawais/shades-of-purple-vscode) +# slug: shades-of-purple +# slug-underscored: shades_of_purple +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1e1e3f" + +# Main text color +theme[main_fg]="#c7c7c7" + +# Title color for boxes +theme[title]="#c7c7c7" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6943ff" + +# Background color of selected item in processes box +theme[selected_bg]="#43d426" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c7c7c7" + +# Color of inactive/disabled text +theme[inactive_fg]="#6871ff" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6943ff" + +# Cpu box outline color +theme[cpu_box]="#6871ff" + +# Memory/disks box outline color +theme[mem_box]="#6871ff" + +# Net up/down box outline color +theme[net_box]="#6871ff" + +# Processes box outline color +theme[proc_box]="#6871ff" + +# Box divider line and small boxes line color +theme[div_line]="#6871ff" + +# Temperature graph colors +theme[temp_start]="#3ad900" +theme[temp_mid]="#ffe700" +theme[temp_end]="#d90429" + +# CPU graph colors +theme[cpu_start]="#3ad900" +theme[cpu_mid]="#ffe700" +theme[cpu_end]="#d90429" + +# Mem/Disk free meter +theme[free_start]="#3ad900" +theme[free_mid]="#ffe700" +theme[free_end]="#d90429" + +# Mem/Disk cached meter +theme[cached_start]="#3ad900" +theme[cached_mid]="#ffe700" +theme[cached_end]="#d90429" + +# Mem/Disk available meter +theme[available_start]="#3ad900" +theme[available_mid]="#ffe700" +theme[available_end]="#d90429" + +# Mem/Disk used meter +theme[used_start]="#3ad900" +theme[used_mid]="#ffe700" +theme[used_end]="#d90429" + +# Download graph colors +theme[download_start]="#3ad900" +theme[download_mid]="#ffe700" +theme[download_end]="#d90429" + +# Upload graph colors +theme[upload_start]="#3ad900" +theme[upload_mid]="#ffe700" +theme[upload_end]="#d90429" diff --git a/colors/base16-shadesmear-dark.theme b/colors/base16-shadesmear-dark.theme new file mode 100644 index 0000000..db9900b --- /dev/null +++ b/colors/base16-shadesmear-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: ShadeSmear Dark +# author: Kyle Giammarco (http://kyle.giammar.co) +# slug: shadesmear-dark +# slug-underscored: shadesmear_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#232323" + +# Main text color +theme[main_fg]="#DBDBDB" + +# Title color for boxes +theme[title]="#DBDBDB" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#376388" + +# Background color of selected item in processes box +theme[selected_bg]="#1C1C1C" + +# Foreground color of selected item in processes box +theme[selected_fg]="#DBDBDB" + +# Color of inactive/disabled text +theme[inactive_fg]="#E4E4E4" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#376388" + +# Cpu box outline color +theme[cpu_box]="#E4E4E4" + +# Memory/disks box outline color +theme[mem_box]="#E4E4E4" + +# Net up/down box outline color +theme[net_box]="#E4E4E4" + +# Processes box outline color +theme[proc_box]="#E4E4E4" + +# Box divider line and small boxes line color +theme[div_line]="#E4E4E4" + +# Temperature graph colors +theme[temp_start]="#71983B" +theme[temp_mid]="#307878" +theme[temp_end]="#CC5450" + +# CPU graph colors +theme[cpu_start]="#71983B" +theme[cpu_mid]="#307878" +theme[cpu_end]="#CC5450" + +# Mem/Disk free meter +theme[free_start]="#71983B" +theme[free_mid]="#307878" +theme[free_end]="#CC5450" + +# Mem/Disk cached meter +theme[cached_start]="#71983B" +theme[cached_mid]="#307878" +theme[cached_end]="#CC5450" + +# Mem/Disk available meter +theme[available_start]="#71983B" +theme[available_mid]="#307878" +theme[available_end]="#CC5450" + +# Mem/Disk used meter +theme[used_start]="#71983B" +theme[used_mid]="#307878" +theme[used_end]="#CC5450" + +# Download graph colors +theme[download_start]="#71983B" +theme[download_mid]="#307878" +theme[download_end]="#CC5450" + +# Upload graph colors +theme[upload_start]="#71983B" +theme[upload_mid]="#307878" +theme[upload_end]="#CC5450" diff --git a/colors/base16-shadesmear-light.theme b/colors/base16-shadesmear-light.theme new file mode 100644 index 0000000..3214aff --- /dev/null +++ b/colors/base16-shadesmear-light.theme @@ -0,0 +1,90 @@ +# +# +# name: ShadeSmear Light +# author: Kyle Giammarco (http://kyle.giammar.co) +# slug: shadesmear-light +# slug-underscored: shadesmear_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#DBDBDB" + +# Main text color +theme[main_fg]="#232323" + +# Title color for boxes +theme[title]="#232323" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#376388" + +# Background color of selected item in processes box +theme[selected_bg]="#E4E4E4" + +# Foreground color of selected item in processes box +theme[selected_fg]="#232323" + +# Color of inactive/disabled text +theme[inactive_fg]="#1C1C1C" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#376388" + +# Cpu box outline color +theme[cpu_box]="#1C1C1C" + +# Memory/disks box outline color +theme[mem_box]="#1C1C1C" + +# Net up/down box outline color +theme[net_box]="#1C1C1C" + +# Processes box outline color +theme[proc_box]="#1C1C1C" + +# Box divider line and small boxes line color +theme[div_line]="#1C1C1C" + +# Temperature graph colors +theme[temp_start]="#71983B" +theme[temp_mid]="#307878" +theme[temp_end]="#CC5450" + +# CPU graph colors +theme[cpu_start]="#71983B" +theme[cpu_mid]="#307878" +theme[cpu_end]="#CC5450" + +# Mem/Disk free meter +theme[free_start]="#71983B" +theme[free_mid]="#307878" +theme[free_end]="#CC5450" + +# Mem/Disk cached meter +theme[cached_start]="#71983B" +theme[cached_mid]="#307878" +theme[cached_end]="#CC5450" + +# Mem/Disk available meter +theme[available_start]="#71983B" +theme[available_mid]="#307878" +theme[available_end]="#CC5450" + +# Mem/Disk used meter +theme[used_start]="#71983B" +theme[used_mid]="#307878" +theme[used_end]="#CC5450" + +# Download graph colors +theme[download_start]="#71983B" +theme[download_mid]="#307878" +theme[download_end]="#CC5450" + +# Upload graph colors +theme[upload_start]="#71983B" +theme[upload_mid]="#307878" +theme[upload_end]="#CC5450" diff --git a/colors/base16-shapeshifter.theme b/colors/base16-shapeshifter.theme new file mode 100644 index 0000000..42a4a6d --- /dev/null +++ b/colors/base16-shapeshifter.theme @@ -0,0 +1,90 @@ +# +# +# name: Shapeshifter +# author: Tyler Benziger (http://tybenz.com) +# slug: shapeshifter +# slug-underscored: shapeshifter +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f9f9f9" + +# Main text color +theme[main_fg]="#102015" + +# Title color for boxes +theme[title]="#102015" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3b48e3" + +# Background color of selected item in processes box +theme[selected_bg]="#e0e0e0" + +# Foreground color of selected item in processes box +theme[selected_fg]="#102015" + +# Color of inactive/disabled text +theme[inactive_fg]="#343434" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3b48e3" + +# Cpu box outline color +theme[cpu_box]="#343434" + +# Memory/disks box outline color +theme[mem_box]="#343434" + +# Net up/down box outline color +theme[net_box]="#343434" + +# Processes box outline color +theme[proc_box]="#343434" + +# Box divider line and small boxes line color +theme[div_line]="#343434" + +# Temperature graph colors +theme[temp_start]="#0ed839" +theme[temp_mid]="#dddd13" +theme[temp_end]="#e92f2f" + +# CPU graph colors +theme[cpu_start]="#0ed839" +theme[cpu_mid]="#dddd13" +theme[cpu_end]="#e92f2f" + +# Mem/Disk free meter +theme[free_start]="#0ed839" +theme[free_mid]="#dddd13" +theme[free_end]="#e92f2f" + +# Mem/Disk cached meter +theme[cached_start]="#0ed839" +theme[cached_mid]="#dddd13" +theme[cached_end]="#e92f2f" + +# Mem/Disk available meter +theme[available_start]="#0ed839" +theme[available_mid]="#dddd13" +theme[available_end]="#e92f2f" + +# Mem/Disk used meter +theme[used_start]="#0ed839" +theme[used_mid]="#dddd13" +theme[used_end]="#e92f2f" + +# Download graph colors +theme[download_start]="#0ed839" +theme[download_mid]="#dddd13" +theme[download_end]="#e92f2f" + +# Upload graph colors +theme[upload_start]="#0ed839" +theme[upload_mid]="#dddd13" +theme[upload_end]="#e92f2f" diff --git a/colors/base16-silk-dark.theme b/colors/base16-silk-dark.theme new file mode 100644 index 0000000..edfb099 --- /dev/null +++ b/colors/base16-silk-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Silk Dark +# author: Gabriel Fontes (https://github.com/Misterio77) +# slug: silk-dark +# slug-underscored: silk_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#0e3c46" + +# Main text color +theme[main_fg]="#C7DBDD" + +# Title color for boxes +theme[title]="#C7DBDD" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#46bddd" + +# Background color of selected item in processes box +theme[selected_bg]="#1D494E" + +# Foreground color of selected item in processes box +theme[selected_fg]="#C7DBDD" + +# Color of inactive/disabled text +theme[inactive_fg]="#9DC8CD" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#46bddd" + +# Cpu box outline color +theme[cpu_box]="#9DC8CD" + +# Memory/disks box outline color +theme[mem_box]="#9DC8CD" + +# Net up/down box outline color +theme[net_box]="#9DC8CD" + +# Processes box outline color +theme[proc_box]="#9DC8CD" + +# Box divider line and small boxes line color +theme[div_line]="#9DC8CD" + +# Temperature graph colors +theme[temp_start]="#73d8ad" +theme[temp_mid]="#fce380" +theme[temp_end]="#fb6953" + +# CPU graph colors +theme[cpu_start]="#73d8ad" +theme[cpu_mid]="#fce380" +theme[cpu_end]="#fb6953" + +# Mem/Disk free meter +theme[free_start]="#73d8ad" +theme[free_mid]="#fce380" +theme[free_end]="#fb6953" + +# Mem/Disk cached meter +theme[cached_start]="#73d8ad" +theme[cached_mid]="#fce380" +theme[cached_end]="#fb6953" + +# Mem/Disk available meter +theme[available_start]="#73d8ad" +theme[available_mid]="#fce380" +theme[available_end]="#fb6953" + +# Mem/Disk used meter +theme[used_start]="#73d8ad" +theme[used_mid]="#fce380" +theme[used_end]="#fb6953" + +# Download graph colors +theme[download_start]="#73d8ad" +theme[download_mid]="#fce380" +theme[download_end]="#fb6953" + +# Upload graph colors +theme[upload_start]="#73d8ad" +theme[upload_mid]="#fce380" +theme[upload_end]="#fb6953" diff --git a/colors/base16-silk-light.theme b/colors/base16-silk-light.theme new file mode 100644 index 0000000..8689af2 --- /dev/null +++ b/colors/base16-silk-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Silk Light +# author: Gabriel Fontes (https://github.com/Misterio77) +# slug: silk-light +# slug-underscored: silk_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#E9F1EF" + +# Main text color +theme[main_fg]="#385156" + +# Title color for boxes +theme[title]="#385156" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#39AAC9" + +# Background color of selected item in processes box +theme[selected_bg]="#CCD4D3" + +# Foreground color of selected item in processes box +theme[selected_fg]="#385156" + +# Color of inactive/disabled text +theme[inactive_fg]="#4B5B5F" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#39AAC9" + +# Cpu box outline color +theme[cpu_box]="#4B5B5F" + +# Memory/disks box outline color +theme[mem_box]="#4B5B5F" + +# Net up/down box outline color +theme[net_box]="#4B5B5F" + +# Processes box outline color +theme[proc_box]="#4B5B5F" + +# Box divider line and small boxes line color +theme[div_line]="#4B5B5F" + +# Temperature graph colors +theme[temp_start]="#6CA38C" +theme[temp_mid]="#CFAD25" +theme[temp_end]="#CF432E" + +# CPU graph colors +theme[cpu_start]="#6CA38C" +theme[cpu_mid]="#CFAD25" +theme[cpu_end]="#CF432E" + +# Mem/Disk free meter +theme[free_start]="#6CA38C" +theme[free_mid]="#CFAD25" +theme[free_end]="#CF432E" + +# Mem/Disk cached meter +theme[cached_start]="#6CA38C" +theme[cached_mid]="#CFAD25" +theme[cached_end]="#CF432E" + +# Mem/Disk available meter +theme[available_start]="#6CA38C" +theme[available_mid]="#CFAD25" +theme[available_end]="#CF432E" + +# Mem/Disk used meter +theme[used_start]="#6CA38C" +theme[used_mid]="#CFAD25" +theme[used_end]="#CF432E" + +# Download graph colors +theme[download_start]="#6CA38C" +theme[download_mid]="#CFAD25" +theme[download_end]="#CF432E" + +# Upload graph colors +theme[upload_start]="#6CA38C" +theme[upload_mid]="#CFAD25" +theme[upload_end]="#CF432E" diff --git a/colors/base16-snazzy.theme b/colors/base16-snazzy.theme new file mode 100644 index 0000000..f94a19e --- /dev/null +++ b/colors/base16-snazzy.theme @@ -0,0 +1,90 @@ +# +# +# name: Snazzy +# author: Chawye Hsu (https://github.com/chawyehsu), based on Hyper Snazzy Theme (https://github.com/sindresorhus/hyper-snazzy) +# slug: snazzy +# slug-underscored: snazzy +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#282a36" + +# Main text color +theme[main_fg]="#e2e4e5" + +# Title color for boxes +theme[title]="#e2e4e5" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#57c7ff" + +# Background color of selected item in processes box +theme[selected_bg]="#34353e" + +# Foreground color of selected item in processes box +theme[selected_fg]="#e2e4e5" + +# Color of inactive/disabled text +theme[inactive_fg]="#a5a5a9" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#57c7ff" + +# Cpu box outline color +theme[cpu_box]="#a5a5a9" + +# Memory/disks box outline color +theme[mem_box]="#a5a5a9" + +# Net up/down box outline color +theme[net_box]="#a5a5a9" + +# Processes box outline color +theme[proc_box]="#a5a5a9" + +# Box divider line and small boxes line color +theme[div_line]="#a5a5a9" + +# Temperature graph colors +theme[temp_start]="#5af78e" +theme[temp_mid]="#f3f99d" +theme[temp_end]="#ff5c57" + +# CPU graph colors +theme[cpu_start]="#5af78e" +theme[cpu_mid]="#f3f99d" +theme[cpu_end]="#ff5c57" + +# Mem/Disk free meter +theme[free_start]="#5af78e" +theme[free_mid]="#f3f99d" +theme[free_end]="#ff5c57" + +# Mem/Disk cached meter +theme[cached_start]="#5af78e" +theme[cached_mid]="#f3f99d" +theme[cached_end]="#ff5c57" + +# Mem/Disk available meter +theme[available_start]="#5af78e" +theme[available_mid]="#f3f99d" +theme[available_end]="#ff5c57" + +# Mem/Disk used meter +theme[used_start]="#5af78e" +theme[used_mid]="#f3f99d" +theme[used_end]="#ff5c57" + +# Download graph colors +theme[download_start]="#5af78e" +theme[download_mid]="#f3f99d" +theme[download_end]="#ff5c57" + +# Upload graph colors +theme[upload_start]="#5af78e" +theme[upload_mid]="#f3f99d" +theme[upload_end]="#ff5c57" diff --git a/colors/base16-solarflare-light.theme b/colors/base16-solarflare-light.theme new file mode 100644 index 0000000..a0fb3d2 --- /dev/null +++ b/colors/base16-solarflare-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Solar Flare Light +# author: Chuck Harmston (https://chuck.harmston.ch) +# slug: solarflare-light +# slug-underscored: solarflare_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#F5F7FA" + +# Main text color +theme[main_fg]="#586875" + +# Title color for boxes +theme[title]="#586875" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#33B5E1" + +# Background color of selected item in processes box +theme[selected_bg]="#E8E9ED" + +# Foreground color of selected item in processes box +theme[selected_fg]="#586875" + +# Color of inactive/disabled text +theme[inactive_fg]="#667581" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#33B5E1" + +# Cpu box outline color +theme[cpu_box]="#667581" + +# Memory/disks box outline color +theme[mem_box]="#667581" + +# Net up/down box outline color +theme[net_box]="#667581" + +# Processes box outline color +theme[proc_box]="#667581" + +# Box divider line and small boxes line color +theme[div_line]="#667581" + +# Temperature graph colors +theme[temp_start]="#7CC844" +theme[temp_mid]="#E4B51C" +theme[temp_end]="#EF5253" + +# CPU graph colors +theme[cpu_start]="#7CC844" +theme[cpu_mid]="#E4B51C" +theme[cpu_end]="#EF5253" + +# Mem/Disk free meter +theme[free_start]="#7CC844" +theme[free_mid]="#E4B51C" +theme[free_end]="#EF5253" + +# Mem/Disk cached meter +theme[cached_start]="#7CC844" +theme[cached_mid]="#E4B51C" +theme[cached_end]="#EF5253" + +# Mem/Disk available meter +theme[available_start]="#7CC844" +theme[available_mid]="#E4B51C" +theme[available_end]="#EF5253" + +# Mem/Disk used meter +theme[used_start]="#7CC844" +theme[used_mid]="#E4B51C" +theme[used_end]="#EF5253" + +# Download graph colors +theme[download_start]="#7CC844" +theme[download_mid]="#E4B51C" +theme[download_end]="#EF5253" + +# Upload graph colors +theme[upload_start]="#7CC844" +theme[upload_mid]="#E4B51C" +theme[upload_end]="#EF5253" diff --git a/colors/base16-solarflare.theme b/colors/base16-solarflare.theme new file mode 100644 index 0000000..68bf726 --- /dev/null +++ b/colors/base16-solarflare.theme @@ -0,0 +1,90 @@ +# +# +# name: Solar Flare +# author: Chuck Harmston (https://chuck.harmston.ch) +# slug: solarflare +# slug-underscored: solarflare +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#18262F" + +# Main text color +theme[main_fg]="#A6AFB8" + +# Title color for boxes +theme[title]="#A6AFB8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#33B5E1" + +# Background color of selected item in processes box +theme[selected_bg]="#222E38" + +# Foreground color of selected item in processes box +theme[selected_fg]="#A6AFB8" + +# Color of inactive/disabled text +theme[inactive_fg]="#85939E" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#33B5E1" + +# Cpu box outline color +theme[cpu_box]="#85939E" + +# Memory/disks box outline color +theme[mem_box]="#85939E" + +# Net up/down box outline color +theme[net_box]="#85939E" + +# Processes box outline color +theme[proc_box]="#85939E" + +# Box divider line and small boxes line color +theme[div_line]="#85939E" + +# Temperature graph colors +theme[temp_start]="#7CC844" +theme[temp_mid]="#E4B51C" +theme[temp_end]="#EF5253" + +# CPU graph colors +theme[cpu_start]="#7CC844" +theme[cpu_mid]="#E4B51C" +theme[cpu_end]="#EF5253" + +# Mem/Disk free meter +theme[free_start]="#7CC844" +theme[free_mid]="#E4B51C" +theme[free_end]="#EF5253" + +# Mem/Disk cached meter +theme[cached_start]="#7CC844" +theme[cached_mid]="#E4B51C" +theme[cached_end]="#EF5253" + +# Mem/Disk available meter +theme[available_start]="#7CC844" +theme[available_mid]="#E4B51C" +theme[available_end]="#EF5253" + +# Mem/Disk used meter +theme[used_start]="#7CC844" +theme[used_mid]="#E4B51C" +theme[used_end]="#EF5253" + +# Download graph colors +theme[download_start]="#7CC844" +theme[download_mid]="#E4B51C" +theme[download_end]="#EF5253" + +# Upload graph colors +theme[upload_start]="#7CC844" +theme[upload_mid]="#E4B51C" +theme[upload_end]="#EF5253" diff --git a/colors/base16-solarized-dark.theme b/colors/base16-solarized-dark.theme new file mode 100644 index 0000000..1ce7748 --- /dev/null +++ b/colors/base16-solarized-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Solarized Dark +# author: Ethan Schoonover (modified by aramisgithub) +# slug: solarized-dark +# slug-underscored: solarized_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#002b36" + +# Main text color +theme[main_fg]="#93a1a1" + +# Title color for boxes +theme[title]="#93a1a1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#268bd2" + +# Background color of selected item in processes box +theme[selected_bg]="#073642" + +# Foreground color of selected item in processes box +theme[selected_fg]="#93a1a1" + +# Color of inactive/disabled text +theme[inactive_fg]="#839496" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#268bd2" + +# Cpu box outline color +theme[cpu_box]="#839496" + +# Memory/disks box outline color +theme[mem_box]="#839496" + +# Net up/down box outline color +theme[net_box]="#839496" + +# Processes box outline color +theme[proc_box]="#839496" + +# Box divider line and small boxes line color +theme[div_line]="#839496" + +# Temperature graph colors +theme[temp_start]="#859900" +theme[temp_mid]="#b58900" +theme[temp_end]="#dc322f" + +# CPU graph colors +theme[cpu_start]="#859900" +theme[cpu_mid]="#b58900" +theme[cpu_end]="#dc322f" + +# Mem/Disk free meter +theme[free_start]="#859900" +theme[free_mid]="#b58900" +theme[free_end]="#dc322f" + +# Mem/Disk cached meter +theme[cached_start]="#859900" +theme[cached_mid]="#b58900" +theme[cached_end]="#dc322f" + +# Mem/Disk available meter +theme[available_start]="#859900" +theme[available_mid]="#b58900" +theme[available_end]="#dc322f" + +# Mem/Disk used meter +theme[used_start]="#859900" +theme[used_mid]="#b58900" +theme[used_end]="#dc322f" + +# Download graph colors +theme[download_start]="#859900" +theme[download_mid]="#b58900" +theme[download_end]="#dc322f" + +# Upload graph colors +theme[upload_start]="#859900" +theme[upload_mid]="#b58900" +theme[upload_end]="#dc322f" diff --git a/colors/base16-solarized-light.theme b/colors/base16-solarized-light.theme new file mode 100644 index 0000000..1cf5c30 --- /dev/null +++ b/colors/base16-solarized-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Solarized Light +# author: Ethan Schoonover (modified by aramisgithub) +# slug: solarized-light +# slug-underscored: solarized_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fdf6e3" + +# Main text color +theme[main_fg]="#586e75" + +# Title color for boxes +theme[title]="#586e75" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#268bd2" + +# Background color of selected item in processes box +theme[selected_bg]="#eee8d5" + +# Foreground color of selected item in processes box +theme[selected_fg]="#586e75" + +# Color of inactive/disabled text +theme[inactive_fg]="#657b83" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#268bd2" + +# Cpu box outline color +theme[cpu_box]="#657b83" + +# Memory/disks box outline color +theme[mem_box]="#657b83" + +# Net up/down box outline color +theme[net_box]="#657b83" + +# Processes box outline color +theme[proc_box]="#657b83" + +# Box divider line and small boxes line color +theme[div_line]="#657b83" + +# Temperature graph colors +theme[temp_start]="#859900" +theme[temp_mid]="#b58900" +theme[temp_end]="#dc322f" + +# CPU graph colors +theme[cpu_start]="#859900" +theme[cpu_mid]="#b58900" +theme[cpu_end]="#dc322f" + +# Mem/Disk free meter +theme[free_start]="#859900" +theme[free_mid]="#b58900" +theme[free_end]="#dc322f" + +# Mem/Disk cached meter +theme[cached_start]="#859900" +theme[cached_mid]="#b58900" +theme[cached_end]="#dc322f" + +# Mem/Disk available meter +theme[available_start]="#859900" +theme[available_mid]="#b58900" +theme[available_end]="#dc322f" + +# Mem/Disk used meter +theme[used_start]="#859900" +theme[used_mid]="#b58900" +theme[used_end]="#dc322f" + +# Download graph colors +theme[download_start]="#859900" +theme[download_mid]="#b58900" +theme[download_end]="#dc322f" + +# Upload graph colors +theme[upload_start]="#859900" +theme[upload_mid]="#b58900" +theme[upload_end]="#dc322f" diff --git a/colors/base16-spaceduck.theme b/colors/base16-spaceduck.theme new file mode 100644 index 0000000..3c3f0e3 --- /dev/null +++ b/colors/base16-spaceduck.theme @@ -0,0 +1,90 @@ +# +# +# name: Spaceduck +# author: Guillermo Rodriguez (https://github.com/pineapplegiant), packaged by Gabriel Fontes (https://github.com/Misterio77) +# slug: spaceduck +# slug-underscored: spaceduck +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#16172d" + +# Main text color +theme[main_fg]="#ecf0c1" + +# Title color for boxes +theme[title]="#ecf0c1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7a5ccc" + +# Background color of selected item in processes box +theme[selected_bg]="#1b1c36" + +# Foreground color of selected item in processes box +theme[selected_fg]="#ecf0c1" + +# Color of inactive/disabled text +theme[inactive_fg]="#818596" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7a5ccc" + +# Cpu box outline color +theme[cpu_box]="#818596" + +# Memory/disks box outline color +theme[mem_box]="#818596" + +# Net up/down box outline color +theme[net_box]="#818596" + +# Processes box outline color +theme[proc_box]="#818596" + +# Box divider line and small boxes line color +theme[div_line]="#818596" + +# Temperature graph colors +theme[temp_start]="#5ccc96" +theme[temp_mid]="#f2ce00" +theme[temp_end]="#e33400" + +# CPU graph colors +theme[cpu_start]="#5ccc96" +theme[cpu_mid]="#f2ce00" +theme[cpu_end]="#e33400" + +# Mem/Disk free meter +theme[free_start]="#5ccc96" +theme[free_mid]="#f2ce00" +theme[free_end]="#e33400" + +# Mem/Disk cached meter +theme[cached_start]="#5ccc96" +theme[cached_mid]="#f2ce00" +theme[cached_end]="#e33400" + +# Mem/Disk available meter +theme[available_start]="#5ccc96" +theme[available_mid]="#f2ce00" +theme[available_end]="#e33400" + +# Mem/Disk used meter +theme[used_start]="#5ccc96" +theme[used_mid]="#f2ce00" +theme[used_end]="#e33400" + +# Download graph colors +theme[download_start]="#5ccc96" +theme[download_mid]="#f2ce00" +theme[download_end]="#e33400" + +# Upload graph colors +theme[upload_start]="#5ccc96" +theme[upload_mid]="#f2ce00" +theme[upload_end]="#e33400" diff --git a/colors/base16-spacemacs.theme b/colors/base16-spacemacs.theme new file mode 100644 index 0000000..e7029f0 --- /dev/null +++ b/colors/base16-spacemacs.theme @@ -0,0 +1,90 @@ +# +# +# name: Spacemacs +# author: Nasser Alshammari (https://github.com/nashamri/spacemacs-theme) +# slug: spacemacs +# slug-underscored: spacemacs +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1f2022" + +# Main text color +theme[main_fg]="#a3a3a3" + +# Title color for boxes +theme[title]="#a3a3a3" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#4f97d7" + +# Background color of selected item in processes box +theme[selected_bg]="#282828" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a3a3a3" + +# Color of inactive/disabled text +theme[inactive_fg]="#b8b8b8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#4f97d7" + +# Cpu box outline color +theme[cpu_box]="#b8b8b8" + +# Memory/disks box outline color +theme[mem_box]="#b8b8b8" + +# Net up/down box outline color +theme[net_box]="#b8b8b8" + +# Processes box outline color +theme[proc_box]="#b8b8b8" + +# Box divider line and small boxes line color +theme[div_line]="#b8b8b8" + +# Temperature graph colors +theme[temp_start]="#67b11d" +theme[temp_mid]="#b1951d" +theme[temp_end]="#f2241f" + +# CPU graph colors +theme[cpu_start]="#67b11d" +theme[cpu_mid]="#b1951d" +theme[cpu_end]="#f2241f" + +# Mem/Disk free meter +theme[free_start]="#67b11d" +theme[free_mid]="#b1951d" +theme[free_end]="#f2241f" + +# Mem/Disk cached meter +theme[cached_start]="#67b11d" +theme[cached_mid]="#b1951d" +theme[cached_end]="#f2241f" + +# Mem/Disk available meter +theme[available_start]="#67b11d" +theme[available_mid]="#b1951d" +theme[available_end]="#f2241f" + +# Mem/Disk used meter +theme[used_start]="#67b11d" +theme[used_mid]="#b1951d" +theme[used_end]="#f2241f" + +# Download graph colors +theme[download_start]="#67b11d" +theme[download_mid]="#b1951d" +theme[download_end]="#f2241f" + +# Upload graph colors +theme[upload_start]="#67b11d" +theme[upload_mid]="#b1951d" +theme[upload_end]="#f2241f" diff --git a/colors/base16-sparky.theme b/colors/base16-sparky.theme new file mode 100644 index 0000000..49c56e9 --- /dev/null +++ b/colors/base16-sparky.theme @@ -0,0 +1,90 @@ +# +# +# name: Sparky +# author: Leila Sother (https://github.com/mixcoac) +# slug: sparky +# slug-underscored: sparky +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#072B31" + +# Main text color +theme[main_fg]="#F4F5F0" + +# Title color for boxes +theme[title]="#F4F5F0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#4698CB" + +# Background color of selected item in processes box +theme[selected_bg]="#00313C" + +# Foreground color of selected item in processes box +theme[selected_fg]="#F4F5F0" + +# Color of inactive/disabled text +theme[inactive_fg]="#00778B" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#4698CB" + +# Cpu box outline color +theme[cpu_box]="#00778B" + +# Memory/disks box outline color +theme[mem_box]="#00778B" + +# Net up/down box outline color +theme[net_box]="#00778B" + +# Processes box outline color +theme[proc_box]="#00778B" + +# Box divider line and small boxes line color +theme[div_line]="#00778B" + +# Temperature graph colors +theme[temp_start]="#78D64B" +theme[temp_mid]="#FBDD40" +theme[temp_end]="#FF585D" + +# CPU graph colors +theme[cpu_start]="#78D64B" +theme[cpu_mid]="#FBDD40" +theme[cpu_end]="#FF585D" + +# Mem/Disk free meter +theme[free_start]="#78D64B" +theme[free_mid]="#FBDD40" +theme[free_end]="#FF585D" + +# Mem/Disk cached meter +theme[cached_start]="#78D64B" +theme[cached_mid]="#FBDD40" +theme[cached_end]="#FF585D" + +# Mem/Disk available meter +theme[available_start]="#78D64B" +theme[available_mid]="#FBDD40" +theme[available_end]="#FF585D" + +# Mem/Disk used meter +theme[used_start]="#78D64B" +theme[used_mid]="#FBDD40" +theme[used_end]="#FF585D" + +# Download graph colors +theme[download_start]="#78D64B" +theme[download_mid]="#FBDD40" +theme[download_end]="#FF585D" + +# Upload graph colors +theme[upload_start]="#78D64B" +theme[upload_mid]="#FBDD40" +theme[upload_end]="#FF585D" diff --git a/colors/base16-standardized-dark.theme b/colors/base16-standardized-dark.theme new file mode 100644 index 0000000..a71f3a3 --- /dev/null +++ b/colors/base16-standardized-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: standardized-dark +# author: ali (https://github.com/ali-githb/base16-standardized-scheme) +# slug: standardized-dark +# slug-underscored: standardized_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#222222" + +# Main text color +theme[main_fg]="#c0c0c0" + +# Title color for boxes +theme[title]="#c0c0c0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#00a3f2" + +# Background color of selected item in processes box +theme[selected_bg]="#303030" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c0c0c0" + +# Color of inactive/disabled text +theme[inactive_fg]="#898989" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#00a3f2" + +# Cpu box outline color +theme[cpu_box]="#898989" + +# Memory/disks box outline color +theme[mem_box]="#898989" + +# Net up/down box outline color +theme[net_box]="#898989" + +# Processes box outline color +theme[proc_box]="#898989" + +# Box divider line and small boxes line color +theme[div_line]="#898989" + +# Temperature graph colors +theme[temp_start]="#5db129" +theme[temp_mid]="#e1b31a" +theme[temp_end]="#e15d67" + +# CPU graph colors +theme[cpu_start]="#5db129" +theme[cpu_mid]="#e1b31a" +theme[cpu_end]="#e15d67" + +# Mem/Disk free meter +theme[free_start]="#5db129" +theme[free_mid]="#e1b31a" +theme[free_end]="#e15d67" + +# Mem/Disk cached meter +theme[cached_start]="#5db129" +theme[cached_mid]="#e1b31a" +theme[cached_end]="#e15d67" + +# Mem/Disk available meter +theme[available_start]="#5db129" +theme[available_mid]="#e1b31a" +theme[available_end]="#e15d67" + +# Mem/Disk used meter +theme[used_start]="#5db129" +theme[used_mid]="#e1b31a" +theme[used_end]="#e15d67" + +# Download graph colors +theme[download_start]="#5db129" +theme[download_mid]="#e1b31a" +theme[download_end]="#e15d67" + +# Upload graph colors +theme[upload_start]="#5db129" +theme[upload_mid]="#e1b31a" +theme[upload_end]="#e15d67" diff --git a/colors/base16-standardized-light.theme b/colors/base16-standardized-light.theme new file mode 100644 index 0000000..1e7ae18 --- /dev/null +++ b/colors/base16-standardized-light.theme @@ -0,0 +1,90 @@ +# +# +# name: standardized-light +# author: ali (https://github.com/ali-githb/base16-standardized-scheme) +# slug: standardized-light +# slug-underscored: standardized_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ffffff" + +# Main text color +theme[main_fg]="#444444" + +# Title color for boxes +theme[title]="#444444" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3173c5" + +# Background color of selected item in processes box +theme[selected_bg]="#eeeeee" + +# Foreground color of selected item in processes box +theme[selected_fg]="#444444" + +# Color of inactive/disabled text +theme[inactive_fg]="#767676" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3173c5" + +# Cpu box outline color +theme[cpu_box]="#767676" + +# Memory/disks box outline color +theme[mem_box]="#767676" + +# Net up/down box outline color +theme[net_box]="#767676" + +# Processes box outline color +theme[proc_box]="#767676" + +# Box divider line and small boxes line color +theme[div_line]="#767676" + +# Temperature graph colors +theme[temp_start]="#31861f" +theme[temp_mid]="#ad8200" +theme[temp_end]="#d03e3e" + +# CPU graph colors +theme[cpu_start]="#31861f" +theme[cpu_mid]="#ad8200" +theme[cpu_end]="#d03e3e" + +# Mem/Disk free meter +theme[free_start]="#31861f" +theme[free_mid]="#ad8200" +theme[free_end]="#d03e3e" + +# Mem/Disk cached meter +theme[cached_start]="#31861f" +theme[cached_mid]="#ad8200" +theme[cached_end]="#d03e3e" + +# Mem/Disk available meter +theme[available_start]="#31861f" +theme[available_mid]="#ad8200" +theme[available_end]="#d03e3e" + +# Mem/Disk used meter +theme[used_start]="#31861f" +theme[used_mid]="#ad8200" +theme[used_end]="#d03e3e" + +# Download graph colors +theme[download_start]="#31861f" +theme[download_mid]="#ad8200" +theme[download_end]="#d03e3e" + +# Upload graph colors +theme[upload_start]="#31861f" +theme[upload_mid]="#ad8200" +theme[upload_end]="#d03e3e" diff --git a/colors/base16-stella.theme b/colors/base16-stella.theme new file mode 100644 index 0000000..173a59f --- /dev/null +++ b/colors/base16-stella.theme @@ -0,0 +1,90 @@ +# +# +# name: Stella +# author: Shrimpram +# slug: stella +# slug-underscored: stella +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2B213C" + +# Main text color +theme[main_fg]="#998BAD" + +# Title color for boxes +theme[title]="#998BAD" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#A5AAD4" + +# Background color of selected item in processes box +theme[selected_bg]="#362B48" + +# Foreground color of selected item in processes box +theme[selected_fg]="#998BAD" + +# Color of inactive/disabled text +theme[inactive_fg]="#7F7192" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#A5AAD4" + +# Cpu box outline color +theme[cpu_box]="#7F7192" + +# Memory/disks box outline color +theme[mem_box]="#7F7192" + +# Net up/down box outline color +theme[net_box]="#7F7192" + +# Processes box outline color +theme[proc_box]="#7F7192" + +# Box divider line and small boxes line color +theme[div_line]="#7F7192" + +# Temperature graph colors +theme[temp_start]="#ACC79B" +theme[temp_mid]="#C7C691" +theme[temp_end]="#C79987" + +# CPU graph colors +theme[cpu_start]="#ACC79B" +theme[cpu_mid]="#C7C691" +theme[cpu_end]="#C79987" + +# Mem/Disk free meter +theme[free_start]="#ACC79B" +theme[free_mid]="#C7C691" +theme[free_end]="#C79987" + +# Mem/Disk cached meter +theme[cached_start]="#ACC79B" +theme[cached_mid]="#C7C691" +theme[cached_end]="#C79987" + +# Mem/Disk available meter +theme[available_start]="#ACC79B" +theme[available_mid]="#C7C691" +theme[available_end]="#C79987" + +# Mem/Disk used meter +theme[used_start]="#ACC79B" +theme[used_mid]="#C7C691" +theme[used_end]="#C79987" + +# Download graph colors +theme[download_start]="#ACC79B" +theme[download_mid]="#C7C691" +theme[download_end]="#C79987" + +# Upload graph colors +theme[upload_start]="#ACC79B" +theme[upload_mid]="#C7C691" +theme[upload_end]="#C79987" diff --git a/colors/base16-still-alive.theme b/colors/base16-still-alive.theme new file mode 100644 index 0000000..f079c6f --- /dev/null +++ b/colors/base16-still-alive.theme @@ -0,0 +1,90 @@ +# +# +# name: Still Alive +# author: Derrick McKee (derrick.mckee@gmail.com) +# slug: still-alive +# slug-underscored: still_alive +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#F0F0F0" + +# Main text color +theme[main_fg]="#D80000" + +# Title color for boxes +theme[title]="#D80000" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#001878" + +# Background color of selected item in processes box +theme[selected_bg]="#F0D848" + +# Foreground color of selected item in processes box +theme[selected_fg]="#D80000" + +# Color of inactive/disabled text +theme[inactive_fg]="#F00000" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#001878" + +# Cpu box outline color +theme[cpu_box]="#F00000" + +# Memory/disks box outline color +theme[mem_box]="#F00000" + +# Net up/down box outline color +theme[net_box]="#F00000" + +# Processes box outline color +theme[proc_box]="#F00000" + +# Box divider line and small boxes line color +theme[div_line]="#F00000" + +# Temperature graph colors +theme[temp_start]="#5C5C6A" +theme[temp_mid]="#426395" +theme[temp_end]="#487830" + +# CPU graph colors +theme[cpu_start]="#5C5C6A" +theme[cpu_mid]="#426395" +theme[cpu_end]="#487830" + +# Mem/Disk free meter +theme[free_start]="#5C5C6A" +theme[free_mid]="#426395" +theme[free_end]="#487830" + +# Mem/Disk cached meter +theme[cached_start]="#5C5C6A" +theme[cached_mid]="#426395" +theme[cached_end]="#487830" + +# Mem/Disk available meter +theme[available_start]="#5C5C6A" +theme[available_mid]="#426395" +theme[available_end]="#487830" + +# Mem/Disk used meter +theme[used_start]="#5C5C6A" +theme[used_mid]="#426395" +theme[used_end]="#487830" + +# Download graph colors +theme[download_start]="#5C5C6A" +theme[download_mid]="#426395" +theme[download_end]="#487830" + +# Upload graph colors +theme[upload_start]="#5C5C6A" +theme[upload_mid]="#426395" +theme[upload_end]="#487830" diff --git a/colors/base16-summercamp.theme b/colors/base16-summercamp.theme new file mode 100644 index 0000000..fda255f --- /dev/null +++ b/colors/base16-summercamp.theme @@ -0,0 +1,90 @@ +# +# +# name: summercamp +# author: zoe firi (zoefiri.github.io) +# slug: summercamp +# slug-underscored: summercamp +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1c1810" + +# Main text color +theme[main_fg]="#736e55" + +# Title color for boxes +theme[title]="#736e55" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#489bf0" + +# Background color of selected item in processes box +theme[selected_bg]="#2a261c" + +# Foreground color of selected item in processes box +theme[selected_fg]="#736e55" + +# Color of inactive/disabled text +theme[inactive_fg]="#5f5b45" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#489bf0" + +# Cpu box outline color +theme[cpu_box]="#5f5b45" + +# Memory/disks box outline color +theme[mem_box]="#5f5b45" + +# Net up/down box outline color +theme[net_box]="#5f5b45" + +# Processes box outline color +theme[proc_box]="#5f5b45" + +# Box divider line and small boxes line color +theme[div_line]="#5f5b45" + +# Temperature graph colors +theme[temp_start]="#5ceb5a" +theme[temp_mid]="#f2ff27" +theme[temp_end]="#e35142" + +# CPU graph colors +theme[cpu_start]="#5ceb5a" +theme[cpu_mid]="#f2ff27" +theme[cpu_end]="#e35142" + +# Mem/Disk free meter +theme[free_start]="#5ceb5a" +theme[free_mid]="#f2ff27" +theme[free_end]="#e35142" + +# Mem/Disk cached meter +theme[cached_start]="#5ceb5a" +theme[cached_mid]="#f2ff27" +theme[cached_end]="#e35142" + +# Mem/Disk available meter +theme[available_start]="#5ceb5a" +theme[available_mid]="#f2ff27" +theme[available_end]="#e35142" + +# Mem/Disk used meter +theme[used_start]="#5ceb5a" +theme[used_mid]="#f2ff27" +theme[used_end]="#e35142" + +# Download graph colors +theme[download_start]="#5ceb5a" +theme[download_mid]="#f2ff27" +theme[download_end]="#e35142" + +# Upload graph colors +theme[upload_start]="#5ceb5a" +theme[upload_mid]="#f2ff27" +theme[upload_end]="#e35142" diff --git a/colors/base16-summerfruit-dark.theme b/colors/base16-summerfruit-dark.theme new file mode 100644 index 0000000..0881b34 --- /dev/null +++ b/colors/base16-summerfruit-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Summerfruit Dark +# author: Christopher Corley (http://christop.club/) +# slug: summerfruit-dark +# slug-underscored: summerfruit_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#151515" + +# Main text color +theme[main_fg]="#D0D0D0" + +# Title color for boxes +theme[title]="#D0D0D0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3777E6" + +# Background color of selected item in processes box +theme[selected_bg]="#202020" + +# Foreground color of selected item in processes box +theme[selected_fg]="#D0D0D0" + +# Color of inactive/disabled text +theme[inactive_fg]="#B0B0B0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3777E6" + +# Cpu box outline color +theme[cpu_box]="#B0B0B0" + +# Memory/disks box outline color +theme[mem_box]="#B0B0B0" + +# Net up/down box outline color +theme[net_box]="#B0B0B0" + +# Processes box outline color +theme[proc_box]="#B0B0B0" + +# Box divider line and small boxes line color +theme[div_line]="#B0B0B0" + +# Temperature graph colors +theme[temp_start]="#00C918" +theme[temp_mid]="#ABA800" +theme[temp_end]="#FF0086" + +# CPU graph colors +theme[cpu_start]="#00C918" +theme[cpu_mid]="#ABA800" +theme[cpu_end]="#FF0086" + +# Mem/Disk free meter +theme[free_start]="#00C918" +theme[free_mid]="#ABA800" +theme[free_end]="#FF0086" + +# Mem/Disk cached meter +theme[cached_start]="#00C918" +theme[cached_mid]="#ABA800" +theme[cached_end]="#FF0086" + +# Mem/Disk available meter +theme[available_start]="#00C918" +theme[available_mid]="#ABA800" +theme[available_end]="#FF0086" + +# Mem/Disk used meter +theme[used_start]="#00C918" +theme[used_mid]="#ABA800" +theme[used_end]="#FF0086" + +# Download graph colors +theme[download_start]="#00C918" +theme[download_mid]="#ABA800" +theme[download_end]="#FF0086" + +# Upload graph colors +theme[upload_start]="#00C918" +theme[upload_mid]="#ABA800" +theme[upload_end]="#FF0086" diff --git a/colors/base16-summerfruit-light.theme b/colors/base16-summerfruit-light.theme new file mode 100644 index 0000000..4c0f7a6 --- /dev/null +++ b/colors/base16-summerfruit-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Summerfruit Light +# author: Christopher Corley (http://christop.club/) +# slug: summerfruit-light +# slug-underscored: summerfruit_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#FFFFFF" + +# Main text color +theme[main_fg]="#101010" + +# Title color for boxes +theme[title]="#101010" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3777E6" + +# Background color of selected item in processes box +theme[selected_bg]="#E0E0E0" + +# Foreground color of selected item in processes box +theme[selected_fg]="#101010" + +# Color of inactive/disabled text +theme[inactive_fg]="#000000" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3777E6" + +# Cpu box outline color +theme[cpu_box]="#000000" + +# Memory/disks box outline color +theme[mem_box]="#000000" + +# Net up/down box outline color +theme[net_box]="#000000" + +# Processes box outline color +theme[proc_box]="#000000" + +# Box divider line and small boxes line color +theme[div_line]="#000000" + +# Temperature graph colors +theme[temp_start]="#00C918" +theme[temp_mid]="#ABA800" +theme[temp_end]="#FF0086" + +# CPU graph colors +theme[cpu_start]="#00C918" +theme[cpu_mid]="#ABA800" +theme[cpu_end]="#FF0086" + +# Mem/Disk free meter +theme[free_start]="#00C918" +theme[free_mid]="#ABA800" +theme[free_end]="#FF0086" + +# Mem/Disk cached meter +theme[cached_start]="#00C918" +theme[cached_mid]="#ABA800" +theme[cached_end]="#FF0086" + +# Mem/Disk available meter +theme[available_start]="#00C918" +theme[available_mid]="#ABA800" +theme[available_end]="#FF0086" + +# Mem/Disk used meter +theme[used_start]="#00C918" +theme[used_mid]="#ABA800" +theme[used_end]="#FF0086" + +# Download graph colors +theme[download_start]="#00C918" +theme[download_mid]="#ABA800" +theme[download_end]="#FF0086" + +# Upload graph colors +theme[upload_start]="#00C918" +theme[upload_mid]="#ABA800" +theme[upload_end]="#FF0086" diff --git a/colors/base16-synth-midnight-dark.theme b/colors/base16-synth-midnight-dark.theme new file mode 100644 index 0000000..fbacd28 --- /dev/null +++ b/colors/base16-synth-midnight-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Synth Midnight Terminal Dark +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: synth-midnight-dark +# slug-underscored: synth_midnight_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#050608" + +# Main text color +theme[main_fg]="#c1c3c4" + +# Title color for boxes +theme[title]="#c1c3c4" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#03aeff" + +# Background color of selected item in processes box +theme[selected_bg]="#1a1b1c" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c1c3c4" + +# Color of inactive/disabled text +theme[inactive_fg]="#a3a5a6" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#03aeff" + +# Cpu box outline color +theme[cpu_box]="#a3a5a6" + +# Memory/disks box outline color +theme[mem_box]="#a3a5a6" + +# Net up/down box outline color +theme[net_box]="#a3a5a6" + +# Processes box outline color +theme[proc_box]="#a3a5a6" + +# Box divider line and small boxes line color +theme[div_line]="#a3a5a6" + +# Temperature graph colors +theme[temp_start]="#06ea61" +theme[temp_mid]="#c9d364" +theme[temp_end]="#b53b50" + +# CPU graph colors +theme[cpu_start]="#06ea61" +theme[cpu_mid]="#c9d364" +theme[cpu_end]="#b53b50" + +# Mem/Disk free meter +theme[free_start]="#06ea61" +theme[free_mid]="#c9d364" +theme[free_end]="#b53b50" + +# Mem/Disk cached meter +theme[cached_start]="#06ea61" +theme[cached_mid]="#c9d364" +theme[cached_end]="#b53b50" + +# Mem/Disk available meter +theme[available_start]="#06ea61" +theme[available_mid]="#c9d364" +theme[available_end]="#b53b50" + +# Mem/Disk used meter +theme[used_start]="#06ea61" +theme[used_mid]="#c9d364" +theme[used_end]="#b53b50" + +# Download graph colors +theme[download_start]="#06ea61" +theme[download_mid]="#c9d364" +theme[download_end]="#b53b50" + +# Upload graph colors +theme[upload_start]="#06ea61" +theme[upload_mid]="#c9d364" +theme[upload_end]="#b53b50" diff --git a/colors/base16-synth-midnight-light.theme b/colors/base16-synth-midnight-light.theme new file mode 100644 index 0000000..ab5a2b3 --- /dev/null +++ b/colors/base16-synth-midnight-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Synth Midnight Terminal Light +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: synth-midnight-light +# slug-underscored: synth_midnight_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#dddfe0" + +# Main text color +theme[main_fg]="#28292a" + +# Title color for boxes +theme[title]="#28292a" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#03aeff" + +# Background color of selected item in processes box +theme[selected_bg]="#cfd1d2" + +# Foreground color of selected item in processes box +theme[selected_fg]="#28292a" + +# Color of inactive/disabled text +theme[inactive_fg]="#474849" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#03aeff" + +# Cpu box outline color +theme[cpu_box]="#474849" + +# Memory/disks box outline color +theme[mem_box]="#474849" + +# Net up/down box outline color +theme[net_box]="#474849" + +# Processes box outline color +theme[proc_box]="#474849" + +# Box divider line and small boxes line color +theme[div_line]="#474849" + +# Temperature graph colors +theme[temp_start]="#06ea61" +theme[temp_mid]="#c9d364" +theme[temp_end]="#b53b50" + +# CPU graph colors +theme[cpu_start]="#06ea61" +theme[cpu_mid]="#c9d364" +theme[cpu_end]="#b53b50" + +# Mem/Disk free meter +theme[free_start]="#06ea61" +theme[free_mid]="#c9d364" +theme[free_end]="#b53b50" + +# Mem/Disk cached meter +theme[cached_start]="#06ea61" +theme[cached_mid]="#c9d364" +theme[cached_end]="#b53b50" + +# Mem/Disk available meter +theme[available_start]="#06ea61" +theme[available_mid]="#c9d364" +theme[available_end]="#b53b50" + +# Mem/Disk used meter +theme[used_start]="#06ea61" +theme[used_mid]="#c9d364" +theme[used_end]="#b53b50" + +# Download graph colors +theme[download_start]="#06ea61" +theme[download_mid]="#c9d364" +theme[download_end]="#b53b50" + +# Upload graph colors +theme[upload_start]="#06ea61" +theme[upload_mid]="#c9d364" +theme[upload_end]="#b53b50" diff --git a/colors/base16-tango.theme b/colors/base16-tango.theme new file mode 100644 index 0000000..aa99259 --- /dev/null +++ b/colors/base16-tango.theme @@ -0,0 +1,90 @@ +# +# +# name: Tango +# author: @Schnouki, based on the Tango Desktop Project +# slug: tango +# slug-underscored: tango +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2e3436" + +# Main text color +theme[main_fg]="#d3d7cf" + +# Title color for boxes +theme[title]="#d3d7cf" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3465a4" + +# Background color of selected item in processes box +theme[selected_bg]="#8ae234" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d3d7cf" + +# Color of inactive/disabled text +theme[inactive_fg]="#729fcf" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3465a4" + +# Cpu box outline color +theme[cpu_box]="#729fcf" + +# Memory/disks box outline color +theme[mem_box]="#729fcf" + +# Net up/down box outline color +theme[net_box]="#729fcf" + +# Processes box outline color +theme[proc_box]="#729fcf" + +# Box divider line and small boxes line color +theme[div_line]="#729fcf" + +# Temperature graph colors +theme[temp_start]="#4e9a06" +theme[temp_mid]="#c4a000" +theme[temp_end]="#cc0000" + +# CPU graph colors +theme[cpu_start]="#4e9a06" +theme[cpu_mid]="#c4a000" +theme[cpu_end]="#cc0000" + +# Mem/Disk free meter +theme[free_start]="#4e9a06" +theme[free_mid]="#c4a000" +theme[free_end]="#cc0000" + +# Mem/Disk cached meter +theme[cached_start]="#4e9a06" +theme[cached_mid]="#c4a000" +theme[cached_end]="#cc0000" + +# Mem/Disk available meter +theme[available_start]="#4e9a06" +theme[available_mid]="#c4a000" +theme[available_end]="#cc0000" + +# Mem/Disk used meter +theme[used_start]="#4e9a06" +theme[used_mid]="#c4a000" +theme[used_end]="#cc0000" + +# Download graph colors +theme[download_start]="#4e9a06" +theme[download_mid]="#c4a000" +theme[download_end]="#cc0000" + +# Upload graph colors +theme[upload_start]="#4e9a06" +theme[upload_mid]="#c4a000" +theme[upload_end]="#cc0000" diff --git a/colors/base16-tarot.theme b/colors/base16-tarot.theme new file mode 100644 index 0000000..a0b8eed --- /dev/null +++ b/colors/base16-tarot.theme @@ -0,0 +1,90 @@ +# +# +# name: tarot +# author: ed (https://codeberg.org/ed) +# slug: tarot +# slug-underscored: tarot +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#0e091d" + +# Main text color +theme[main_fg]="#aa556f" + +# Title color for boxes +theme[title]="#aa556f" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6e6080" + +# Background color of selected item in processes box +theme[selected_bg]="#2a153c" + +# Foreground color of selected item in processes box +theme[selected_fg]="#aa556f" + +# Color of inactive/disabled text +theme[inactive_fg]="#8c406f" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6e6080" + +# Cpu box outline color +theme[cpu_box]="#8c406f" + +# Memory/disks box outline color +theme[mem_box]="#8c406f" + +# Net up/down box outline color +theme[net_box]="#8c406f" + +# Processes box outline color +theme[proc_box]="#8c406f" + +# Box divider line and small boxes line color +theme[div_line]="#8c406f" + +# Temperature graph colors +theme[temp_start]="#a68e5a" +theme[temp_mid]="#ff6565" +theme[temp_end]="#c53253" + +# CPU graph colors +theme[cpu_start]="#a68e5a" +theme[cpu_mid]="#ff6565" +theme[cpu_end]="#c53253" + +# Mem/Disk free meter +theme[free_start]="#a68e5a" +theme[free_mid]="#ff6565" +theme[free_end]="#c53253" + +# Mem/Disk cached meter +theme[cached_start]="#a68e5a" +theme[cached_mid]="#ff6565" +theme[cached_end]="#c53253" + +# Mem/Disk available meter +theme[available_start]="#a68e5a" +theme[available_mid]="#ff6565" +theme[available_end]="#c53253" + +# Mem/Disk used meter +theme[used_start]="#a68e5a" +theme[used_mid]="#ff6565" +theme[used_end]="#c53253" + +# Download graph colors +theme[download_start]="#a68e5a" +theme[download_mid]="#ff6565" +theme[download_end]="#c53253" + +# Upload graph colors +theme[upload_start]="#a68e5a" +theme[upload_mid]="#ff6565" +theme[upload_end]="#c53253" diff --git a/colors/base16-tender.theme b/colors/base16-tender.theme new file mode 100644 index 0000000..01ad609 --- /dev/null +++ b/colors/base16-tender.theme @@ -0,0 +1,90 @@ +# +# +# name: tender +# author: Jacobo Tabernero (https://github/com/jacoborus/tender.vim) +# slug: tender +# slug-underscored: tender +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#282828" + +# Main text color +theme[main_fg]="#eeeeee" + +# Title color for boxes +theme[title]="#eeeeee" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#b3deef" + +# Background color of selected item in processes box +theme[selected_bg]="#383838" + +# Foreground color of selected item in processes box +theme[selected_fg]="#eeeeee" + +# Color of inactive/disabled text +theme[inactive_fg]="#b8b8b8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#b3deef" + +# Cpu box outline color +theme[cpu_box]="#b8b8b8" + +# Memory/disks box outline color +theme[mem_box]="#b8b8b8" + +# Net up/down box outline color +theme[net_box]="#b8b8b8" + +# Processes box outline color +theme[proc_box]="#b8b8b8" + +# Box divider line and small boxes line color +theme[div_line]="#b8b8b8" + +# Temperature graph colors +theme[temp_start]="#c9d05c" +theme[temp_mid]="#ffc24b" +theme[temp_end]="#f43753" + +# CPU graph colors +theme[cpu_start]="#c9d05c" +theme[cpu_mid]="#ffc24b" +theme[cpu_end]="#f43753" + +# Mem/Disk free meter +theme[free_start]="#c9d05c" +theme[free_mid]="#ffc24b" +theme[free_end]="#f43753" + +# Mem/Disk cached meter +theme[cached_start]="#c9d05c" +theme[cached_mid]="#ffc24b" +theme[cached_end]="#f43753" + +# Mem/Disk available meter +theme[available_start]="#c9d05c" +theme[available_mid]="#ffc24b" +theme[available_end]="#f43753" + +# Mem/Disk used meter +theme[used_start]="#c9d05c" +theme[used_mid]="#ffc24b" +theme[used_end]="#f43753" + +# Download graph colors +theme[download_start]="#c9d05c" +theme[download_mid]="#ffc24b" +theme[download_end]="#f43753" + +# Upload graph colors +theme[upload_start]="#c9d05c" +theme[upload_mid]="#ffc24b" +theme[upload_end]="#f43753" diff --git a/colors/base16-terracotta-dark.theme b/colors/base16-terracotta-dark.theme new file mode 100644 index 0000000..3bea397 --- /dev/null +++ b/colors/base16-terracotta-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Terracotta Dark +# author: Alexander Rossell Hayes (https://github.com/rossellhayes) +# slug: terracotta-dark +# slug-underscored: terracotta_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#241d1a" + +# Main text color +theme[main_fg]="#b8a59d" + +# Title color for boxes +theme[title]="#b8a59d" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#b0a4c3" + +# Background color of selected item in processes box +theme[selected_bg]="#362b27" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b8a59d" + +# Color of inactive/disabled text +theme[inactive_fg]="#a78e84" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#b0a4c3" + +# Cpu box outline color +theme[cpu_box]="#a78e84" + +# Memory/disks box outline color +theme[mem_box]="#a78e84" + +# Net up/down box outline color +theme[net_box]="#a78e84" + +# Processes box outline color +theme[proc_box]="#a78e84" + +# Box divider line and small boxes line color +theme[div_line]="#a78e84" + +# Temperature graph colors +theme[temp_start]="#b6c68a" +theme[temp_mid]="#ffc37a" +theme[temp_end]="#f6998f" + +# CPU graph colors +theme[cpu_start]="#b6c68a" +theme[cpu_mid]="#ffc37a" +theme[cpu_end]="#f6998f" + +# Mem/Disk free meter +theme[free_start]="#b6c68a" +theme[free_mid]="#ffc37a" +theme[free_end]="#f6998f" + +# Mem/Disk cached meter +theme[cached_start]="#b6c68a" +theme[cached_mid]="#ffc37a" +theme[cached_end]="#f6998f" + +# Mem/Disk available meter +theme[available_start]="#b6c68a" +theme[available_mid]="#ffc37a" +theme[available_end]="#f6998f" + +# Mem/Disk used meter +theme[used_start]="#b6c68a" +theme[used_mid]="#ffc37a" +theme[used_end]="#f6998f" + +# Download graph colors +theme[download_start]="#b6c68a" +theme[download_mid]="#ffc37a" +theme[download_end]="#f6998f" + +# Upload graph colors +theme[upload_start]="#b6c68a" +theme[upload_mid]="#ffc37a" +theme[upload_end]="#f6998f" diff --git a/colors/base16-terracotta.theme b/colors/base16-terracotta.theme new file mode 100644 index 0000000..2ced151 --- /dev/null +++ b/colors/base16-terracotta.theme @@ -0,0 +1,90 @@ +# +# +# name: Terracotta +# author: Alexander Rossell Hayes (https://github.com/rossellhayes) +# slug: terracotta +# slug-underscored: terracotta +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#efeae8" + +# Main text color +theme[main_fg]="#473731" + +# Title color for boxes +theme[title]="#473731" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#625574" + +# Background color of selected item in processes box +theme[selected_bg]="#dfd6d1" + +# Foreground color of selected item in processes box +theme[selected_fg]="#473731" + +# Color of inactive/disabled text +theme[inactive_fg]="#59453d" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#625574" + +# Cpu box outline color +theme[cpu_box]="#59453d" + +# Memory/disks box outline color +theme[mem_box]="#59453d" + +# Net up/down box outline color +theme[net_box]="#59453d" + +# Processes box outline color +theme[proc_box]="#59453d" + +# Box divider line and small boxes line color +theme[div_line]="#59453d" + +# Temperature graph colors +theme[temp_start]="#7a894a" +theme[temp_mid]="#ce943e" +theme[temp_end]="#a75045" + +# CPU graph colors +theme[cpu_start]="#7a894a" +theme[cpu_mid]="#ce943e" +theme[cpu_end]="#a75045" + +# Mem/Disk free meter +theme[free_start]="#7a894a" +theme[free_mid]="#ce943e" +theme[free_end]="#a75045" + +# Mem/Disk cached meter +theme[cached_start]="#7a894a" +theme[cached_mid]="#ce943e" +theme[cached_end]="#a75045" + +# Mem/Disk available meter +theme[available_start]="#7a894a" +theme[available_mid]="#ce943e" +theme[available_end]="#a75045" + +# Mem/Disk used meter +theme[used_start]="#7a894a" +theme[used_mid]="#ce943e" +theme[used_end]="#a75045" + +# Download graph colors +theme[download_start]="#7a894a" +theme[download_mid]="#ce943e" +theme[download_end]="#a75045" + +# Upload graph colors +theme[upload_start]="#7a894a" +theme[upload_mid]="#ce943e" +theme[upload_end]="#a75045" diff --git a/colors/base16-tokyo-city-dark.theme b/colors/base16-tokyo-city-dark.theme new file mode 100644 index 0000000..4171094 --- /dev/null +++ b/colors/base16-tokyo-city-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo City Dark +# author: Michaël Ball +# slug: tokyo-city-dark +# slug-underscored: tokyo_city_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#171D23" + +# Main text color +theme[main_fg]="#D8E2EC" + +# Title color for boxes +theme[title]="#D8E2EC" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7AA2F7" + +# Background color of selected item in processes box +theme[selected_bg]="#1D252C" + +# Foreground color of selected item in processes box +theme[selected_fg]="#D8E2EC" + +# Color of inactive/disabled text +theme[inactive_fg]="#B7C5D3" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7AA2F7" + +# Cpu box outline color +theme[cpu_box]="#B7C5D3" + +# Memory/disks box outline color +theme[mem_box]="#B7C5D3" + +# Net up/down box outline color +theme[net_box]="#B7C5D3" + +# Processes box outline color +theme[proc_box]="#B7C5D3" + +# Box divider line and small boxes line color +theme[div_line]="#B7C5D3" + +# Temperature graph colors +theme[temp_start]="#9ECE6A" +theme[temp_mid]="#B7C5D3" +theme[temp_end]="#F7768E" + +# CPU graph colors +theme[cpu_start]="#9ECE6A" +theme[cpu_mid]="#B7C5D3" +theme[cpu_end]="#F7768E" + +# Mem/Disk free meter +theme[free_start]="#9ECE6A" +theme[free_mid]="#B7C5D3" +theme[free_end]="#F7768E" + +# Mem/Disk cached meter +theme[cached_start]="#9ECE6A" +theme[cached_mid]="#B7C5D3" +theme[cached_end]="#F7768E" + +# Mem/Disk available meter +theme[available_start]="#9ECE6A" +theme[available_mid]="#B7C5D3" +theme[available_end]="#F7768E" + +# Mem/Disk used meter +theme[used_start]="#9ECE6A" +theme[used_mid]="#B7C5D3" +theme[used_end]="#F7768E" + +# Download graph colors +theme[download_start]="#9ECE6A" +theme[download_mid]="#B7C5D3" +theme[download_end]="#F7768E" + +# Upload graph colors +theme[upload_start]="#9ECE6A" +theme[upload_mid]="#B7C5D3" +theme[upload_end]="#F7768E" diff --git a/colors/base16-tokyo-city-light.theme b/colors/base16-tokyo-city-light.theme new file mode 100644 index 0000000..73e977c --- /dev/null +++ b/colors/base16-tokyo-city-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo City Light +# author: Michaël Ball +# slug: tokyo-city-light +# slug-underscored: tokyo_city_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#FBFBFD" + +# Main text color +theme[main_fg]="#343B59" + +# Title color for boxes +theme[title]="#343B59" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#34548a" + +# Background color of selected item in processes box +theme[selected_bg]="#F6F6F8" + +# Foreground color of selected item in processes box +theme[selected_fg]="#343B59" + +# Color of inactive/disabled text +theme[inactive_fg]="#4c505e" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#34548a" + +# Cpu box outline color +theme[cpu_box]="#4c505e" + +# Memory/disks box outline color +theme[mem_box]="#4c505e" + +# Net up/down box outline color +theme[net_box]="#4c505e" + +# Processes box outline color +theme[proc_box]="#4c505e" + +# Box divider line and small boxes line color +theme[div_line]="#4c505e" + +# Temperature graph colors +theme[temp_start]="#485E30" +theme[temp_mid]="#4C505E" +theme[temp_end]="#8C4351" + +# CPU graph colors +theme[cpu_start]="#485E30" +theme[cpu_mid]="#4C505E" +theme[cpu_end]="#8C4351" + +# Mem/Disk free meter +theme[free_start]="#485E30" +theme[free_mid]="#4C505E" +theme[free_end]="#8C4351" + +# Mem/Disk cached meter +theme[cached_start]="#485E30" +theme[cached_mid]="#4C505E" +theme[cached_end]="#8C4351" + +# Mem/Disk available meter +theme[available_start]="#485E30" +theme[available_mid]="#4C505E" +theme[available_end]="#8C4351" + +# Mem/Disk used meter +theme[used_start]="#485E30" +theme[used_mid]="#4C505E" +theme[used_end]="#8C4351" + +# Download graph colors +theme[download_start]="#485E30" +theme[download_mid]="#4C505E" +theme[download_end]="#8C4351" + +# Upload graph colors +theme[upload_start]="#485E30" +theme[upload_mid]="#4C505E" +theme[upload_end]="#8C4351" diff --git a/colors/base16-tokyo-city-terminal-dark.theme b/colors/base16-tokyo-city-terminal-dark.theme new file mode 100644 index 0000000..03b3a41 --- /dev/null +++ b/colors/base16-tokyo-city-terminal-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo City Terminal Dark +# author: Michaël Ball +# slug: tokyo-city-terminal-dark +# slug-underscored: tokyo_city_terminal_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#171D23" + +# Main text color +theme[main_fg]="#D8E2EC" + +# Title color for boxes +theme[title]="#D8E2EC" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#539AFC" + +# Background color of selected item in processes box +theme[selected_bg]="#1D252C" + +# Foreground color of selected item in processes box +theme[selected_fg]="#D8E2EC" + +# Color of inactive/disabled text +theme[inactive_fg]="#B7C5D3" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#539AFC" + +# Cpu box outline color +theme[cpu_box]="#B7C5D3" + +# Memory/disks box outline color +theme[mem_box]="#B7C5D3" + +# Net up/down box outline color +theme[net_box]="#B7C5D3" + +# Processes box outline color +theme[proc_box]="#B7C5D3" + +# Box divider line and small boxes line color +theme[div_line]="#B7C5D3" + +# Temperature graph colors +theme[temp_start]="#8BD49C" +theme[temp_mid]="#EBBF83" +theme[temp_end]="#D95468" + +# CPU graph colors +theme[cpu_start]="#8BD49C" +theme[cpu_mid]="#EBBF83" +theme[cpu_end]="#D95468" + +# Mem/Disk free meter +theme[free_start]="#8BD49C" +theme[free_mid]="#EBBF83" +theme[free_end]="#D95468" + +# Mem/Disk cached meter +theme[cached_start]="#8BD49C" +theme[cached_mid]="#EBBF83" +theme[cached_end]="#D95468" + +# Mem/Disk available meter +theme[available_start]="#8BD49C" +theme[available_mid]="#EBBF83" +theme[available_end]="#D95468" + +# Mem/Disk used meter +theme[used_start]="#8BD49C" +theme[used_mid]="#EBBF83" +theme[used_end]="#D95468" + +# Download graph colors +theme[download_start]="#8BD49C" +theme[download_mid]="#EBBF83" +theme[download_end]="#D95468" + +# Upload graph colors +theme[upload_start]="#8BD49C" +theme[upload_mid]="#EBBF83" +theme[upload_end]="#D95468" diff --git a/colors/base16-tokyo-city-terminal-light.theme b/colors/base16-tokyo-city-terminal-light.theme new file mode 100644 index 0000000..15b853a --- /dev/null +++ b/colors/base16-tokyo-city-terminal-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo City Terminal Light +# author: Michaël Ball +# slug: tokyo-city-terminal-light +# slug-underscored: tokyo_city_terminal_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#FBFBFD" + +# Main text color +theme[main_fg]="#28323A" + +# Title color for boxes +theme[title]="#28323A" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#34548A" + +# Background color of selected item in processes box +theme[selected_bg]="#F6F6F8" + +# Foreground color of selected item in processes box +theme[selected_fg]="#28323A" + +# Color of inactive/disabled text +theme[inactive_fg]="#526270" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#34548A" + +# Cpu box outline color +theme[cpu_box]="#526270" + +# Memory/disks box outline color +theme[mem_box]="#526270" + +# Net up/down box outline color +theme[net_box]="#526270" + +# Processes box outline color +theme[proc_box]="#526270" + +# Box divider line and small boxes line color +theme[div_line]="#526270" + +# Temperature graph colors +theme[temp_start]="#33635C" +theme[temp_mid]="#8f5E15" +theme[temp_end]="#8C4351" + +# CPU graph colors +theme[cpu_start]="#33635C" +theme[cpu_mid]="#8f5E15" +theme[cpu_end]="#8C4351" + +# Mem/Disk free meter +theme[free_start]="#33635C" +theme[free_mid]="#8f5E15" +theme[free_end]="#8C4351" + +# Mem/Disk cached meter +theme[cached_start]="#33635C" +theme[cached_mid]="#8f5E15" +theme[cached_end]="#8C4351" + +# Mem/Disk available meter +theme[available_start]="#33635C" +theme[available_mid]="#8f5E15" +theme[available_end]="#8C4351" + +# Mem/Disk used meter +theme[used_start]="#33635C" +theme[used_mid]="#8f5E15" +theme[used_end]="#8C4351" + +# Download graph colors +theme[download_start]="#33635C" +theme[download_mid]="#8f5E15" +theme[download_end]="#8C4351" + +# Upload graph colors +theme[upload_start]="#33635C" +theme[upload_mid]="#8f5E15" +theme[upload_end]="#8C4351" diff --git a/colors/base16-tokyo-night-dark.theme b/colors/base16-tokyo-night-dark.theme new file mode 100644 index 0000000..1b5da4b --- /dev/null +++ b/colors/base16-tokyo-night-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo Night Dark +# author: Michaël Ball +# slug: tokyo-night-dark +# slug-underscored: tokyo_night_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1A1B26" + +# Main text color +theme[main_fg]="#A9B1D6" + +# Title color for boxes +theme[title]="#A9B1D6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#2AC3DE" + +# Background color of selected item in processes box +theme[selected_bg]="#16161E" + +# Foreground color of selected item in processes box +theme[selected_fg]="#A9B1D6" + +# Color of inactive/disabled text +theme[inactive_fg]="#787C99" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#2AC3DE" + +# Cpu box outline color +theme[cpu_box]="#787C99" + +# Memory/disks box outline color +theme[mem_box]="#787C99" + +# Net up/down box outline color +theme[net_box]="#787C99" + +# Processes box outline color +theme[proc_box]="#787C99" + +# Box divider line and small boxes line color +theme[div_line]="#787C99" + +# Temperature graph colors +theme[temp_start]="#9ECE6A" +theme[temp_mid]="#0DB9D7" +theme[temp_end]="#C0CAF5" + +# CPU graph colors +theme[cpu_start]="#9ECE6A" +theme[cpu_mid]="#0DB9D7" +theme[cpu_end]="#C0CAF5" + +# Mem/Disk free meter +theme[free_start]="#9ECE6A" +theme[free_mid]="#0DB9D7" +theme[free_end]="#C0CAF5" + +# Mem/Disk cached meter +theme[cached_start]="#9ECE6A" +theme[cached_mid]="#0DB9D7" +theme[cached_end]="#C0CAF5" + +# Mem/Disk available meter +theme[available_start]="#9ECE6A" +theme[available_mid]="#0DB9D7" +theme[available_end]="#C0CAF5" + +# Mem/Disk used meter +theme[used_start]="#9ECE6A" +theme[used_mid]="#0DB9D7" +theme[used_end]="#C0CAF5" + +# Download graph colors +theme[download_start]="#9ECE6A" +theme[download_mid]="#0DB9D7" +theme[download_end]="#C0CAF5" + +# Upload graph colors +theme[upload_start]="#9ECE6A" +theme[upload_mid]="#0DB9D7" +theme[upload_end]="#C0CAF5" diff --git a/colors/base16-tokyo-night-light.theme b/colors/base16-tokyo-night-light.theme new file mode 100644 index 0000000..5b3e982 --- /dev/null +++ b/colors/base16-tokyo-night-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo Night Light +# author: Michaël Ball +# slug: tokyo-night-light +# slug-underscored: tokyo_night_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#D5D6DB" + +# Main text color +theme[main_fg]="#343B59" + +# Title color for boxes +theme[title]="#343B59" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#34548A" + +# Background color of selected item in processes box +theme[selected_bg]="#CBCCD1" + +# Foreground color of selected item in processes box +theme[selected_fg]="#343B59" + +# Color of inactive/disabled text +theme[inactive_fg]="#4C505E" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#34548A" + +# Cpu box outline color +theme[cpu_box]="#4C505E" + +# Memory/disks box outline color +theme[mem_box]="#4C505E" + +# Net up/down box outline color +theme[net_box]="#4C505E" + +# Processes box outline color +theme[proc_box]="#4C505E" + +# Box divider line and small boxes line color +theme[div_line]="#4C505E" + +# Temperature graph colors +theme[temp_start]="#485E30" +theme[temp_mid]="#166775" +theme[temp_end]="#343B58" + +# CPU graph colors +theme[cpu_start]="#485E30" +theme[cpu_mid]="#166775" +theme[cpu_end]="#343B58" + +# Mem/Disk free meter +theme[free_start]="#485E30" +theme[free_mid]="#166775" +theme[free_end]="#343B58" + +# Mem/Disk cached meter +theme[cached_start]="#485E30" +theme[cached_mid]="#166775" +theme[cached_end]="#343B58" + +# Mem/Disk available meter +theme[available_start]="#485E30" +theme[available_mid]="#166775" +theme[available_end]="#343B58" + +# Mem/Disk used meter +theme[used_start]="#485E30" +theme[used_mid]="#166775" +theme[used_end]="#343B58" + +# Download graph colors +theme[download_start]="#485E30" +theme[download_mid]="#166775" +theme[download_end]="#343B58" + +# Upload graph colors +theme[upload_start]="#485E30" +theme[upload_mid]="#166775" +theme[upload_end]="#343B58" diff --git a/colors/base16-tokyo-night-moon.theme b/colors/base16-tokyo-night-moon.theme new file mode 100644 index 0000000..23aef8a --- /dev/null +++ b/colors/base16-tokyo-night-moon.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo Night Moon +# author: Ólafur Bjarki Bogason +# slug: tokyo-night-moon +# slug-underscored: tokyo_night_moon +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#222436" + +# Main text color +theme[main_fg]="#3b4261" + +# Title color for boxes +theme[title]="#3b4261" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#82aaff" + +# Background color of selected item in processes box +theme[selected_bg]="#1e2030" + +# Foreground color of selected item in processes box +theme[selected_fg]="#3b4261" + +# Color of inactive/disabled text +theme[inactive_fg]="#828bb8" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#82aaff" + +# Cpu box outline color +theme[cpu_box]="#828bb8" + +# Memory/disks box outline color +theme[mem_box]="#828bb8" + +# Net up/down box outline color +theme[net_box]="#828bb8" + +# Processes box outline color +theme[proc_box]="#828bb8" + +# Box divider line and small boxes line color +theme[div_line]="#828bb8" + +# Temperature graph colors +theme[temp_start]="#c3e88d" +theme[temp_mid]="#ffc777" +theme[temp_end]="#ff757f" + +# CPU graph colors +theme[cpu_start]="#c3e88d" +theme[cpu_mid]="#ffc777" +theme[cpu_end]="#ff757f" + +# Mem/Disk free meter +theme[free_start]="#c3e88d" +theme[free_mid]="#ffc777" +theme[free_end]="#ff757f" + +# Mem/Disk cached meter +theme[cached_start]="#c3e88d" +theme[cached_mid]="#ffc777" +theme[cached_end]="#ff757f" + +# Mem/Disk available meter +theme[available_start]="#c3e88d" +theme[available_mid]="#ffc777" +theme[available_end]="#ff757f" + +# Mem/Disk used meter +theme[used_start]="#c3e88d" +theme[used_mid]="#ffc777" +theme[used_end]="#ff757f" + +# Download graph colors +theme[download_start]="#c3e88d" +theme[download_mid]="#ffc777" +theme[download_end]="#ff757f" + +# Upload graph colors +theme[upload_start]="#c3e88d" +theme[upload_mid]="#ffc777" +theme[upload_end]="#ff757f" diff --git a/colors/base16-tokyo-night-storm.theme b/colors/base16-tokyo-night-storm.theme new file mode 100644 index 0000000..c34e402 --- /dev/null +++ b/colors/base16-tokyo-night-storm.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo Night Storm +# author: Michaël Ball +# slug: tokyo-night-storm +# slug-underscored: tokyo_night_storm +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#24283B" + +# Main text color +theme[main_fg]="#A9B1D6" + +# Title color for boxes +theme[title]="#A9B1D6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#2AC3DE" + +# Background color of selected item in processes box +theme[selected_bg]="#16161E" + +# Foreground color of selected item in processes box +theme[selected_fg]="#A9B1D6" + +# Color of inactive/disabled text +theme[inactive_fg]="#787C99" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#2AC3DE" + +# Cpu box outline color +theme[cpu_box]="#787C99" + +# Memory/disks box outline color +theme[mem_box]="#787C99" + +# Net up/down box outline color +theme[net_box]="#787C99" + +# Processes box outline color +theme[proc_box]="#787C99" + +# Box divider line and small boxes line color +theme[div_line]="#787C99" + +# Temperature graph colors +theme[temp_start]="#9ECE6A" +theme[temp_mid]="#0DB9D7" +theme[temp_end]="#C0CAF5" + +# CPU graph colors +theme[cpu_start]="#9ECE6A" +theme[cpu_mid]="#0DB9D7" +theme[cpu_end]="#C0CAF5" + +# Mem/Disk free meter +theme[free_start]="#9ECE6A" +theme[free_mid]="#0DB9D7" +theme[free_end]="#C0CAF5" + +# Mem/Disk cached meter +theme[cached_start]="#9ECE6A" +theme[cached_mid]="#0DB9D7" +theme[cached_end]="#C0CAF5" + +# Mem/Disk available meter +theme[available_start]="#9ECE6A" +theme[available_mid]="#0DB9D7" +theme[available_end]="#C0CAF5" + +# Mem/Disk used meter +theme[used_start]="#9ECE6A" +theme[used_mid]="#0DB9D7" +theme[used_end]="#C0CAF5" + +# Download graph colors +theme[download_start]="#9ECE6A" +theme[download_mid]="#0DB9D7" +theme[download_end]="#C0CAF5" + +# Upload graph colors +theme[upload_start]="#9ECE6A" +theme[upload_mid]="#0DB9D7" +theme[upload_end]="#C0CAF5" diff --git a/colors/base16-tokyo-night-terminal-dark.theme b/colors/base16-tokyo-night-terminal-dark.theme new file mode 100644 index 0000000..0920d30 --- /dev/null +++ b/colors/base16-tokyo-night-terminal-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo Night Terminal Dark +# author: Michaël Ball +# slug: tokyo-night-terminal-dark +# slug-underscored: tokyo_night_terminal_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#16161E" + +# Main text color +theme[main_fg]="#787C99" + +# Title color for boxes +theme[title]="#787C99" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7AA2F7" + +# Background color of selected item in processes box +theme[selected_bg]="#1A1B26" + +# Foreground color of selected item in processes box +theme[selected_fg]="#787C99" + +# Color of inactive/disabled text +theme[inactive_fg]="#787C99" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7AA2F7" + +# Cpu box outline color +theme[cpu_box]="#787C99" + +# Memory/disks box outline color +theme[mem_box]="#787C99" + +# Net up/down box outline color +theme[net_box]="#787C99" + +# Processes box outline color +theme[proc_box]="#787C99" + +# Box divider line and small boxes line color +theme[div_line]="#787C99" + +# Temperature graph colors +theme[temp_start]="#41A6B5" +theme[temp_mid]="#E0AF68" +theme[temp_end]="#F7768E" + +# CPU graph colors +theme[cpu_start]="#41A6B5" +theme[cpu_mid]="#E0AF68" +theme[cpu_end]="#F7768E" + +# Mem/Disk free meter +theme[free_start]="#41A6B5" +theme[free_mid]="#E0AF68" +theme[free_end]="#F7768E" + +# Mem/Disk cached meter +theme[cached_start]="#41A6B5" +theme[cached_mid]="#E0AF68" +theme[cached_end]="#F7768E" + +# Mem/Disk available meter +theme[available_start]="#41A6B5" +theme[available_mid]="#E0AF68" +theme[available_end]="#F7768E" + +# Mem/Disk used meter +theme[used_start]="#41A6B5" +theme[used_mid]="#E0AF68" +theme[used_end]="#F7768E" + +# Download graph colors +theme[download_start]="#41A6B5" +theme[download_mid]="#E0AF68" +theme[download_end]="#F7768E" + +# Upload graph colors +theme[upload_start]="#41A6B5" +theme[upload_mid]="#E0AF68" +theme[upload_end]="#F7768E" diff --git a/colors/base16-tokyo-night-terminal-light.theme b/colors/base16-tokyo-night-terminal-light.theme new file mode 100644 index 0000000..d1bcbe2 --- /dev/null +++ b/colors/base16-tokyo-night-terminal-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo Night Terminal Light +# author: Michaël Ball +# slug: tokyo-night-terminal-light +# slug-underscored: tokyo_night_terminal_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#D5D6DB" + +# Main text color +theme[main_fg]="#4C505E" + +# Title color for boxes +theme[title]="#4C505E" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#34548A" + +# Background color of selected item in processes box +theme[selected_bg]="#CBCCD1" + +# Foreground color of selected item in processes box +theme[selected_fg]="#4C505E" + +# Color of inactive/disabled text +theme[inactive_fg]="#4C505E" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#34548A" + +# Cpu box outline color +theme[cpu_box]="#4C505E" + +# Memory/disks box outline color +theme[mem_box]="#4C505E" + +# Net up/down box outline color +theme[net_box]="#4C505E" + +# Processes box outline color +theme[proc_box]="#4C505E" + +# Box divider line and small boxes line color +theme[div_line]="#4C505E" + +# Temperature graph colors +theme[temp_start]="#33635C" +theme[temp_mid]="#8F5E15" +theme[temp_end]="#8C4351" + +# CPU graph colors +theme[cpu_start]="#33635C" +theme[cpu_mid]="#8F5E15" +theme[cpu_end]="#8C4351" + +# Mem/Disk free meter +theme[free_start]="#33635C" +theme[free_mid]="#8F5E15" +theme[free_end]="#8C4351" + +# Mem/Disk cached meter +theme[cached_start]="#33635C" +theme[cached_mid]="#8F5E15" +theme[cached_end]="#8C4351" + +# Mem/Disk available meter +theme[available_start]="#33635C" +theme[available_mid]="#8F5E15" +theme[available_end]="#8C4351" + +# Mem/Disk used meter +theme[used_start]="#33635C" +theme[used_mid]="#8F5E15" +theme[used_end]="#8C4351" + +# Download graph colors +theme[download_start]="#33635C" +theme[download_mid]="#8F5E15" +theme[download_end]="#8C4351" + +# Upload graph colors +theme[upload_start]="#33635C" +theme[upload_mid]="#8F5E15" +theme[upload_end]="#8C4351" diff --git a/colors/base16-tokyo-night-terminal-storm.theme b/colors/base16-tokyo-night-terminal-storm.theme new file mode 100644 index 0000000..5fc99da --- /dev/null +++ b/colors/base16-tokyo-night-terminal-storm.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyo Night Terminal Storm +# author: Michaël Ball +# slug: tokyo-night-terminal-storm +# slug-underscored: tokyo_night_terminal_storm +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#24283B" + +# Main text color +theme[main_fg]="#787C99" + +# Title color for boxes +theme[title]="#787C99" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7AA2F7" + +# Background color of selected item in processes box +theme[selected_bg]="#1A1B26" + +# Foreground color of selected item in processes box +theme[selected_fg]="#787C99" + +# Color of inactive/disabled text +theme[inactive_fg]="#787C99" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7AA2F7" + +# Cpu box outline color +theme[cpu_box]="#787C99" + +# Memory/disks box outline color +theme[mem_box]="#787C99" + +# Net up/down box outline color +theme[net_box]="#787C99" + +# Processes box outline color +theme[proc_box]="#787C99" + +# Box divider line and small boxes line color +theme[div_line]="#787C99" + +# Temperature graph colors +theme[temp_start]="#41A6B5" +theme[temp_mid]="#E0AF68" +theme[temp_end]="#F7768E" + +# CPU graph colors +theme[cpu_start]="#41A6B5" +theme[cpu_mid]="#E0AF68" +theme[cpu_end]="#F7768E" + +# Mem/Disk free meter +theme[free_start]="#41A6B5" +theme[free_mid]="#E0AF68" +theme[free_end]="#F7768E" + +# Mem/Disk cached meter +theme[cached_start]="#41A6B5" +theme[cached_mid]="#E0AF68" +theme[cached_end]="#F7768E" + +# Mem/Disk available meter +theme[available_start]="#41A6B5" +theme[available_mid]="#E0AF68" +theme[available_end]="#F7768E" + +# Mem/Disk used meter +theme[used_start]="#41A6B5" +theme[used_mid]="#E0AF68" +theme[used_end]="#F7768E" + +# Download graph colors +theme[download_start]="#41A6B5" +theme[download_mid]="#E0AF68" +theme[download_end]="#F7768E" + +# Upload graph colors +theme[upload_start]="#41A6B5" +theme[upload_mid]="#E0AF68" +theme[upload_end]="#F7768E" diff --git a/colors/base16-tokyodark-terminal.theme b/colors/base16-tokyodark-terminal.theme new file mode 100644 index 0000000..38b1d73 --- /dev/null +++ b/colors/base16-tokyodark-terminal.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyodark Terminal +# author: Tiagovla (https://github.com/tiagovla/) +# slug: tokyodark-terminal +# slug-underscored: tokyodark_terminal +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#11121d" + +# Main text color +theme[main_fg]="#a0a8cd" + +# Title color for boxes +theme[title]="#a0a8cd" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7199ee" + +# Background color of selected item in processes box +theme[selected_bg]="#1A1B2A" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a0a8cd" + +# Color of inactive/disabled text +theme[inactive_fg]="#4a5057" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7199ee" + +# Cpu box outline color +theme[cpu_box]="#4a5057" + +# Memory/disks box outline color +theme[mem_box]="#4a5057" + +# Net up/down box outline color +theme[net_box]="#4a5057" + +# Processes box outline color +theme[proc_box]="#4a5057" + +# Box divider line and small boxes line color +theme[div_line]="#4a5057" + +# Temperature graph colors +theme[temp_start]="#95c561" +theme[temp_mid]="#d7a65f" +theme[temp_end]="#ee6d85" + +# CPU graph colors +theme[cpu_start]="#95c561" +theme[cpu_mid]="#d7a65f" +theme[cpu_end]="#ee6d85" + +# Mem/Disk free meter +theme[free_start]="#95c561" +theme[free_mid]="#d7a65f" +theme[free_end]="#ee6d85" + +# Mem/Disk cached meter +theme[cached_start]="#95c561" +theme[cached_mid]="#d7a65f" +theme[cached_end]="#ee6d85" + +# Mem/Disk available meter +theme[available_start]="#95c561" +theme[available_mid]="#d7a65f" +theme[available_end]="#ee6d85" + +# Mem/Disk used meter +theme[used_start]="#95c561" +theme[used_mid]="#d7a65f" +theme[used_end]="#ee6d85" + +# Download graph colors +theme[download_start]="#95c561" +theme[download_mid]="#d7a65f" +theme[download_end]="#ee6d85" + +# Upload graph colors +theme[upload_start]="#95c561" +theme[upload_mid]="#d7a65f" +theme[upload_end]="#ee6d85" diff --git a/colors/base16-tokyodark.theme b/colors/base16-tokyodark.theme new file mode 100644 index 0000000..598dbc9 --- /dev/null +++ b/colors/base16-tokyodark.theme @@ -0,0 +1,90 @@ +# +# +# name: Tokyodark +# author: Jamy Golden (https://github.com/JamyGolden), Based on Tokyodark.nvim (https://github.com/tiagovla/tokyodark.nvim) +# slug: tokyodark +# slug-underscored: tokyodark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#11121d" + +# Main text color +theme[main_fg]="#a0a8cd" + +# Title color for boxes +theme[title]="#a0a8cd" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7199ee" + +# Background color of selected item in processes box +theme[selected_bg]="#212234" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a0a8cd" + +# Color of inactive/disabled text +theme[inactive_fg]="#4a5057" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7199ee" + +# Cpu box outline color +theme[cpu_box]="#4a5057" + +# Memory/disks box outline color +theme[mem_box]="#4a5057" + +# Net up/down box outline color +theme[net_box]="#4a5057" + +# Processes box outline color +theme[proc_box]="#4a5057" + +# Box divider line and small boxes line color +theme[div_line]="#4a5057" + +# Temperature graph colors +theme[temp_start]="#95c561" +theme[temp_mid]="#d7a65f" +theme[temp_end]="#ee6d85" + +# CPU graph colors +theme[cpu_start]="#95c561" +theme[cpu_mid]="#d7a65f" +theme[cpu_end]="#ee6d85" + +# Mem/Disk free meter +theme[free_start]="#95c561" +theme[free_mid]="#d7a65f" +theme[free_end]="#ee6d85" + +# Mem/Disk cached meter +theme[cached_start]="#95c561" +theme[cached_mid]="#d7a65f" +theme[cached_end]="#ee6d85" + +# Mem/Disk available meter +theme[available_start]="#95c561" +theme[available_mid]="#d7a65f" +theme[available_end]="#ee6d85" + +# Mem/Disk used meter +theme[used_start]="#95c561" +theme[used_mid]="#d7a65f" +theme[used_end]="#ee6d85" + +# Download graph colors +theme[download_start]="#95c561" +theme[download_mid]="#d7a65f" +theme[download_end]="#ee6d85" + +# Upload graph colors +theme[upload_start]="#95c561" +theme[upload_mid]="#d7a65f" +theme[upload_end]="#ee6d85" diff --git a/colors/base16-tomorrow-night-eighties.theme b/colors/base16-tomorrow-night-eighties.theme new file mode 100644 index 0000000..f0a05aa --- /dev/null +++ b/colors/base16-tomorrow-night-eighties.theme @@ -0,0 +1,90 @@ +# +# +# name: Tomorrow Night Eighties +# author: Chris Kempson (http://chriskempson.com) +# slug: tomorrow-night-eighties +# slug-underscored: tomorrow_night_eighties +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2d2d2d" + +# Main text color +theme[main_fg]="#cccccc" + +# Title color for boxes +theme[title]="#cccccc" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6699cc" + +# Background color of selected item in processes box +theme[selected_bg]="#393939" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cccccc" + +# Color of inactive/disabled text +theme[inactive_fg]="#b4b7b4" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6699cc" + +# Cpu box outline color +theme[cpu_box]="#b4b7b4" + +# Memory/disks box outline color +theme[mem_box]="#b4b7b4" + +# Net up/down box outline color +theme[net_box]="#b4b7b4" + +# Processes box outline color +theme[proc_box]="#b4b7b4" + +# Box divider line and small boxes line color +theme[div_line]="#b4b7b4" + +# Temperature graph colors +theme[temp_start]="#99cc99" +theme[temp_mid]="#ffcc66" +theme[temp_end]="#f2777a" + +# CPU graph colors +theme[cpu_start]="#99cc99" +theme[cpu_mid]="#ffcc66" +theme[cpu_end]="#f2777a" + +# Mem/Disk free meter +theme[free_start]="#99cc99" +theme[free_mid]="#ffcc66" +theme[free_end]="#f2777a" + +# Mem/Disk cached meter +theme[cached_start]="#99cc99" +theme[cached_mid]="#ffcc66" +theme[cached_end]="#f2777a" + +# Mem/Disk available meter +theme[available_start]="#99cc99" +theme[available_mid]="#ffcc66" +theme[available_end]="#f2777a" + +# Mem/Disk used meter +theme[used_start]="#99cc99" +theme[used_mid]="#ffcc66" +theme[used_end]="#f2777a" + +# Download graph colors +theme[download_start]="#99cc99" +theme[download_mid]="#ffcc66" +theme[download_end]="#f2777a" + +# Upload graph colors +theme[upload_start]="#99cc99" +theme[upload_mid]="#ffcc66" +theme[upload_end]="#f2777a" diff --git a/colors/base16-tomorrow-night.theme b/colors/base16-tomorrow-night.theme new file mode 100644 index 0000000..2176d3c --- /dev/null +++ b/colors/base16-tomorrow-night.theme @@ -0,0 +1,90 @@ +# +# +# name: Tomorrow Night +# author: Chris Kempson (http://chriskempson.com) +# slug: tomorrow-night +# slug-underscored: tomorrow_night +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1d1f21" + +# Main text color +theme[main_fg]="#c5c8c6" + +# Title color for boxes +theme[title]="#c5c8c6" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#81a2be" + +# Background color of selected item in processes box +theme[selected_bg]="#282a2e" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c5c8c6" + +# Color of inactive/disabled text +theme[inactive_fg]="#b4b7b4" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#81a2be" + +# Cpu box outline color +theme[cpu_box]="#b4b7b4" + +# Memory/disks box outline color +theme[mem_box]="#b4b7b4" + +# Net up/down box outline color +theme[net_box]="#b4b7b4" + +# Processes box outline color +theme[proc_box]="#b4b7b4" + +# Box divider line and small boxes line color +theme[div_line]="#b4b7b4" + +# Temperature graph colors +theme[temp_start]="#b5bd68" +theme[temp_mid]="#f0c674" +theme[temp_end]="#cc6666" + +# CPU graph colors +theme[cpu_start]="#b5bd68" +theme[cpu_mid]="#f0c674" +theme[cpu_end]="#cc6666" + +# Mem/Disk free meter +theme[free_start]="#b5bd68" +theme[free_mid]="#f0c674" +theme[free_end]="#cc6666" + +# Mem/Disk cached meter +theme[cached_start]="#b5bd68" +theme[cached_mid]="#f0c674" +theme[cached_end]="#cc6666" + +# Mem/Disk available meter +theme[available_start]="#b5bd68" +theme[available_mid]="#f0c674" +theme[available_end]="#cc6666" + +# Mem/Disk used meter +theme[used_start]="#b5bd68" +theme[used_mid]="#f0c674" +theme[used_end]="#cc6666" + +# Download graph colors +theme[download_start]="#b5bd68" +theme[download_mid]="#f0c674" +theme[download_end]="#cc6666" + +# Upload graph colors +theme[upload_start]="#b5bd68" +theme[upload_mid]="#f0c674" +theme[upload_end]="#cc6666" diff --git a/colors/base16-tomorrow.theme b/colors/base16-tomorrow.theme new file mode 100644 index 0000000..42385ae --- /dev/null +++ b/colors/base16-tomorrow.theme @@ -0,0 +1,90 @@ +# +# +# name: Tomorrow +# author: Chris Kempson (http://chriskempson.com) +# slug: tomorrow +# slug-underscored: tomorrow +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ffffff" + +# Main text color +theme[main_fg]="#4d4d4c" + +# Title color for boxes +theme[title]="#4d4d4c" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#4271ae" + +# Background color of selected item in processes box +theme[selected_bg]="#e0e0e0" + +# Foreground color of selected item in processes box +theme[selected_fg]="#4d4d4c" + +# Color of inactive/disabled text +theme[inactive_fg]="#969896" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#4271ae" + +# Cpu box outline color +theme[cpu_box]="#969896" + +# Memory/disks box outline color +theme[mem_box]="#969896" + +# Net up/down box outline color +theme[net_box]="#969896" + +# Processes box outline color +theme[proc_box]="#969896" + +# Box divider line and small boxes line color +theme[div_line]="#969896" + +# Temperature graph colors +theme[temp_start]="#718c00" +theme[temp_mid]="#eab700" +theme[temp_end]="#c82829" + +# CPU graph colors +theme[cpu_start]="#718c00" +theme[cpu_mid]="#eab700" +theme[cpu_end]="#c82829" + +# Mem/Disk free meter +theme[free_start]="#718c00" +theme[free_mid]="#eab700" +theme[free_end]="#c82829" + +# Mem/Disk cached meter +theme[cached_start]="#718c00" +theme[cached_mid]="#eab700" +theme[cached_end]="#c82829" + +# Mem/Disk available meter +theme[available_start]="#718c00" +theme[available_mid]="#eab700" +theme[available_end]="#c82829" + +# Mem/Disk used meter +theme[used_start]="#718c00" +theme[used_mid]="#eab700" +theme[used_end]="#c82829" + +# Download graph colors +theme[download_start]="#718c00" +theme[download_mid]="#eab700" +theme[download_end]="#c82829" + +# Upload graph colors +theme[upload_start]="#718c00" +theme[upload_mid]="#eab700" +theme[upload_end]="#c82829" diff --git a/colors/base16-tube.theme b/colors/base16-tube.theme new file mode 100644 index 0000000..e42abbd --- /dev/null +++ b/colors/base16-tube.theme @@ -0,0 +1,90 @@ +# +# +# name: London Tube +# author: Jan T. Sott +# slug: tube +# slug-underscored: tube +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#231f20" + +# Main text color +theme[main_fg]="#d9d8d8" + +# Title color for boxes +theme[title]="#d9d8d8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#009ddc" + +# Background color of selected item in processes box +theme[selected_bg]="#1c3f95" + +# Foreground color of selected item in processes box +theme[selected_fg]="#d9d8d8" + +# Color of inactive/disabled text +theme[inactive_fg]="#959ca1" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#009ddc" + +# Cpu box outline color +theme[cpu_box]="#959ca1" + +# Memory/disks box outline color +theme[mem_box]="#959ca1" + +# Net up/down box outline color +theme[net_box]="#959ca1" + +# Processes box outline color +theme[proc_box]="#959ca1" + +# Box divider line and small boxes line color +theme[div_line]="#959ca1" + +# Temperature graph colors +theme[temp_start]="#00853e" +theme[temp_mid]="#ffd204" +theme[temp_end]="#ee2e24" + +# CPU graph colors +theme[cpu_start]="#00853e" +theme[cpu_mid]="#ffd204" +theme[cpu_end]="#ee2e24" + +# Mem/Disk free meter +theme[free_start]="#00853e" +theme[free_mid]="#ffd204" +theme[free_end]="#ee2e24" + +# Mem/Disk cached meter +theme[cached_start]="#00853e" +theme[cached_mid]="#ffd204" +theme[cached_end]="#ee2e24" + +# Mem/Disk available meter +theme[available_start]="#00853e" +theme[available_mid]="#ffd204" +theme[available_end]="#ee2e24" + +# Mem/Disk used meter +theme[used_start]="#00853e" +theme[used_mid]="#ffd204" +theme[used_end]="#ee2e24" + +# Download graph colors +theme[download_start]="#00853e" +theme[download_mid]="#ffd204" +theme[download_end]="#ee2e24" + +# Upload graph colors +theme[upload_start]="#00853e" +theme[upload_mid]="#ffd204" +theme[upload_end]="#ee2e24" diff --git a/colors/base16-twilight.theme b/colors/base16-twilight.theme new file mode 100644 index 0000000..d118930 --- /dev/null +++ b/colors/base16-twilight.theme @@ -0,0 +1,90 @@ +# +# +# name: Twilight +# author: David Hart (https://github.com/hartbit) +# slug: twilight +# slug-underscored: twilight +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#1e1e1e" + +# Main text color +theme[main_fg]="#a7a7a7" + +# Title color for boxes +theme[title]="#a7a7a7" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7587a6" + +# Background color of selected item in processes box +theme[selected_bg]="#323537" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a7a7a7" + +# Color of inactive/disabled text +theme[inactive_fg]="#838184" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7587a6" + +# Cpu box outline color +theme[cpu_box]="#838184" + +# Memory/disks box outline color +theme[mem_box]="#838184" + +# Net up/down box outline color +theme[net_box]="#838184" + +# Processes box outline color +theme[proc_box]="#838184" + +# Box divider line and small boxes line color +theme[div_line]="#838184" + +# Temperature graph colors +theme[temp_start]="#8f9d6a" +theme[temp_mid]="#f9ee98" +theme[temp_end]="#cf6a4c" + +# CPU graph colors +theme[cpu_start]="#8f9d6a" +theme[cpu_mid]="#f9ee98" +theme[cpu_end]="#cf6a4c" + +# Mem/Disk free meter +theme[free_start]="#8f9d6a" +theme[free_mid]="#f9ee98" +theme[free_end]="#cf6a4c" + +# Mem/Disk cached meter +theme[cached_start]="#8f9d6a" +theme[cached_mid]="#f9ee98" +theme[cached_end]="#cf6a4c" + +# Mem/Disk available meter +theme[available_start]="#8f9d6a" +theme[available_mid]="#f9ee98" +theme[available_end]="#cf6a4c" + +# Mem/Disk used meter +theme[used_start]="#8f9d6a" +theme[used_mid]="#f9ee98" +theme[used_end]="#cf6a4c" + +# Download graph colors +theme[download_start]="#8f9d6a" +theme[download_mid]="#f9ee98" +theme[download_end]="#cf6a4c" + +# Upload graph colors +theme[upload_start]="#8f9d6a" +theme[upload_mid]="#f9ee98" +theme[upload_end]="#cf6a4c" diff --git a/colors/base16-unikitty-dark.theme b/colors/base16-unikitty-dark.theme new file mode 100644 index 0000000..ba6b74c --- /dev/null +++ b/colors/base16-unikitty-dark.theme @@ -0,0 +1,90 @@ +# +# +# name: Unikitty Dark +# author: Josh W Lewis (@joshwlewis) +# slug: unikitty-dark +# slug-underscored: unikitty_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2e2a31" + +# Main text color +theme[main_fg]="#bcbabe" + +# Title color for boxes +theme[title]="#bcbabe" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#796af5" + +# Background color of selected item in processes box +theme[selected_bg]="#4a464d" + +# Foreground color of selected item in processes box +theme[selected_fg]="#bcbabe" + +# Color of inactive/disabled text +theme[inactive_fg]="#9f9da2" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#796af5" + +# Cpu box outline color +theme[cpu_box]="#9f9da2" + +# Memory/disks box outline color +theme[mem_box]="#9f9da2" + +# Net up/down box outline color +theme[net_box]="#9f9da2" + +# Processes box outline color +theme[proc_box]="#9f9da2" + +# Box divider line and small boxes line color +theme[div_line]="#9f9da2" + +# Temperature graph colors +theme[temp_start]="#17ad98" +theme[temp_mid]="#dc8a0e" +theme[temp_end]="#d8137f" + +# CPU graph colors +theme[cpu_start]="#17ad98" +theme[cpu_mid]="#dc8a0e" +theme[cpu_end]="#d8137f" + +# Mem/Disk free meter +theme[free_start]="#17ad98" +theme[free_mid]="#dc8a0e" +theme[free_end]="#d8137f" + +# Mem/Disk cached meter +theme[cached_start]="#17ad98" +theme[cached_mid]="#dc8a0e" +theme[cached_end]="#d8137f" + +# Mem/Disk available meter +theme[available_start]="#17ad98" +theme[available_mid]="#dc8a0e" +theme[available_end]="#d8137f" + +# Mem/Disk used meter +theme[used_start]="#17ad98" +theme[used_mid]="#dc8a0e" +theme[used_end]="#d8137f" + +# Download graph colors +theme[download_start]="#17ad98" +theme[download_mid]="#dc8a0e" +theme[download_end]="#d8137f" + +# Upload graph colors +theme[upload_start]="#17ad98" +theme[upload_mid]="#dc8a0e" +theme[upload_end]="#d8137f" diff --git a/colors/base16-unikitty-light.theme b/colors/base16-unikitty-light.theme new file mode 100644 index 0000000..bb06f3a --- /dev/null +++ b/colors/base16-unikitty-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Unikitty Light +# author: Josh W Lewis (@joshwlewis) +# slug: unikitty-light +# slug-underscored: unikitty_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ffffff" + +# Main text color +theme[main_fg]="#6c696e" + +# Title color for boxes +theme[title]="#6c696e" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#775dff" + +# Background color of selected item in processes box +theme[selected_bg]="#e1e1e2" + +# Foreground color of selected item in processes box +theme[selected_fg]="#6c696e" + +# Color of inactive/disabled text +theme[inactive_fg]="#89878b" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#775dff" + +# Cpu box outline color +theme[cpu_box]="#89878b" + +# Memory/disks box outline color +theme[mem_box]="#89878b" + +# Net up/down box outline color +theme[net_box]="#89878b" + +# Processes box outline color +theme[proc_box]="#89878b" + +# Box divider line and small boxes line color +theme[div_line]="#89878b" + +# Temperature graph colors +theme[temp_start]="#17ad98" +theme[temp_mid]="#dc8a0e" +theme[temp_end]="#d8137f" + +# CPU graph colors +theme[cpu_start]="#17ad98" +theme[cpu_mid]="#dc8a0e" +theme[cpu_end]="#d8137f" + +# Mem/Disk free meter +theme[free_start]="#17ad98" +theme[free_mid]="#dc8a0e" +theme[free_end]="#d8137f" + +# Mem/Disk cached meter +theme[cached_start]="#17ad98" +theme[cached_mid]="#dc8a0e" +theme[cached_end]="#d8137f" + +# Mem/Disk available meter +theme[available_start]="#17ad98" +theme[available_mid]="#dc8a0e" +theme[available_end]="#d8137f" + +# Mem/Disk used meter +theme[used_start]="#17ad98" +theme[used_mid]="#dc8a0e" +theme[used_end]="#d8137f" + +# Download graph colors +theme[download_start]="#17ad98" +theme[download_mid]="#dc8a0e" +theme[download_end]="#d8137f" + +# Upload graph colors +theme[upload_start]="#17ad98" +theme[upload_mid]="#dc8a0e" +theme[upload_end]="#d8137f" diff --git a/colors/base16-unikitty-reversible.theme b/colors/base16-unikitty-reversible.theme new file mode 100644 index 0000000..2fe87c9 --- /dev/null +++ b/colors/base16-unikitty-reversible.theme @@ -0,0 +1,90 @@ +# +# +# name: Unikitty Reversible +# author: Josh W Lewis (@joshwlewis) +# slug: unikitty-reversible +# slug-underscored: unikitty_reversible +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#2e2a31" + +# Main text color +theme[main_fg]="#c3c2c4" + +# Title color for boxes +theme[title]="#c3c2c4" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7864fa" + +# Background color of selected item in processes box +theme[selected_bg]="#4b484e" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c3c2c4" + +# Color of inactive/disabled text +theme[inactive_fg]="#a5a3a6" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7864fa" + +# Cpu box outline color +theme[cpu_box]="#a5a3a6" + +# Memory/disks box outline color +theme[mem_box]="#a5a3a6" + +# Net up/down box outline color +theme[net_box]="#a5a3a6" + +# Processes box outline color +theme[proc_box]="#a5a3a6" + +# Box divider line and small boxes line color +theme[div_line]="#a5a3a6" + +# Temperature graph colors +theme[temp_start]="#17ad98" +theme[temp_mid]="#dc8a0e" +theme[temp_end]="#d8137f" + +# CPU graph colors +theme[cpu_start]="#17ad98" +theme[cpu_mid]="#dc8a0e" +theme[cpu_end]="#d8137f" + +# Mem/Disk free meter +theme[free_start]="#17ad98" +theme[free_mid]="#dc8a0e" +theme[free_end]="#d8137f" + +# Mem/Disk cached meter +theme[cached_start]="#17ad98" +theme[cached_mid]="#dc8a0e" +theme[cached_end]="#d8137f" + +# Mem/Disk available meter +theme[available_start]="#17ad98" +theme[available_mid]="#dc8a0e" +theme[available_end]="#d8137f" + +# Mem/Disk used meter +theme[used_start]="#17ad98" +theme[used_mid]="#dc8a0e" +theme[used_end]="#d8137f" + +# Download graph colors +theme[download_start]="#17ad98" +theme[download_mid]="#dc8a0e" +theme[download_end]="#d8137f" + +# Upload graph colors +theme[upload_start]="#17ad98" +theme[upload_mid]="#dc8a0e" +theme[upload_end]="#d8137f" diff --git a/colors/base16-uwunicorn.theme b/colors/base16-uwunicorn.theme new file mode 100644 index 0000000..2c564c9 --- /dev/null +++ b/colors/base16-uwunicorn.theme @@ -0,0 +1,90 @@ +# +# +# name: UwUnicorn +# author: Fernando Marques (https://github.com/RakkiUwU) and Gabriel Fontes (https://github.com/Misterio77) +# slug: uwunicorn +# slug-underscored: uwunicorn +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#241b26" + +# Main text color +theme[main_fg]="#eed5d9" + +# Title color for boxes +theme[title]="#eed5d9" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#6a9eb5" + +# Background color of selected item in processes box +theme[selected_bg]="#2f2a3f" + +# Foreground color of selected item in processes box +theme[selected_fg]="#eed5d9" + +# Color of inactive/disabled text +theme[inactive_fg]="#7e5f83" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#6a9eb5" + +# Cpu box outline color +theme[cpu_box]="#7e5f83" + +# Memory/disks box outline color +theme[mem_box]="#7e5f83" + +# Net up/down box outline color +theme[net_box]="#7e5f83" + +# Processes box outline color +theme[proc_box]="#7e5f83" + +# Box divider line and small boxes line color +theme[div_line]="#7e5f83" + +# Temperature graph colors +theme[temp_start]="#c965bf" +theme[temp_mid]="#a84a73" +theme[temp_end]="#877bb6" + +# CPU graph colors +theme[cpu_start]="#c965bf" +theme[cpu_mid]="#a84a73" +theme[cpu_end]="#877bb6" + +# Mem/Disk free meter +theme[free_start]="#c965bf" +theme[free_mid]="#a84a73" +theme[free_end]="#877bb6" + +# Mem/Disk cached meter +theme[cached_start]="#c965bf" +theme[cached_mid]="#a84a73" +theme[cached_end]="#877bb6" + +# Mem/Disk available meter +theme[available_start]="#c965bf" +theme[available_mid]="#a84a73" +theme[available_end]="#877bb6" + +# Mem/Disk used meter +theme[used_start]="#c965bf" +theme[used_mid]="#a84a73" +theme[used_end]="#877bb6" + +# Download graph colors +theme[download_start]="#c965bf" +theme[download_mid]="#a84a73" +theme[download_end]="#877bb6" + +# Upload graph colors +theme[upload_start]="#c965bf" +theme[upload_mid]="#a84a73" +theme[upload_end]="#877bb6" diff --git a/colors/base16-vesper.theme b/colors/base16-vesper.theme new file mode 100644 index 0000000..4e7ab42 --- /dev/null +++ b/colors/base16-vesper.theme @@ -0,0 +1,90 @@ +# +# +# name: Vesper +# author: FormalSnake (https://github.com/formalsnake) +# slug: vesper +# slug-underscored: vesper +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#101010" + +# Main text color +theme[main_fg]="#b7b7b7" + +# Title color for boxes +theme[title]="#b7b7b7" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#8eaaaa" + +# Background color of selected item in processes box +theme[selected_bg]="#232323" + +# Foreground color of selected item in processes box +theme[selected_fg]="#b7b7b7" + +# Color of inactive/disabled text +theme[inactive_fg]="#999999" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#8eaaaa" + +# Cpu box outline color +theme[cpu_box]="#999999" + +# Memory/disks box outline color +theme[mem_box]="#999999" + +# Net up/down box outline color +theme[net_box]="#999999" + +# Processes box outline color +theme[proc_box]="#999999" + +# Box divider line and small boxes line color +theme[div_line]="#999999" + +# Temperature graph colors +theme[temp_start]="#5f8787" +theme[temp_mid]="#ffc799" +theme[temp_end]="#de6e6e" + +# CPU graph colors +theme[cpu_start]="#5f8787" +theme[cpu_mid]="#ffc799" +theme[cpu_end]="#de6e6e" + +# Mem/Disk free meter +theme[free_start]="#5f8787" +theme[free_mid]="#ffc799" +theme[free_end]="#de6e6e" + +# Mem/Disk cached meter +theme[cached_start]="#5f8787" +theme[cached_mid]="#ffc799" +theme[cached_end]="#de6e6e" + +# Mem/Disk available meter +theme[available_start]="#5f8787" +theme[available_mid]="#ffc799" +theme[available_end]="#de6e6e" + +# Mem/Disk used meter +theme[used_start]="#5f8787" +theme[used_mid]="#ffc799" +theme[used_end]="#de6e6e" + +# Download graph colors +theme[download_start]="#5f8787" +theme[download_mid]="#ffc799" +theme[download_end]="#de6e6e" + +# Upload graph colors +theme[upload_start]="#5f8787" +theme[upload_mid]="#ffc799" +theme[upload_end]="#de6e6e" diff --git a/colors/base16-vice.theme b/colors/base16-vice.theme new file mode 100644 index 0000000..f82f616 --- /dev/null +++ b/colors/base16-vice.theme @@ -0,0 +1,90 @@ +# +# +# name: vice +# author: Thomas Leon Highbaugh thighbaugh@zoho.com +# slug: vice +# slug-underscored: vice +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#17191E" + +# Main text color +theme[main_fg]="#8b9cbe" + +# Title color for boxes +theme[title]="#8b9cbe" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#00eaff" + +# Background color of selected item in processes box +theme[selected_bg]="#22262d" + +# Foreground color of selected item in processes box +theme[selected_fg]="#8b9cbe" + +# Color of inactive/disabled text +theme[inactive_fg]="#555e70" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#00eaff" + +# Cpu box outline color +theme[cpu_box]="#555e70" + +# Memory/disks box outline color +theme[mem_box]="#555e70" + +# Net up/down box outline color +theme[net_box]="#555e70" + +# Processes box outline color +theme[proc_box]="#555e70" + +# Box divider line and small boxes line color +theme[div_line]="#555e70" + +# Temperature graph colors +theme[temp_start]="#0badff" +theme[temp_mid]="#f0ffaa" +theme[temp_end]="#ff29a8" + +# CPU graph colors +theme[cpu_start]="#0badff" +theme[cpu_mid]="#f0ffaa" +theme[cpu_end]="#ff29a8" + +# Mem/Disk free meter +theme[free_start]="#0badff" +theme[free_mid]="#f0ffaa" +theme[free_end]="#ff29a8" + +# Mem/Disk cached meter +theme[cached_start]="#0badff" +theme[cached_mid]="#f0ffaa" +theme[cached_end]="#ff29a8" + +# Mem/Disk available meter +theme[available_start]="#0badff" +theme[available_mid]="#f0ffaa" +theme[available_end]="#ff29a8" + +# Mem/Disk used meter +theme[used_start]="#0badff" +theme[used_mid]="#f0ffaa" +theme[used_end]="#ff29a8" + +# Download graph colors +theme[download_start]="#0badff" +theme[download_mid]="#f0ffaa" +theme[download_end]="#ff29a8" + +# Upload graph colors +theme[upload_start]="#0badff" +theme[upload_mid]="#f0ffaa" +theme[upload_end]="#ff29a8" diff --git a/colors/base16-vulcan.theme b/colors/base16-vulcan.theme new file mode 100644 index 0000000..4c55189 --- /dev/null +++ b/colors/base16-vulcan.theme @@ -0,0 +1,90 @@ +# +# +# name: vulcan +# author: Andrey Varfolomeev +# slug: vulcan +# slug-underscored: vulcan +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#041523" + +# Main text color +theme[main_fg]="#5b778c" + +# Title color for boxes +theme[title]="#5b778c" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#977d7c" + +# Background color of selected item in processes box +theme[selected_bg]="#122339" + +# Foreground color of selected item in processes box +theme[selected_fg]="#5b778c" + +# Color of inactive/disabled text +theme[inactive_fg]="#6b6977" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#977d7c" + +# Cpu box outline color +theme[cpu_box]="#6b6977" + +# Memory/disks box outline color +theme[mem_box]="#6b6977" + +# Net up/down box outline color +theme[net_box]="#6b6977" + +# Processes box outline color +theme[proc_box]="#6b6977" + +# Box divider line and small boxes line color +theme[div_line]="#6b6977" + +# Temperature graph colors +theme[temp_start]="#977d7c" +theme[temp_mid]="#adb4b9" +theme[temp_end]="#818591" + +# CPU graph colors +theme[cpu_start]="#977d7c" +theme[cpu_mid]="#adb4b9" +theme[cpu_end]="#818591" + +# Mem/Disk free meter +theme[free_start]="#977d7c" +theme[free_mid]="#adb4b9" +theme[free_end]="#818591" + +# Mem/Disk cached meter +theme[cached_start]="#977d7c" +theme[cached_mid]="#adb4b9" +theme[cached_end]="#818591" + +# Mem/Disk available meter +theme[available_start]="#977d7c" +theme[available_mid]="#adb4b9" +theme[available_end]="#818591" + +# Mem/Disk used meter +theme[used_start]="#977d7c" +theme[used_mid]="#adb4b9" +theme[used_end]="#818591" + +# Download graph colors +theme[download_start]="#977d7c" +theme[download_mid]="#adb4b9" +theme[download_end]="#818591" + +# Upload graph colors +theme[upload_start]="#977d7c" +theme[upload_mid]="#adb4b9" +theme[upload_end]="#818591" diff --git a/colors/base16-windows-10-light.theme b/colors/base16-windows-10-light.theme new file mode 100644 index 0000000..0fbf41a --- /dev/null +++ b/colors/base16-windows-10-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Windows 10 Light +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-10-light +# slug-underscored: windows_10_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#f2f2f2" + +# Main text color +theme[main_fg]="#767676" + +# Title color for boxes +theme[title]="#767676" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0037da" + +# Background color of selected item in processes box +theme[selected_bg]="#e5e5e5" + +# Foreground color of selected item in processes box +theme[selected_fg]="#767676" + +# Color of inactive/disabled text +theme[inactive_fg]="#ababab" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0037da" + +# Cpu box outline color +theme[cpu_box]="#ababab" + +# Memory/disks box outline color +theme[mem_box]="#ababab" + +# Net up/down box outline color +theme[net_box]="#ababab" + +# Processes box outline color +theme[proc_box]="#ababab" + +# Box divider line and small boxes line color +theme[div_line]="#ababab" + +# Temperature graph colors +theme[temp_start]="#13a10e" +theme[temp_mid]="#c19c00" +theme[temp_end]="#c50f1f" + +# CPU graph colors +theme[cpu_start]="#13a10e" +theme[cpu_mid]="#c19c00" +theme[cpu_end]="#c50f1f" + +# Mem/Disk free meter +theme[free_start]="#13a10e" +theme[free_mid]="#c19c00" +theme[free_end]="#c50f1f" + +# Mem/Disk cached meter +theme[cached_start]="#13a10e" +theme[cached_mid]="#c19c00" +theme[cached_end]="#c50f1f" + +# Mem/Disk available meter +theme[available_start]="#13a10e" +theme[available_mid]="#c19c00" +theme[available_end]="#c50f1f" + +# Mem/Disk used meter +theme[used_start]="#13a10e" +theme[used_mid]="#c19c00" +theme[used_end]="#c50f1f" + +# Download graph colors +theme[download_start]="#13a10e" +theme[download_mid]="#c19c00" +theme[download_end]="#c50f1f" + +# Upload graph colors +theme[upload_start]="#13a10e" +theme[upload_mid]="#c19c00" +theme[upload_end]="#c50f1f" diff --git a/colors/base16-windows-10.theme b/colors/base16-windows-10.theme new file mode 100644 index 0000000..f9aebfd --- /dev/null +++ b/colors/base16-windows-10.theme @@ -0,0 +1,90 @@ +# +# +# name: Windows 10 +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-10 +# slug-underscored: windows_10 +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#0c0c0c" + +# Main text color +theme[main_fg]="#cccccc" + +# Title color for boxes +theme[title]="#cccccc" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#3b78ff" + +# Background color of selected item in processes box +theme[selected_bg]="#2f2f2f" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cccccc" + +# Color of inactive/disabled text +theme[inactive_fg]="#b9b9b9" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#3b78ff" + +# Cpu box outline color +theme[cpu_box]="#b9b9b9" + +# Memory/disks box outline color +theme[mem_box]="#b9b9b9" + +# Net up/down box outline color +theme[net_box]="#b9b9b9" + +# Processes box outline color +theme[proc_box]="#b9b9b9" + +# Box divider line and small boxes line color +theme[div_line]="#b9b9b9" + +# Temperature graph colors +theme[temp_start]="#16c60c" +theme[temp_mid]="#f9f1a5" +theme[temp_end]="#e74856" + +# CPU graph colors +theme[cpu_start]="#16c60c" +theme[cpu_mid]="#f9f1a5" +theme[cpu_end]="#e74856" + +# Mem/Disk free meter +theme[free_start]="#16c60c" +theme[free_mid]="#f9f1a5" +theme[free_end]="#e74856" + +# Mem/Disk cached meter +theme[cached_start]="#16c60c" +theme[cached_mid]="#f9f1a5" +theme[cached_end]="#e74856" + +# Mem/Disk available meter +theme[available_start]="#16c60c" +theme[available_mid]="#f9f1a5" +theme[available_end]="#e74856" + +# Mem/Disk used meter +theme[used_start]="#16c60c" +theme[used_mid]="#f9f1a5" +theme[used_end]="#e74856" + +# Download graph colors +theme[download_start]="#16c60c" +theme[download_mid]="#f9f1a5" +theme[download_end]="#e74856" + +# Upload graph colors +theme[upload_start]="#16c60c" +theme[upload_mid]="#f9f1a5" +theme[upload_end]="#e74856" diff --git a/colors/base16-windows-95-light.theme b/colors/base16-windows-95-light.theme new file mode 100644 index 0000000..86b6951 --- /dev/null +++ b/colors/base16-windows-95-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Windows 95 Light +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-95-light +# slug-underscored: windows_95_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fcfcfc" + +# Main text color +theme[main_fg]="#545454" + +# Title color for boxes +theme[title]="#545454" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0000a8" + +# Background color of selected item in processes box +theme[selected_bg]="#e0e0e0" + +# Foreground color of selected item in processes box +theme[selected_fg]="#545454" + +# Color of inactive/disabled text +theme[inactive_fg]="#7e7e7e" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0000a8" + +# Cpu box outline color +theme[cpu_box]="#7e7e7e" + +# Memory/disks box outline color +theme[mem_box]="#7e7e7e" + +# Net up/down box outline color +theme[net_box]="#7e7e7e" + +# Processes box outline color +theme[proc_box]="#7e7e7e" + +# Box divider line and small boxes line color +theme[div_line]="#7e7e7e" + +# Temperature graph colors +theme[temp_start]="#00a800" +theme[temp_mid]="#a85400" +theme[temp_end]="#a80000" + +# CPU graph colors +theme[cpu_start]="#00a800" +theme[cpu_mid]="#a85400" +theme[cpu_end]="#a80000" + +# Mem/Disk free meter +theme[free_start]="#00a800" +theme[free_mid]="#a85400" +theme[free_end]="#a80000" + +# Mem/Disk cached meter +theme[cached_start]="#00a800" +theme[cached_mid]="#a85400" +theme[cached_end]="#a80000" + +# Mem/Disk available meter +theme[available_start]="#00a800" +theme[available_mid]="#a85400" +theme[available_end]="#a80000" + +# Mem/Disk used meter +theme[used_start]="#00a800" +theme[used_mid]="#a85400" +theme[used_end]="#a80000" + +# Download graph colors +theme[download_start]="#00a800" +theme[download_mid]="#a85400" +theme[download_end]="#a80000" + +# Upload graph colors +theme[upload_start]="#00a800" +theme[upload_mid]="#a85400" +theme[upload_end]="#a80000" diff --git a/colors/base16-windows-95.theme b/colors/base16-windows-95.theme new file mode 100644 index 0000000..44f77a6 --- /dev/null +++ b/colors/base16-windows-95.theme @@ -0,0 +1,90 @@ +# +# +# name: Windows 95 +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-95 +# slug-underscored: windows_95 +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#a8a8a8" + +# Title color for boxes +theme[title]="#a8a8a8" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#5454fc" + +# Background color of selected item in processes box +theme[selected_bg]="#1C1C1C" + +# Foreground color of selected item in processes box +theme[selected_fg]="#a8a8a8" + +# Color of inactive/disabled text +theme[inactive_fg]="#7e7e7e" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#5454fc" + +# Cpu box outline color +theme[cpu_box]="#7e7e7e" + +# Memory/disks box outline color +theme[mem_box]="#7e7e7e" + +# Net up/down box outline color +theme[net_box]="#7e7e7e" + +# Processes box outline color +theme[proc_box]="#7e7e7e" + +# Box divider line and small boxes line color +theme[div_line]="#7e7e7e" + +# Temperature graph colors +theme[temp_start]="#54fc54" +theme[temp_mid]="#fcfc54" +theme[temp_end]="#fc5454" + +# CPU graph colors +theme[cpu_start]="#54fc54" +theme[cpu_mid]="#fcfc54" +theme[cpu_end]="#fc5454" + +# Mem/Disk free meter +theme[free_start]="#54fc54" +theme[free_mid]="#fcfc54" +theme[free_end]="#fc5454" + +# Mem/Disk cached meter +theme[cached_start]="#54fc54" +theme[cached_mid]="#fcfc54" +theme[cached_end]="#fc5454" + +# Mem/Disk available meter +theme[available_start]="#54fc54" +theme[available_mid]="#fcfc54" +theme[available_end]="#fc5454" + +# Mem/Disk used meter +theme[used_start]="#54fc54" +theme[used_mid]="#fcfc54" +theme[used_end]="#fc5454" + +# Download graph colors +theme[download_start]="#54fc54" +theme[download_mid]="#fcfc54" +theme[download_end]="#fc5454" + +# Upload graph colors +theme[upload_start]="#54fc54" +theme[upload_mid]="#fcfc54" +theme[upload_end]="#fc5454" diff --git a/colors/base16-windows-highcontrast-light.theme b/colors/base16-windows-highcontrast-light.theme new file mode 100644 index 0000000..ee190da --- /dev/null +++ b/colors/base16-windows-highcontrast-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Windows High Contrast Light +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-highcontrast-light +# slug-underscored: windows_highcontrast_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#fcfcfc" + +# Main text color +theme[main_fg]="#545454" + +# Title color for boxes +theme[title]="#545454" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#000080" + +# Background color of selected item in processes box +theme[selected_bg]="#e8e8e8" + +# Foreground color of selected item in processes box +theme[selected_fg]="#545454" + +# Color of inactive/disabled text +theme[inactive_fg]="#7e7e7e" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#000080" + +# Cpu box outline color +theme[cpu_box]="#7e7e7e" + +# Memory/disks box outline color +theme[mem_box]="#7e7e7e" + +# Net up/down box outline color +theme[net_box]="#7e7e7e" + +# Processes box outline color +theme[proc_box]="#7e7e7e" + +# Box divider line and small boxes line color +theme[div_line]="#7e7e7e" + +# Temperature graph colors +theme[temp_start]="#008000" +theme[temp_mid]="#808000" +theme[temp_end]="#800000" + +# CPU graph colors +theme[cpu_start]="#008000" +theme[cpu_mid]="#808000" +theme[cpu_end]="#800000" + +# Mem/Disk free meter +theme[free_start]="#008000" +theme[free_mid]="#808000" +theme[free_end]="#800000" + +# Mem/Disk cached meter +theme[cached_start]="#008000" +theme[cached_mid]="#808000" +theme[cached_end]="#800000" + +# Mem/Disk available meter +theme[available_start]="#008000" +theme[available_mid]="#808000" +theme[available_end]="#800000" + +# Mem/Disk used meter +theme[used_start]="#008000" +theme[used_mid]="#808000" +theme[used_end]="#800000" + +# Download graph colors +theme[download_start]="#008000" +theme[download_mid]="#808000" +theme[download_end]="#800000" + +# Upload graph colors +theme[upload_start]="#008000" +theme[upload_mid]="#808000" +theme[upload_end]="#800000" diff --git a/colors/base16-windows-highcontrast.theme b/colors/base16-windows-highcontrast.theme new file mode 100644 index 0000000..ecbf1cc --- /dev/null +++ b/colors/base16-windows-highcontrast.theme @@ -0,0 +1,90 @@ +# +# +# name: Windows High Contrast +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-highcontrast +# slug-underscored: windows_highcontrast +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c0c0c0" + +# Title color for boxes +theme[title]="#c0c0c0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#5454fc" + +# Background color of selected item in processes box +theme[selected_bg]="#1C1C1C" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c0c0c0" + +# Color of inactive/disabled text +theme[inactive_fg]="#a2a2a2" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#5454fc" + +# Cpu box outline color +theme[cpu_box]="#a2a2a2" + +# Memory/disks box outline color +theme[mem_box]="#a2a2a2" + +# Net up/down box outline color +theme[net_box]="#a2a2a2" + +# Processes box outline color +theme[proc_box]="#a2a2a2" + +# Box divider line and small boxes line color +theme[div_line]="#a2a2a2" + +# Temperature graph colors +theme[temp_start]="#54fc54" +theme[temp_mid]="#fcfc54" +theme[temp_end]="#fc5454" + +# CPU graph colors +theme[cpu_start]="#54fc54" +theme[cpu_mid]="#fcfc54" +theme[cpu_end]="#fc5454" + +# Mem/Disk free meter +theme[free_start]="#54fc54" +theme[free_mid]="#fcfc54" +theme[free_end]="#fc5454" + +# Mem/Disk cached meter +theme[cached_start]="#54fc54" +theme[cached_mid]="#fcfc54" +theme[cached_end]="#fc5454" + +# Mem/Disk available meter +theme[available_start]="#54fc54" +theme[available_mid]="#fcfc54" +theme[available_end]="#fc5454" + +# Mem/Disk used meter +theme[used_start]="#54fc54" +theme[used_mid]="#fcfc54" +theme[used_end]="#fc5454" + +# Download graph colors +theme[download_start]="#54fc54" +theme[download_mid]="#fcfc54" +theme[download_end]="#fc5454" + +# Upload graph colors +theme[upload_start]="#54fc54" +theme[upload_mid]="#fcfc54" +theme[upload_end]="#fc5454" diff --git a/colors/base16-windows-nt-light.theme b/colors/base16-windows-nt-light.theme new file mode 100644 index 0000000..ea19042 --- /dev/null +++ b/colors/base16-windows-nt-light.theme @@ -0,0 +1,90 @@ +# +# +# name: Windows NT Light +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-nt-light +# slug-underscored: windows_nt_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +# Main bg +theme[main_bg]="#ffffff" + +# Main text color +theme[main_fg]="#808080" + +# Title color for boxes +theme[title]="#808080" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#000080" + +# Background color of selected item in processes box +theme[selected_bg]="#eaeaea" + +# Foreground color of selected item in processes box +theme[selected_fg]="#808080" + +# Color of inactive/disabled text +theme[inactive_fg]="#a0a0a0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#000080" + +# Cpu box outline color +theme[cpu_box]="#a0a0a0" + +# Memory/disks box outline color +theme[mem_box]="#a0a0a0" + +# Net up/down box outline color +theme[net_box]="#a0a0a0" + +# Processes box outline color +theme[proc_box]="#a0a0a0" + +# Box divider line and small boxes line color +theme[div_line]="#a0a0a0" + +# Temperature graph colors +theme[temp_start]="#008000" +theme[temp_mid]="#808000" +theme[temp_end]="#800000" + +# CPU graph colors +theme[cpu_start]="#008000" +theme[cpu_mid]="#808000" +theme[cpu_end]="#800000" + +# Mem/Disk free meter +theme[free_start]="#008000" +theme[free_mid]="#808000" +theme[free_end]="#800000" + +# Mem/Disk cached meter +theme[cached_start]="#008000" +theme[cached_mid]="#808000" +theme[cached_end]="#800000" + +# Mem/Disk available meter +theme[available_start]="#008000" +theme[available_mid]="#808000" +theme[available_end]="#800000" + +# Mem/Disk used meter +theme[used_start]="#008000" +theme[used_mid]="#808000" +theme[used_end]="#800000" + +# Download graph colors +theme[download_start]="#008000" +theme[download_mid]="#808000" +theme[download_end]="#800000" + +# Upload graph colors +theme[upload_start]="#008000" +theme[upload_mid]="#808000" +theme[upload_end]="#800000" diff --git a/colors/base16-windows-nt.theme b/colors/base16-windows-nt.theme new file mode 100644 index 0000000..5998b44 --- /dev/null +++ b/colors/base16-windows-nt.theme @@ -0,0 +1,90 @@ +# +# +# name: Windows NT +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-nt +# slug-underscored: windows_nt +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#000000" + +# Main text color +theme[main_fg]="#c0c0c0" + +# Title color for boxes +theme[title]="#c0c0c0" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#0000ff" + +# Background color of selected item in processes box +theme[selected_bg]="#2a2a2a" + +# Foreground color of selected item in processes box +theme[selected_fg]="#c0c0c0" + +# Color of inactive/disabled text +theme[inactive_fg]="#a1a1a1" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#0000ff" + +# Cpu box outline color +theme[cpu_box]="#a1a1a1" + +# Memory/disks box outline color +theme[mem_box]="#a1a1a1" + +# Net up/down box outline color +theme[net_box]="#a1a1a1" + +# Processes box outline color +theme[proc_box]="#a1a1a1" + +# Box divider line and small boxes line color +theme[div_line]="#a1a1a1" + +# Temperature graph colors +theme[temp_start]="#00ff00" +theme[temp_mid]="#ffff00" +theme[temp_end]="#ff0000" + +# CPU graph colors +theme[cpu_start]="#00ff00" +theme[cpu_mid]="#ffff00" +theme[cpu_end]="#ff0000" + +# Mem/Disk free meter +theme[free_start]="#00ff00" +theme[free_mid]="#ffff00" +theme[free_end]="#ff0000" + +# Mem/Disk cached meter +theme[cached_start]="#00ff00" +theme[cached_mid]="#ffff00" +theme[cached_end]="#ff0000" + +# Mem/Disk available meter +theme[available_start]="#00ff00" +theme[available_mid]="#ffff00" +theme[available_end]="#ff0000" + +# Mem/Disk used meter +theme[used_start]="#00ff00" +theme[used_mid]="#ffff00" +theme[used_end]="#ff0000" + +# Download graph colors +theme[download_start]="#00ff00" +theme[download_mid]="#ffff00" +theme[download_end]="#ff0000" + +# Upload graph colors +theme[upload_start]="#00ff00" +theme[upload_mid]="#ffff00" +theme[upload_end]="#ff0000" diff --git a/colors/base16-woodland.theme b/colors/base16-woodland.theme new file mode 100644 index 0000000..50a969f --- /dev/null +++ b/colors/base16-woodland.theme @@ -0,0 +1,90 @@ +# +# +# name: Woodland +# author: Jay Cornwall (https://jcornwall.com) +# slug: woodland +# slug-underscored: woodland +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#231e18" + +# Main text color +theme[main_fg]="#cabcb1" + +# Title color for boxes +theme[title]="#cabcb1" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#88a4d3" + +# Background color of selected item in processes box +theme[selected_bg]="#302b25" + +# Foreground color of selected item in processes box +theme[selected_fg]="#cabcb1" + +# Color of inactive/disabled text +theme[inactive_fg]="#b4a490" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#88a4d3" + +# Cpu box outline color +theme[cpu_box]="#b4a490" + +# Memory/disks box outline color +theme[mem_box]="#b4a490" + +# Net up/down box outline color +theme[net_box]="#b4a490" + +# Processes box outline color +theme[proc_box]="#b4a490" + +# Box divider line and small boxes line color +theme[div_line]="#b4a490" + +# Temperature graph colors +theme[temp_start]="#b7ba53" +theme[temp_mid]="#e0ac16" +theme[temp_end]="#d35c5c" + +# CPU graph colors +theme[cpu_start]="#b7ba53" +theme[cpu_mid]="#e0ac16" +theme[cpu_end]="#d35c5c" + +# Mem/Disk free meter +theme[free_start]="#b7ba53" +theme[free_mid]="#e0ac16" +theme[free_end]="#d35c5c" + +# Mem/Disk cached meter +theme[cached_start]="#b7ba53" +theme[cached_mid]="#e0ac16" +theme[cached_end]="#d35c5c" + +# Mem/Disk available meter +theme[available_start]="#b7ba53" +theme[available_mid]="#e0ac16" +theme[available_end]="#d35c5c" + +# Mem/Disk used meter +theme[used_start]="#b7ba53" +theme[used_mid]="#e0ac16" +theme[used_end]="#d35c5c" + +# Download graph colors +theme[download_start]="#b7ba53" +theme[download_mid]="#e0ac16" +theme[download_end]="#d35c5c" + +# Upload graph colors +theme[upload_start]="#b7ba53" +theme[upload_mid]="#e0ac16" +theme[upload_end]="#d35c5c" diff --git a/colors/base16-xcode-dusk.theme b/colors/base16-xcode-dusk.theme new file mode 100644 index 0000000..aa2e27e --- /dev/null +++ b/colors/base16-xcode-dusk.theme @@ -0,0 +1,90 @@ +# +# +# name: XCode Dusk +# author: Elsa Gonsiorowski (https://github.com/gonsie) +# slug: xcode-dusk +# slug-underscored: xcode_dusk +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#282B35" + +# Main text color +theme[main_fg]="#939599" + +# Title color for boxes +theme[title]="#939599" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#790EAD" + +# Background color of selected item in processes box +theme[selected_bg]="#3D4048" + +# Foreground color of selected item in processes box +theme[selected_fg]="#939599" + +# Color of inactive/disabled text +theme[inactive_fg]="#7E8086" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#790EAD" + +# Cpu box outline color +theme[cpu_box]="#7E8086" + +# Memory/disks box outline color +theme[mem_box]="#7E8086" + +# Net up/down box outline color +theme[net_box]="#7E8086" + +# Processes box outline color +theme[proc_box]="#7E8086" + +# Box divider line and small boxes line color +theme[div_line]="#7E8086" + +# Temperature graph colors +theme[temp_start]="#DF0002" +theme[temp_mid]="#438288" +theme[temp_end]="#B21889" + +# CPU graph colors +theme[cpu_start]="#DF0002" +theme[cpu_mid]="#438288" +theme[cpu_end]="#B21889" + +# Mem/Disk free meter +theme[free_start]="#DF0002" +theme[free_mid]="#438288" +theme[free_end]="#B21889" + +# Mem/Disk cached meter +theme[cached_start]="#DF0002" +theme[cached_mid]="#438288" +theme[cached_end]="#B21889" + +# Mem/Disk available meter +theme[available_start]="#DF0002" +theme[available_mid]="#438288" +theme[available_end]="#B21889" + +# Mem/Disk used meter +theme[used_start]="#DF0002" +theme[used_mid]="#438288" +theme[used_end]="#B21889" + +# Download graph colors +theme[download_start]="#DF0002" +theme[download_mid]="#438288" +theme[download_end]="#B21889" + +# Upload graph colors +theme[upload_start]="#DF0002" +theme[upload_mid]="#438288" +theme[upload_end]="#B21889" diff --git a/colors/base16-zenbones.theme b/colors/base16-zenbones.theme new file mode 100644 index 0000000..94f3694 --- /dev/null +++ b/colors/base16-zenbones.theme @@ -0,0 +1,90 @@ +# +# +# name: Zenbones +# author: mcchrish +# slug: zenbones +# slug-underscored: zenbones +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#191919" + +# Main text color +theme[main_fg]="#B279A7" + +# Title color for boxes +theme[title]="#B279A7" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#CF86C1" + +# Background color of selected item in processes box +theme[selected_bg]="#DE6E7C" + +# Foreground color of selected item in processes box +theme[selected_fg]="#B279A7" + +# Color of inactive/disabled text +theme[inactive_fg]="#6099C0" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#CF86C1" + +# Cpu box outline color +theme[cpu_box]="#6099C0" + +# Memory/disks box outline color +theme[mem_box]="#6099C0" + +# Net up/down box outline color +theme[net_box]="#6099C0" + +# Processes box outline color +theme[proc_box]="#6099C0" + +# Box divider line and small boxes line color +theme[div_line]="#6099C0" + +# Temperature graph colors +theme[temp_start]="#D68C67" +theme[temp_mid]="#8BAE68" +theme[temp_end]="#3D3839" + +# CPU graph colors +theme[cpu_start]="#D68C67" +theme[cpu_mid]="#8BAE68" +theme[cpu_end]="#3D3839" + +# Mem/Disk free meter +theme[free_start]="#D68C67" +theme[free_mid]="#8BAE68" +theme[free_end]="#3D3839" + +# Mem/Disk cached meter +theme[cached_start]="#D68C67" +theme[cached_mid]="#8BAE68" +theme[cached_end]="#3D3839" + +# Mem/Disk available meter +theme[available_start]="#D68C67" +theme[available_mid]="#8BAE68" +theme[available_end]="#3D3839" + +# Mem/Disk used meter +theme[used_start]="#D68C67" +theme[used_mid]="#8BAE68" +theme[used_end]="#3D3839" + +# Download graph colors +theme[download_start]="#D68C67" +theme[download_mid]="#8BAE68" +theme[download_end]="#3D3839" + +# Upload graph colors +theme[upload_start]="#D68C67" +theme[upload_mid]="#8BAE68" +theme[upload_end]="#3D3839" diff --git a/colors/base16-zenburn.theme b/colors/base16-zenburn.theme new file mode 100644 index 0000000..f78fe8a --- /dev/null +++ b/colors/base16-zenburn.theme @@ -0,0 +1,90 @@ +# +# +# name: Zenburn +# author: elnawe +# slug: zenburn +# slug-underscored: zenburn +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#383838" + +# Main text color +theme[main_fg]="#dcdccc" + +# Title color for boxes +theme[title]="#dcdccc" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#7cb8bb" + +# Background color of selected item in processes box +theme[selected_bg]="#404040" + +# Foreground color of selected item in processes box +theme[selected_fg]="#dcdccc" + +# Color of inactive/disabled text +theme[inactive_fg]="#808080" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7cb8bb" + +# Cpu box outline color +theme[cpu_box]="#808080" + +# Memory/disks box outline color +theme[mem_box]="#808080" + +# Net up/down box outline color +theme[net_box]="#808080" + +# Processes box outline color +theme[proc_box]="#808080" + +# Box divider line and small boxes line color +theme[div_line]="#808080" + +# Temperature graph colors +theme[temp_start]="#5f7f5f" +theme[temp_mid]="#e0cf9f" +theme[temp_end]="#dca3a3" + +# CPU graph colors +theme[cpu_start]="#5f7f5f" +theme[cpu_mid]="#e0cf9f" +theme[cpu_end]="#dca3a3" + +# Mem/Disk free meter +theme[free_start]="#5f7f5f" +theme[free_mid]="#e0cf9f" +theme[free_end]="#dca3a3" + +# Mem/Disk cached meter +theme[cached_start]="#5f7f5f" +theme[cached_mid]="#e0cf9f" +theme[cached_end]="#dca3a3" + +# Mem/Disk available meter +theme[available_start]="#5f7f5f" +theme[available_mid]="#e0cf9f" +theme[available_end]="#dca3a3" + +# Mem/Disk used meter +theme[used_start]="#5f7f5f" +theme[used_mid]="#e0cf9f" +theme[used_end]="#dca3a3" + +# Download graph colors +theme[download_start]="#5f7f5f" +theme[download_mid]="#e0cf9f" +theme[download_end]="#dca3a3" + +# Upload graph colors +theme[upload_start]="#5f7f5f" +theme[upload_mid]="#e0cf9f" +theme[upload_end]="#dca3a3" diff --git a/examples/img/google-light.png b/examples/img/google-light.png Binary files differnew file mode 100644 index 0000000..0d8959e --- /dev/null +++ b/examples/img/google-light.png diff --git a/examples/img/onedark.png b/examples/img/onedark.png Binary files differnew file mode 100644 index 0000000..5c5bee1 --- /dev/null +++ b/examples/img/onedark.png diff --git a/examples/onedark.theme b/examples/onedark.theme new file mode 100644 index 0000000..96b18d8 --- /dev/null +++ b/examples/onedark.theme @@ -0,0 +1,90 @@ +# +# +# name: OneDark +# author: Lalit Magant (http://github.com/tilal6991) +# slug: onedark +# slug-underscored: onedark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +# Main bg +theme[main_bg]="#282c34" + +# Main text color +theme[main_fg]="#abb2bf" + +# Title color for boxes +theme[title]="#abb2bf" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#61afef" + +# Background color of selected item in processes box +theme[selected_bg]="#353b45" + +# Foreground color of selected item in processes box +theme[selected_fg]="#abb2bf" + +# Color of inactive/disabled text +theme[inactive_fg]="#565c64" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#61afef" + +# Cpu box outline color +theme[cpu_box]="#565c64" + +# Memory/disks box outline color +theme[mem_box]="#565c64" + +# Net up/down box outline color +theme[net_box]="#565c64" + +# Processes box outline color +theme[proc_box]="#565c64" + +# Box divider line and small boxes line color +theme[div_line]="#565c64" + +# Temperature graph colors +theme[temp_start]="#98c379" +theme[temp_mid]="#e5c07b" +theme[temp_end]="#e06c75" + +# CPU graph colors +theme[cpu_start]="#98c379" +theme[cpu_mid]="#e5c07b" +theme[cpu_end]="#e06c75" + +# Mem/Disk free meter +theme[free_start]="#98c379" +theme[free_mid]="#e5c07b" +theme[free_end]="#e06c75" + +# Mem/Disk cached meter +theme[cached_start]="#98c379" +theme[cached_mid]="#e5c07b" +theme[cached_end]="#e06c75" + +# Mem/Disk available meter +theme[available_start]="#98c379" +theme[available_mid]="#e5c07b" +theme[available_end]="#e06c75" + +# Mem/Disk used meter +theme[used_start]="#98c379" +theme[used_mid]="#e5c07b" +theme[used_end]="#e06c75" + +# Download graph colors +theme[download_start]="#98c379" +theme[download_mid]="#e5c07b" +theme[download_end]="#e06c75" + +# Upload graph colors +theme[upload_start]="#98c379" +theme[upload_mid]="#e5c07b" +theme[upload_end]="#e06c75" diff --git a/templates/body.mustache b/templates/body.mustache new file mode 100644 index 0000000..b97d31d --- /dev/null +++ b/templates/body.mustache @@ -0,0 +1,78 @@ +# Main bg +theme[main_bg]="#{{base00-hex}}" + +# Main text color +theme[main_fg]="#{{base05-hex}}" + +# Title color for boxes +theme[title]="#{{base05-hex}}" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#{{base0D-hex}}" + +# Background color of selected item in processes box +theme[selected_bg]="#{{base01-hex}}" + +# Foreground color of selected item in processes box +theme[selected_fg]="#{{base05-hex}}" + +# Color of inactive/disabled text +theme[inactive_fg]="#{{base04-hex}}" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#{{base0D-hex}}" + +# Cpu box outline color +theme[cpu_box]="#{{base04-hex}}" + +# Memory/disks box outline color +theme[mem_box]="#{{base04-hex}}" + +# Net up/down box outline color +theme[net_box]="#{{base04-hex}}" + +# Processes box outline color +theme[proc_box]="#{{base04-hex}}" + +# Box divider line and small boxes line color +theme[div_line]="#{{base04-hex}}" + +# Temperature graph colors +theme[temp_start]="#{{base0B-hex}}" +theme[temp_mid]="#{{base0A-hex}}" +theme[temp_end]="#{{base08-hex}}" + +# CPU graph colors +theme[cpu_start]="#{{base0B-hex}}" +theme[cpu_mid]="#{{base0A-hex}}" +theme[cpu_end]="#{{base08-hex}}" + +# Mem/Disk free meter +theme[free_start]="#{{base0B-hex}}" +theme[free_mid]="#{{base0A-hex}}" +theme[free_end]="#{{base08-hex}}" + +# Mem/Disk cached meter +theme[cached_start]="#{{base0B-hex}}" +theme[cached_mid]="#{{base0A-hex}}" +theme[cached_end]="#{{base08-hex}}" + +# Mem/Disk available meter +theme[available_start]="#{{base0B-hex}}" +theme[available_mid]="#{{base0A-hex}}" +theme[available_end]="#{{base08-hex}}" + +# Mem/Disk used meter +theme[used_start]="#{{base0B-hex}}" +theme[used_mid]="#{{base0A-hex}}" +theme[used_end]="#{{base08-hex}}" + +# Download graph colors +theme[download_start]="#{{base0B-hex}}" +theme[download_mid]="#{{base0A-hex}}" +theme[download_end]="#{{base08-hex}}" + +# Upload graph colors +theme[upload_start]="#{{base0B-hex}}" +theme[upload_mid]="#{{base0A-hex}}" +theme[upload_end]="#{{base08-hex}}" diff --git a/templates/config.yaml b/templates/config.yaml new file mode 100644 index 0000000..aaecf01 --- /dev/null +++ b/templates/config.yaml @@ -0,0 +1,3 @@ +default: + supported-systems: [base16] + filename: "colors/{{scheme-system}}-{{scheme-slug}}.theme" diff --git a/templates/head.mustache b/templates/head.mustache new file mode 100644 index 0000000..980d8f5 --- /dev/null +++ b/templates/head.mustache @@ -0,0 +1,11 @@ +# +# +# name: {{scheme-name}} +# author: {{{scheme-author}}} +# slug: {{scheme-slug}} +# slug-underscored: {{scheme-slug-underscored}} +# system: {{scheme-system}} +# variant: {{scheme-variant}} +# is-{{scheme-variant}}-variant: {{hasVariant}} +# +# |
