feat: Nomarchy ground-up rewrite on NixOS 26.05

Full replacement of the previous iteration, rebuilt around three ideas:

- Pure evaluation: theme-state.json lives inside the flake and is read
  via the nomarchy.stateFile option — no --impure, ever.
- All-Home-Manager theming: `nomarchy-theme-sync apply` writes the JSON
  and runs `home-manager switch`; every theme change is one atomic,
  rollbackable generation. Wallpaper (swww) is the sole runtime piece.
- Flat, downstream-first layout: modules/{nixos,home} with one
  options.nix each, exported as nixosModules/homeModules + overlay +
  flake template; system (nixos-rebuild) and desktop (home-manager
  switch) rebuild paths are fully split.

Ships 21 themes imported from the previous iteration (palettes,
wallpapers, btop themes, six whole-swap Waybar identities), Stylix for
the GTK/Qt/cursor long tail, a live ISO target with offline theme
switching, and docs/TESTING.md with the QEMU verification workflow.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Bernardo Magri
2026-06-10 10:59:13 +01:00
commit f211ef0d09
131 changed files with 4844 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Catppuccin Latte",
"slug": "catppuccin-latte",
"mode": "light",
"wallpaper": "",
"colors": {
"base": "#eff1f5",
"mantle": "#cbcdd0",
"surface": "#bcc0cc",
"overlay": "#acb0be",
"text": "#4c4f69",
"subtext": "#5c5f77",
"muted": "#acb0be",
"accent": "#1e66f5",
"accentAlt": "#ea76cb",
"good": "#40a02b",
"warn": "#df8e1d",
"bad": "#d20f39"
},
"ansi": [
"#bcc0cc",
"#d20f39",
"#40a02b",
"#df8e1d",
"#1e66f5",
"#ea76cb",
"#179299",
"#5c5f77",
"#acb0be",
"#d20f39",
"#40a02b",
"#df8e1d",
"#1e66f5",
"#ea76cb",
"#179299",
"#6c6f85"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 652 KiB

View File

@@ -0,0 +1,84 @@
# https://github.com/catppuccin/btop/blob/main/themes/catppuccin_latte.theme
# Main background, empty for terminal default, need to be empty if you want transparent background
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]="#bcc0cc"
# Foreground color of selected item in processes box
theme[selected_fg]="#1e66f5"
# Color of inactive/disabled text
theme[inactive_fg]="#8c8fa1"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#dc8a78"
# Background color of the percentage meters
theme[meter_bg]="#bcc0cc"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#dc8a78"
# CPU, Memory, Network, Proc box outline colors
theme[cpu_box]="#8839ef" #Mauve
theme[mem_box]="#40a02b" #Green
theme[net_box]="#e64553" #Maroon
theme[proc_box]="#1e66f5" #Blue
# Box divider line and small boxes line color
theme[div_line]="#9ca0b0"
# Temperature graph color (Green -> Yellow -> Red)
theme[temp_start]="#40a02b"
theme[temp_mid]="#df8e1d"
theme[temp_end]="#d20f39"
# CPU graph colors (Teal -> Lavender)
theme[cpu_start]="#179299"
theme[cpu_mid]="#209fb5"
theme[cpu_end]="#7287fd"
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
theme[free_start]="#8839ef"
theme[free_mid]="#7287fd"
theme[free_end]="#1e66f5"
# Mem/Disk cached meter (Sapphire -> Lavender)
theme[cached_start]="#209fb5"
theme[cached_mid]="#1e66f5"
theme[cached_end]="#7287fd"
# Mem/Disk available meter (Peach -> Red)
theme[available_start]="#fe640b"
theme[available_mid]="#e64553"
theme[available_end]="#d20f39"
# Mem/Disk used meter (Green -> Sky)
theme[used_start]="#40a02b"
theme[used_mid]="#179299"
theme[used_end]="#04a5e5"
# Download graph colors (Peach -> Red)
theme[download_start]="#fe640b"
theme[download_mid]="#e64553"
theme[download_end]="#d20f39"
# Upload graph colors (Green -> Sky)
theme[upload_start]="#40a02b"
theme[upload_mid]="#179299"
theme[upload_end]="#04a5e5"
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
theme[process_start]="#209fb5"
theme[process_mid]="#7287fd"
theme[process_end]="#8839ef"

39
themes/catppuccin.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Catppuccin",
"slug": "catppuccin",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#1e1e2e",
"mantle": "#1a1a27",
"surface": "#45475a",
"overlay": "#585b70",
"text": "#cdd6f4",
"subtext": "#bac2de",
"muted": "#585b70",
"accent": "#89b4fa",
"accentAlt": "#f5c2e7",
"good": "#a6e3a1",
"warn": "#f9e2af",
"bad": "#f38ba8"
},
"ansi": [
"#45475a",
"#f38ba8",
"#a6e3a1",
"#f9e2af",
"#89b4fa",
"#f5c2e7",
"#94e2d5",
"#bac2de",
"#585b70",
"#f38ba8",
"#a6e3a1",
"#f9e2af",
"#89b4fa",
"#f5c2e7",
"#94e2d5",
"#a6adc8"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 KiB

View File

@@ -0,0 +1,83 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#1E1E2E"
# 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]="#51576d"
# Foreground color of selected item in processes box
theme[selected_fg]="#8caaee"
# Color of inactive/disabled text
theme[inactive_fg]="#838ba7"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#f2d5cf"
# Background color of the percentage meters
theme[meter_bg]="#51576d"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#f2d5cf"
# CPU, Memory, Network, Proc box outline colors
theme[cpu_box]="#ca9ee6" #Mauve
theme[mem_box]="#a6d189" #Green
theme[net_box]="#ea999c" #Maroon
theme[proc_box]="#8caaee" #Blue
# Box divider line and small boxes line color
theme[div_line]="#737994"
# Temperature graph color (Green -> Yellow -> Red)
theme[temp_start]="#a6d189"
theme[temp_mid]="#e5c890"
theme[temp_end]="#e78284"
# CPU graph colors (Teal -> Lavender)
theme[cpu_start]="#81c8be"
theme[cpu_mid]="#85c1dc"
theme[cpu_end]="#babbf1"
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
theme[free_start]="#ca9ee6"
theme[free_mid]="#babbf1"
theme[free_end]="#8caaee"
# Mem/Disk cached meter (Sapphire -> Lavender)
theme[cached_start]="#85c1dc"
theme[cached_mid]="#8caaee"
theme[cached_end]="#babbf1"
# Mem/Disk available meter (Peach -> Red)
theme[available_start]="#ef9f76"
theme[available_mid]="#ea999c"
theme[available_end]="#e78284"
# Mem/Disk used meter (Green -> Sky)
theme[used_start]="#a6d189"
theme[used_mid]="#81c8be"
theme[used_end]="#99d1db"
# Download graph colors (Peach -> Red)
theme[download_start]="#ef9f76"
theme[download_mid]="#ea999c"
theme[download_end]="#e78284"
# Upload graph colors (Green -> Sky)
theme[upload_start]="#a6d189"
theme[upload_mid]="#81c8be"
theme[upload_end]="#99d1db"
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
theme[process_start]="#85c1dc"
theme[process_mid]="#babbf1"
theme[process_end]="#ca9ee6"

View File

@@ -0,0 +1,2 @@
@define-color foreground #cdd6f4;
@define-color background #181824;

39
themes/ethereal.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Ethereal",
"slug": "ethereal",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#060B1E",
"mantle": "#05091a",
"surface": "#060B1E",
"overlay": "#6d7db6",
"text": "#ffcead",
"subtext": "#F99957",
"muted": "#6d7db6",
"accent": "#7d82d9",
"accentAlt": "#c89dc1",
"good": "#92a593",
"warn": "#E9BB4F",
"bad": "#ED5B5A"
},
"ansi": [
"#060B1E",
"#ED5B5A",
"#92a593",
"#E9BB4F",
"#7d82d9",
"#c89dc1",
"#a3bfd1",
"#F99957",
"#6d7db6",
"#faaaa9",
"#c4cfc4",
"#f7dc9c",
"#c2c4f0",
"#ead7e7",
"#dfeaf0",
"#ffcead"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

View File

@@ -0,0 +1,70 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#060B1E"
# Main text color
theme[main_fg]="#ffcead"
# Title color for boxes
theme[title]="#c89dc1"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#a3bfd1"
# Background color of selected item in processes box
theme[selected_bg]="#6d7db6"
# Foreground color of selected item in processes box
theme[selected_fg]="#ffcead"
# Color of inactive/disabled text
theme[inactive_fg]="#6d7db6"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#c89dc1"
# Box outline and divider line color
theme[cpu_box]="#92a593"
theme[mem_box]="#92a593"
theme[net_box]="#92a593"
theme[proc_box]="#92a593"
theme[div_line]="#6d7db6"
# Gradient for all meters and graphs
theme[temp_start]="#a3bfd1"
theme[temp_mid]="#7d82d9"
theme[temp_end]="#92a593"
theme[cpu_start]="#a3bfd1"
theme[cpu_mid]="#7d82d9"
theme[cpu_end]="#92a593"
theme[free_start]="#7d82d9"
theme[free_mid]="#E9BB4F"
theme[free_end]="#E9BB4F"
theme[cached_start]="#E9BB4F"
theme[cached_mid]="#E9BB4F"
theme[cached_end]="#E9BB4F"
theme[available_start]="#a3bfd1"
theme[available_mid]="#a3bfd1"
theme[available_end]="#a3bfd1"
theme[used_start]="#92a593"
theme[used_mid]="#92a593"
theme[used_end]="#92a593"
theme[download_start]="#E9BB4F"
theme[download_mid]="#a3bfd1"
theme[download_end]="#7d82d9"
theme[upload_start]="#E9BB4F"
theme[upload_mid]="#a3bfd1"
theme[upload_end]="#7d82d9"

39
themes/everforest.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Everforest",
"slug": "everforest",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#2d353b",
"mantle": "#262d32",
"surface": "#475258",
"overlay": "#475258",
"text": "#d3c6aa",
"subtext": "#d3c6aa",
"muted": "#475258",
"accent": "#7fbbb3",
"accentAlt": "#d699b6",
"good": "#a7c080",
"warn": "#dbbc7f",
"bad": "#e67e80"
},
"ansi": [
"#475258",
"#e67e80",
"#a7c080",
"#dbbc7f",
"#7fbbb3",
"#d699b6",
"#83c092",
"#d3c6aa",
"#475258",
"#e67e80",
"#a7c080",
"#dbbc7f",
"#7fbbb3",
"#d699b6",
"#83c092",
"#d3c6aa"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 KiB

View File

@@ -0,0 +1,92 @@
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#2d353b"
# Main text color
theme[main_fg]="#d3c6aa"
# Title color for boxes
theme[title]="#d3c6aa"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#e67e80"
# Background color of selected items
theme[selected_bg]="#3d484d"
# Foreground color of selected items
theme[selected_fg]="#dbbc7f"
# Color of inactive/disabled text
theme[inactive_fg]="#2d353b"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#d3c6aa"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#a7c080"
# Cpu box outline color
theme[cpu_box]="#3d484d"
# Memory/disks box outline color
theme[mem_box]="#3d484d"
# Net up/down box outline color
theme[net_box]="#3d484d"
# Processes box outline color
theme[proc_box]="#3d484d"
# Box divider line and small boxes line color
theme[div_line]="#3d484d"
# Temperature graph colors
theme[temp_start]="#a7c080"
theme[temp_mid]="#dbbc7f"
theme[temp_end]="#f85552"
# CPU graph colors
theme[cpu_start]="#a7c080"
theme[cpu_mid]="#dbbc7f"
theme[cpu_end]="#f85552"
# Mem/Disk free meter
theme[free_start]="#f85552"
theme[free_mid]="#dbbc7f"
theme[free_end]="#a7c080"
# Mem/Disk cached meter
theme[cached_start]="#7fbbb3"
theme[cached_mid]="#83c092"
theme[cached_end]="#a7c080"
# Mem/Disk available meter
theme[available_start]="#f85552"
theme[available_mid]="#dbbc7f"
theme[available_end]="#a7c080"
# Mem/Disk used meter
theme[used_start]="#a7c080"
theme[used_mid]="#dbbc7f"
theme[used_end]="#f85552"
# Download graph colors
theme[download_start]="#a7c080"
theme[download_mid]="#83c092"
theme[download_end]="#7fbbb3"
# Upload graph colors
theme[upload_start]="#dbbc7f"
theme[upload_mid]="#e69875"
theme[upload_end]="#e67e80"
# Process box color gradient for threads, mem and cpu usage
theme[process_start]="#a7c080"
theme[process_mid]="#e67e80"
theme[process_end]="#f85552"

39
themes/flexoki-light.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Flexoki Light",
"slug": "flexoki-light",
"mode": "light",
"wallpaper": "",
"colors": {
"base": "#FFFCF0",
"mantle": "#d9d6cc",
"surface": "#100F0F",
"overlay": "#100F0F",
"text": "#100F0F",
"subtext": "#FFFCF0",
"muted": "#100F0F",
"accent": "#205EA6",
"accentAlt": "#CE5D97",
"good": "#879A39",
"warn": "#D0A215",
"bad": "#D14D41"
},
"ansi": [
"#100F0F",
"#D14D41",
"#879A39",
"#D0A215",
"#205EA6",
"#CE5D97",
"#3AA99F",
"#FFFCF0",
"#100F0F",
"#D14D41",
"#879A39",
"#D0A215",
"#4385BE",
"#CE5D97",
"#3AA99F",
"#FFFCF0"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@@ -0,0 +1,78 @@
# Main bg
theme[main_bg]="#FFFCF0"
# Main text color
theme[main_fg]="#100F0F"
# Title color for boxes
theme[title]="#100F0F"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#205EA6"
# Background color of selected item in processes box
theme[selected_bg]="#414868"
# Foreground color of selected item in processes box
theme[selected_fg]="#100F0F"
# Color of inactive/disabled text
theme[inactive_fg]="#6F6E69"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#205EA6"
# Cpu box outline color
theme[cpu_box]="#6F6E69"
# Memory/disks box outline color
theme[mem_box]="#6F6E69"
# Net up/down box outline color
theme[net_box]="#6F6E69"
# Processes box outline color
theme[proc_box]="#6F6E69"
# Box divider line and small boxes line color
theme[div_line]="#6F6E69"
# Temperature graph colors
theme[temp_start]="#66800B"
theme[temp_mid]="#BC5215"
theme[temp_end]="#AF3029"
# CPU graph colors
theme[cpu_start]="#66800B"
theme[cpu_mid]="#BC5215"
theme[cpu_end]="#AF3029"
# Mem/Disk free meter
theme[free_start]="#66800B"
theme[free_mid]="#BC5215"
theme[free_end]="#AF3029"
# Mem/Disk cached meter
theme[cached_start]="#66800B"
theme[cached_mid]="#BC5215"
theme[cached_end]="#AF3029"
# Mem/Disk available meter
theme[available_start]="#66800B"
theme[available_mid]="#BC5215"
theme[available_end]="#AF3029"
# Mem/Disk used meter
theme[used_start]="#66800B"
theme[used_mid]="#BC5215"
theme[used_end]="#AF3029"
# Download graph colors
theme[download_start]="#66800B"
theme[download_mid]="#BC5215"
theme[download_end]="#AF3029"
# Upload graph colors
theme[upload_start]="#66800B"
theme[upload_mid]="#BC5215"
theme[upload_end]="#AF3029"

39
themes/gruvbox.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Gruvbox",
"slug": "gruvbox",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#282828",
"mantle": "#222222",
"surface": "#3c3836",
"overlay": "#3c3836",
"text": "#d4be98",
"subtext": "#d4be98",
"muted": "#3c3836",
"accent": "#7daea3",
"accentAlt": "#d3869b",
"good": "#a9b665",
"warn": "#d8a657",
"bad": "#ea6962"
},
"ansi": [
"#3c3836",
"#ea6962",
"#a9b665",
"#d8a657",
"#7daea3",
"#d3869b",
"#89b482",
"#d4be98",
"#3c3836",
"#ea6962",
"#a9b665",
"#d8a657",
"#7daea3",
"#d3869b",
"#89b482",
"#d4be98"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 KiB

92
themes/gruvbox/btop.theme Normal file
View File

@@ -0,0 +1,92 @@
#Bashtop gruvbox (https://github.com/morhetz/gruvbox) theme
#by BachoSeven
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
# example for white: "#FFFFFF", "#ff" or "255 255 255".
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#282828"
# Main text color
theme[main_fg]="#a89984"
# Title color for boxes
theme[title]="#ebdbb2"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#d79921"
# Background color of selected items
theme[selected_bg]="#282828"
# Foreground color of selected items
theme[selected_fg]="#fabd2f"
# Color of inactive/disabled text
theme[inactive_fg]="#282828"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#585858"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#98971a"
# Cpu box outline color
theme[cpu_box]="#a89984"
# Memory/disks box outline color
theme[mem_box]="#a89984"
# Net up/down box outline color
theme[net_box]="#a89984"
# Processes box outline color
theme[proc_box]="#a89984"
# Box divider line and small boxes line color
theme[div_line]="#a89984"
# Temperature graph colors
theme[temp_start]="#458588"
theme[temp_mid]="#d3869b"
theme[temp_end]="#fb4394"
# CPU graph colors
theme[cpu_start]="#b8bb26"
theme[cpu_mid]="#d79921"
theme[cpu_end]="#fb4934"
# Mem/Disk free meter
theme[free_start]="#4e5900"
theme[free_mid]=""
theme[free_end]="#98971a"
# Mem/Disk cached meter
theme[cached_start]="#458588"
theme[cached_mid]=""
theme[cached_end]="#83a598"
# Mem/Disk available meter
theme[available_start]="#d79921"
theme[available_mid]=""
theme[available_end]="#fabd2f"
# Mem/Disk used meter
theme[used_start]="#cc241d"
theme[used_mid]=""
theme[used_end]="#fb4934"
# Download graph colors
theme[download_start]="#3d4070"
theme[download_mid]="#6c71c4"
theme[download_end]="#a3a8f7"
# Upload graph colors
theme[upload_start]="#701c45"
theme[upload_mid]="#b16286"
theme[upload_end]="#d3869b"

39
themes/hackerman.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Hackerman",
"slug": "hackerman",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#0B0C16",
"mantle": "#090a13",
"surface": "#0B0C16",
"overlay": "#6a6e95",
"text": "#ddf7ff",
"subtext": "#85E1FB",
"muted": "#6a6e95",
"accent": "#82FB9C",
"accentAlt": "#86a7df",
"good": "#4fe88f",
"warn": "#50f7d4",
"bad": "#50f872"
},
"ansi": [
"#0B0C16",
"#50f872",
"#4fe88f",
"#50f7d4",
"#829dd4",
"#86a7df",
"#7cf8f7",
"#85E1FB",
"#6a6e95",
"#85ff9d",
"#9cf7c2",
"#a4ffec",
"#c4d2ed",
"#cddbf4",
"#d1fffe",
"#ddf7ff"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

View File

@@ -0,0 +1,70 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#0B0C16"
# Main text color
theme[main_fg]="#ddf7ff"
# Title color for boxes
theme[title]="#86a7df"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#7cf8f7"
# Background color of selected item in processes box
theme[selected_bg]="#6a6e95"
# Foreground color of selected item in processes box
theme[selected_fg]="#ddf7ff"
# Color of inactive/disabled text
theme[inactive_fg]="#6a6e95"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#86a7df"
# Box outline and divider line color
theme[cpu_box]="#4fe88f"
theme[mem_box]="#4fe88f"
theme[net_box]="#4fe88f"
theme[proc_box]="#4fe88f"
theme[div_line]="#6a6e95"
# Gradient for all meters and graphs
theme[temp_start]="#7cf8f7"
theme[temp_mid]="#829dd4"
theme[temp_end]="#4fe88f"
theme[cpu_start]="#7cf8f7"
theme[cpu_mid]="#829dd4"
theme[cpu_end]="#4fe88f"
theme[free_start]="#829dd4"
theme[free_mid]="#50f7d4"
theme[free_end]="#50f7d4"
theme[cached_start]="#50f7d4"
theme[cached_mid]="#50f7d4"
theme[cached_end]="#50f7d4"
theme[available_start]="#7cf8f7"
theme[available_mid]="#7cf8f7"
theme[available_end]="#7cf8f7"
theme[used_start]="#4fe88f"
theme[used_mid]="#4fe88f"
theme[used_end]="#4fe88f"
theme[download_start]="#50f7d4"
theme[download_mid]="#7cf8f7"
theme[download_end]="#829dd4"
theme[upload_start]="#50f7d4"
theme[upload_mid]="#7cf8f7"
theme[upload_end]="#829dd4"

39
themes/kanagawa.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Kanagawa",
"slug": "kanagawa",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#1f1f28",
"mantle": "#1a1a22",
"surface": "#090618",
"overlay": "#727169",
"text": "#dcd7ba",
"subtext": "#c8c093",
"muted": "#727169",
"accent": "#7e9cd8",
"accentAlt": "#957fb8",
"good": "#76946a",
"warn": "#c0a36e",
"bad": "#c34043"
},
"ansi": [
"#090618",
"#c34043",
"#76946a",
"#c0a36e",
"#7e9cd8",
"#957fb8",
"#6a9589",
"#c8c093",
"#727169",
"#e82424",
"#98bb6c",
"#e6c384",
"#7fb4ca",
"#938aa9",
"#7aa89f",
"#dcd7ba"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

@@ -0,0 +1,86 @@
# Bashtop Kanagawa-wave (https://github.com/rebelot/kanagawa.nvim) theme
# By: philikarus
# 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]="#C34043"
# Background color of selected item in processes box
theme[selected_bg]="#223249"
# Foreground color of selected item in processes box
theme[selected_fg]="#dca561"
# 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]="#7aa89f"
# 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]="#98BB6C"
theme[temp_mid]="#DCA561"
theme[temp_end]="#E82424"
# CPU graph colors
theme[cpu_start]="#98BB6C"
theme[cpu_mid]="#DCA561"
theme[cpu_end]="#E82424"
# Mem/Disk free meter
theme[free_start]="#E82424"
theme[free_mid]="#C34043"
theme[free_end]="#FF5D62"
# Mem/Disk cached meter
theme[cached_start]="#C0A36E"
theme[cached_mid]="#DCA561"
theme[cached_end]="#FF9E3B"
# Mem/Disk available meter
theme[available_start]="#938AA9"
theme[available_mid]="#957FBB"
theme[available_end]="#9CABCA"
# Mem/Disk used meter
theme[used_start]="#658594"
theme[used_mid]="#7E9CDB"
theme[used_end]="#7FB4CA"
# Download graph colors
theme[download_start]="#7E9CDB"
theme[download_mid]="#938AA9"
theme[download_end]="#957FBB"
# Upload graph colors
theme[upload_start]="#DCA561"
theme[upload_mid]="#E6C384"
theme[upload_end]="#E82424"
# Process box color gradient for threads, mem and cpu usage
theme[process_start]="#98BB6C"
theme[process_mid]="#DCA561"
theme[process_end]="#C34043"

39
themes/lumon.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Lumon",
"slug": "lumon",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#16242d",
"mantle": "#131f26",
"surface": "#1b2d40",
"overlay": "#304860",
"text": "#d6e2ee",
"subtext": "#d6e2ee",
"muted": "#304860",
"accent": "#f2fcff",
"accentAlt": "#8bc9eb",
"good": "#5e95bc",
"warn": "#6fa4c9",
"bad": "#4d86b0"
},
"ansi": [
"#1b2d40",
"#4d86b0",
"#5e95bc",
"#6fa4c9",
"#6fb8e3",
"#8bc9eb",
"#b4e4f6",
"#d6e2ee",
"#304860",
"#73a6cb",
"#86b7d8",
"#9dcae5",
"#f2fcff",
"#b1d8ee",
"#d1eef8",
"#ffffff"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

64
themes/lumon/btop.theme Normal file
View File

@@ -0,0 +1,64 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]=""
theme_background=false
# Main text color
theme[main_fg]="#c7d2de"
# Title color for boxes
theme[title]="#9fcfe9"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#b5deef"
# Background color of selected item in processes box
theme[selected_bg]="#355066"
# Foreground color of selected item in processes box
theme[selected_fg]="#c7d2de"
# Color of inactive/disabled text
theme[inactive_fg]="#355066"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#9fcfe9"
# Box outline and divider line color
theme[cpu_box]="#79abd2"
theme[mem_box]="#79abd2"
theme[net_box]="#79abd2"
theme[proc_box]="#79abd2"
theme[div_line]="#355066"
# Gradient for all meters and graphs
theme[temp_start]="#b5deef"
theme[temp_mid]="#92c7e7"
theme[temp_end]="#79abd2"
theme[cpu_start]="#b5deef"
theme[cpu_mid]="#92c7e7"
theme[cpu_end]="#79abd2"
theme[free_start]="#92c7e7"
theme[free_mid]="#86b6da"
theme[free_end]="#86b6da"
theme[cached_start]="#86b6da"
theme[cached_mid]="#86b6da"
theme[cached_end]="#86b6da"
theme[available_start]="#b5deef"
theme[available_mid]="#b5deef"
theme[available_end]="#b5deef"
theme[used_start]="#79abd2"
theme[used_mid]="#79abd2"
theme[used_end]="#79abd2"
theme[download_start]="#86b6da"
theme[download_mid]="#b5deef"
theme[download_end]="#92c7e7"
theme[upload_start]="#86b6da"
theme[upload_mid]="#b5deef"
theme[upload_end]="#92c7e7"

2
themes/lumon/waybar.css Normal file
View File

@@ -0,0 +1,2 @@
@define-color foreground #d6e2ee;
@define-color background #213442;

39
themes/matte-black.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Matte Black",
"slug": "matte-black",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#121212",
"mantle": "#0f0f0f",
"surface": "#333333",
"overlay": "#8a8a8d",
"text": "#bebebe",
"subtext": "#bebebe",
"muted": "#8a8a8d",
"accent": "#e68e0d",
"accentAlt": "#D35F5F",
"good": "#FFC107",
"warn": "#b91c1c",
"bad": "#D35F5F"
},
"ansi": [
"#333333",
"#D35F5F",
"#FFC107",
"#b91c1c",
"#e68e0d",
"#D35F5F",
"#bebebe",
"#bebebe",
"#8a8a8d",
"#B91C1C",
"#FFC107",
"#b90a0a",
"#f59e0b",
"#B91C1C",
"#eaeaea",
"#ffffff"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1010 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 471 KiB

View File

@@ -0,0 +1,92 @@
# ────────────────────────────────────────────────────────────
# Bashtop theme - Nomarchy Matte Black
# by tahayvr
# https://github.com/tahayvr
# ────────────────────────────────────────────────────────────
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
# example for white: "#ffffff", "#ff" or "255 255 255".
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]=""
# Main text color
theme[main_fg]="#EAEAEA"
# Title color for boxes
theme[title]="#8a8a8d"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#f59e0b"
# Background color of selected item in processes box
theme[selected_bg]="#f59e0b"
# Foreground color of selected item in processes box
theme[selected_fg]="#EAEAEA"
# Color of inactive/disabled text
theme[inactive_fg]="#333333"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#8a8a8d"
# Cpu box outline color
theme[cpu_box]="#8a8a8d"
# Memory/disks box outline color
theme[mem_box]="#8a8a8d"
# Net up/down box outline color
theme[net_box]="#8a8a8d"
# Processes box outline color
theme[proc_box]="#8a8a8d"
# Box divider line and small boxes line color
theme[div_line]="#8a8a8d"
# Temperature graph colors
theme[temp_start]="#8a8a8d"
theme[temp_mid]="#f59e0b"
theme[temp_end]="#b91c1c"
# CPU graph colors
theme[cpu_start]="#8a8a8d"
theme[cpu_mid]="#f59e0b"
theme[cpu_end]="#b91c1c"
# Mem/Disk free meter
theme[free_start]="#8a8a8d"
theme[free_mid]="#f59e0b"
theme[free_end]="#b91c1c"
# Mem/Disk cached meter
theme[cached_start]="#8a8a8d"
theme[cached_mid]="#f59e0b"
theme[cached_end]="#b91c1c"
# Mem/Disk available meter
theme[available_start]="#8a8a8d"
theme[available_mid]="#f59e0b"
theme[available_end]="#b91c1c"
# Mem/Disk used meter
theme[used_start]="#8a8a8d"
theme[used_mid]="#f59e0b"
theme[used_end]="#b91c1c"
# Download graph colors
theme[download_start]="#8a8a8d"
theme[download_mid]="#f59e0b"
theme[download_end]="#b91c1c"
# Upload graph colors
theme[upload_start]="#8a8a8d"
theme[upload_mid]="#f59e0b"
theme[upload_end]="#b91c1c"

39
themes/miasma.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Miasma",
"slug": "miasma",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#222222",
"mantle": "#1d1d1d",
"surface": "#000000",
"overlay": "#666666",
"text": "#c2c2b0",
"subtext": "#d7c483",
"muted": "#666666",
"accent": "#78824b",
"accentAlt": "#bb7744",
"good": "#5f875f",
"warn": "#b36d43",
"bad": "#685742"
},
"ansi": [
"#000000",
"#685742",
"#5f875f",
"#b36d43",
"#78824b",
"#bb7744",
"#c9a554",
"#d7c483",
"#666666",
"#685742",
"#5f875f",
"#b36d43",
"#78824b",
"#bb7744",
"#c9a554",
"#d7c483"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 653 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 983 KiB

70
themes/miasma/btop.theme Normal file
View File

@@ -0,0 +1,70 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#222222"
# Main text color
theme[main_fg]="#c2c2b0"
# Title color for boxes
theme[title]="#bb7744"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#c9a554"
# Background color of selected item in processes box
theme[selected_bg]="#e4c47a"
# Foreground color of selected item in processes box
theme[selected_fg]="#000000"
# Color of inactive/disabled text
theme[inactive_fg]="#666666"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#bb7744"
# Box outline and divider line color
theme[cpu_box]="#5f875f"
theme[mem_box]="#5f875f"
theme[net_box]="#5f875f"
theme[proc_box]="#5f875f"
theme[div_line]="#666666"
# Gradient for all meters and graphs
theme[temp_start]="#c9a554"
theme[temp_mid]="#78824b"
theme[temp_end]="#5f875f"
theme[cpu_start]="#c9a554"
theme[cpu_mid]="#78824b"
theme[cpu_end]="#5f875f"
theme[free_start]="#78824b"
theme[free_mid]="#b36d43"
theme[free_end]="#b36d43"
theme[cached_start]="#b36d43"
theme[cached_mid]="#b36d43"
theme[cached_end]="#b36d43"
theme[available_start]="#c9a554"
theme[available_mid]="#c9a554"
theme[available_end]="#c9a554"
theme[used_start]="#5f875f"
theme[used_mid]="#5f875f"
theme[used_end]="#5f875f"
theme[download_start]="#b36d43"
theme[download_mid]="#c9a554"
theme[download_end]="#78824b"
theme[upload_start]="#b36d43"
theme[upload_mid]="#c9a554"
theme[upload_end]="#78824b"

39
themes/nord.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Nord",
"slug": "nord",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#2e3440",
"mantle": "#272c36",
"surface": "#3b4252",
"overlay": "#4c566a",
"text": "#d8dee9",
"subtext": "#e5e9f0",
"muted": "#4c566a",
"accent": "#81a1c1",
"accentAlt": "#b48ead",
"good": "#a3be8c",
"warn": "#ebcb8b",
"bad": "#bf616a"
},
"ansi": [
"#3b4252",
"#bf616a",
"#a3be8c",
"#ebcb8b",
"#81a1c1",
"#b48ead",
"#88c0d0",
"#e5e9f0",
"#4c566a",
"#bf616a",
"#a3be8c",
"#ebcb8b",
"#81a1c1",
"#b48ead",
"#8fbcbb",
"#eceff4"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

89
themes/nord/btop.theme Normal file
View File

@@ -0,0 +1,89 @@
#Bashtop theme with nord palette (https://www.nordtheme.com)
#by Justin Zobel <justin.zobel@gmail.com>
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
# example for white: "#ffffff", "#ff" or "255 255 255".
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#2E3440"
# Main text color
theme[main_fg]="#D8DEE9"
# Title color for boxes
theme[title]="#8FBCBB"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#5E81AC"
# Background color of selected item in processes box
theme[selected_bg]="#4C566A"
# Foreground color of selected item in processes box
theme[selected_fg]="#ECEFF4"
# Color of inactive/disabled text
theme[inactive_fg]="#4C566A"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#5E81AC"
# Cpu box outline color
theme[cpu_box]="#4C566A"
# Memory/disks box outline color
theme[mem_box]="#4C566A"
# Net up/down box outline color
theme[net_box]="#4C566A"
# Processes box outline color
theme[proc_box]="#4C566A"
# Box divider line and small boxes line color
theme[div_line]="#4C566A"
# Temperature graph colors
theme[temp_start]="#81A1C1"
theme[temp_mid]="#88C0D0"
theme[temp_end]="#ECEFF4"
# CPU graph colors
theme[cpu_start]="#81A1C1"
theme[cpu_mid]="#88C0D0"
theme[cpu_end]="#ECEFF4"
# Mem/Disk free meter
theme[free_start]="#81A1C1"
theme[free_mid]="#88C0D0"
theme[free_end]="#ECEFF4"
# Mem/Disk cached meter
theme[cached_start]="#81A1C1"
theme[cached_mid]="#88C0D0"
theme[cached_end]="#ECEFF4"
# Mem/Disk available meter
theme[available_start]="#81A1C1"
theme[available_mid]="#88C0D0"
theme[available_end]="#ECEFF4"
# Mem/Disk used meter
theme[used_start]="#81A1C1"
theme[used_mid]="#88C0D0"
theme[used_end]="#ECEFF4"
# Download graph colors
theme[download_start]="#81A1C1"
theme[download_mid]="#88C0D0"
theme[download_end]="#ECEFF4"
# Upload graph colors
theme[upload_start]="#81A1C1"
theme[upload_mid]="#88C0D0"
theme[upload_end]="#ECEFF4"

14
themes/nord/waybar.css Normal file
View File

@@ -0,0 +1,14 @@
@define-color background #2e3440;
@define-color foreground #d8dee9;
@define-color accent #88c0d0;
/* Base style for Nord */
* {
font-family: JetBrainsMono Nerd Font, FontAwesome;
font-size: 13px;
}
window#waybar {
background-color: @background;
color: @foreground;
}

39
themes/osaka-jade.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Osaka Jade",
"slug": "osaka-jade",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#111c18",
"mantle": "#0e1814",
"surface": "#23372B",
"overlay": "#53685B",
"text": "#C1C497",
"subtext": "#F6F5DD",
"muted": "#53685B",
"accent": "#509475",
"accentAlt": "#D2689C",
"good": "#549e6a",
"warn": "#459451",
"bad": "#FF5345"
},
"ansi": [
"#23372B",
"#FF5345",
"#549e6a",
"#459451",
"#509475",
"#D2689C",
"#2DD5B7",
"#F6F5DD",
"#53685B",
"#db9f9c",
"#63b07a",
"#E5C736",
"#ACD4CF",
"#75bbb3",
"#8CD3CB",
"#9eebb3"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

View File

@@ -0,0 +1,87 @@
# Main background
theme[main_bg]="#111c18"
# Main text color
theme[main_fg]="#F7E8B2"
# Title color for boxes
theme[title]="#D6D5BC"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#E67D64"
# Background color of selected items
theme[selected_bg]="#364538"
# Foreground color of selected items
theme[selected_fg]="#DEB266"
# Color of inactive/disabled text
theme[inactive_fg]="#32473B"
# Color of text appearing on top of graphs
theme[graph_text]="#E6D8BA"
# Misc colors for processes box
theme[proc_misc]="#E6D8BA"
# Cpu box outline color
theme[cpu_box]="#81B8A8"
# Memory/disks box outline color
theme[mem_box]="#81B8A8"
# Net up/down box outline color
theme[net_box]="#81B8A8"
# Processes box outline color
theme[proc_box]="#81B8A8"
# Box divider line and small boxes line color
theme[div_line]="#81B8A8"
# Temperature graph colors
theme[temp_start]="#BFD99A"
theme[temp_mid]="#E1B55E"
theme[temp_end]="#DBB05C"
# CPU graph colors
theme[cpu_start]="#5F8C86"
theme[cpu_mid]="#629C89"
theme[cpu_end]="#76AD98"
# Mem/Disk free meter
theme[free_start]="#5F8C86"
theme[free_mid]="#629C89"
theme[free_end]="#76AD98"
# Mem/Disk cached meter
theme[cached_start]="#5F8C86"
theme[cached_mid]="#629C89"
theme[cached_end]="#76AD98"
# Mem/Disk available meter
theme[available_start]="#5F8C86"
theme[available_mid]="#629C89"
theme[available_end]="#76AD98"
# Mem/Disk used meter
theme[used_start]="#5F8C86"
theme[used_mid]="#629C89"
theme[used_end]="#76AD98"
# Download graph colors
theme[download_start]="#75BBB3"
theme[download_mid]="#61949A"
theme[download_end]="#215866"
# Upload graph colors
theme[upload_start]="#215866"
theme[upload_mid]="#91C080"
theme[upload_end]="#549E6A"
# Process box color gradient for threads, mem and cpu usage
theme[process_start]="#72CFA3"
theme[process_mid]="#D0D494"
theme[process_end]="#DB9F9C"

39
themes/retro-82.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Retro 82",
"slug": "retro-82",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#05182e",
"mantle": "#041427",
"surface": "#00172e",
"overlay": "#134e5a",
"text": "#f6dcac",
"subtext": "#a7c9c6",
"muted": "#134e5a",
"accent": "#faa968",
"accentAlt": "#3f8f8a",
"good": "#028391",
"warn": "#e97b3c",
"bad": "#f85525"
},
"ansi": [
"#00172e",
"#f85525",
"#028391",
"#e97b3c",
"#faa968",
"#3f8f8a",
"#8cbfb8",
"#a7c9c6",
"#134e5a",
"#f85525",
"#028391",
"#e97b3c",
"#faa968",
"#3f8f8a",
"#8cbfb8",
"#f6dcac"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 889 KiB

View File

@@ -0,0 +1,63 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]=""
# Main text color
theme[main_fg]="#f6dcac"
# Title color for boxes
theme[title]="#3f8f8a"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#8cbfb8"
# Background color of selected item in processes box
theme[selected_bg]="#134e5a"
# Foreground color of selected item in processes box
theme[selected_fg]="#f6dcac"
# Color of inactive/disabled text
theme[inactive_fg]="#134e5a"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#3f8f8a"
# Box outline and divider line color
theme[cpu_box]="#e97b3c"
theme[mem_box]="#e97b3c"
theme[net_box]="#e97b3c"
theme[proc_box]="#e97b3c"
theme[div_line]="#134e5a"
# Gradient for all meters and graphs
theme[temp_start]="#a7c9c6"
theme[temp_mid]="#8cbfb8"
theme[temp_end]="#028391"
theme[cpu_start]="#a7c9c6"
theme[cpu_mid]="#e97b3c"
theme[cpu_end]="#f85525"
theme[free_start]="#faa968"
theme[free_mid]="#e97b3c"
theme[free_end]="#f85525"
theme[cached_start]="#faa968"
theme[cached_mid]="#e97b3c"
theme[cached_end]="#f85525"
theme[available_start]="#faa968"
theme[available_mid]="#e97b3c"
theme[available_end]="#f85525"
theme[used_start]="#faa968"
theme[used_mid]="#e97b3c"
theme[used_end]="#f85525"
theme[download_start]="#faa968"
theme[download_mid]="#e97b3c"
theme[download_end]="#f85525"
theme[upload_start]="#faa968"
theme[upload_mid]="#e97b3c"
theme[upload_end]="#f85525"

View File

@@ -0,0 +1,3 @@
@define-color bg #00172e;
@define-color foreground #f6dcac;
@define-color background alpha(@bg, 0.8);

39
themes/ristretto.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Ristretto",
"slug": "ristretto",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#2c2525",
"mantle": "#251f1f",
"surface": "#72696a",
"overlay": "#948a8b",
"text": "#e6d9db",
"subtext": "#e6d9db",
"muted": "#948a8b",
"accent": "#f38d70",
"accentAlt": "#a8a9eb",
"good": "#adda78",
"warn": "#f9cc6c",
"bad": "#fd6883"
},
"ansi": [
"#72696a",
"#fd6883",
"#adda78",
"#f9cc6c",
"#f38d70",
"#a8a9eb",
"#85dacc",
"#e6d9db",
"#948a8b",
"#ff8297",
"#c8e292",
"#fcd675",
"#f8a788",
"#bebffd",
"#9bf1e1",
"#f1e5e7"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 798 KiB

View File

@@ -0,0 +1,82 @@
#Btop monokai pro ristretto theme
#Reconfigured from monokai theme
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#2c2421"
# Main text color
theme[main_fg]="#e6d9db"
# Title color for boxes
theme[title]="#e6d9db"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#fd6883"
# Background color of selected item in processes box
theme[selected_bg]="#3d2f2a"
# Foreground color of selected item in processes box
theme[selected_fg]="#e6d9db"
# Color of inactive/disabled text
theme[inactive_fg]="#72696a"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#adda78"
# Cpu box outline color
theme[cpu_box]="#5b4a45"
# Memory/disks box outline color
theme[mem_box]="#5b4a45"
# Net up/down box outline color
theme[net_box]="#5b4a45"
# Processes box outline color
theme[proc_box]="#5b4a45"
# Box divider line and small boxes line color
theme[div_line]="#72696a"
# Temperature graph colors
theme[temp_start]="#a8a9eb"
theme[temp_mid]="#f38d70"
theme[temp_end]="#fd6a85"
# CPU graph colors
theme[cpu_start]="#adda78"
theme[cpu_mid]="#f9cc6c"
theme[cpu_end]="#fd6883"
# Mem/Disk free meter
theme[free_start]="#5b4a45"
theme[free_mid]="#adda78"
theme[free_end]="#c5e2a3"
# Mem/Disk cached meter
theme[cached_start]="#5b4a45"
theme[cached_mid]="#85dacc"
theme[cached_end]="#b3e8dd"
# Mem/Disk available meter
theme[available_start]="#5b4a45"
theme[available_mid]="#f9cc6c"
theme[available_end]="#fce2a3"
# Mem/Disk used meter
theme[used_start]="#5b4a45"
theme[used_mid]="#fd6a85"
theme[used_end]="#feb5c7"
# Download graph colors
theme[download_start]="#3d2f2a"
theme[download_mid]="#a8a9eb"
theme[download_end]="#c5c6f0"
# Upload graph colors
theme[upload_start]="#3d2f2a"
theme[upload_mid]="#fd6a85"
theme[upload_end]="#feb5c7"

39
themes/rose-pine.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Rose Pine",
"slug": "rose-pine",
"mode": "light",
"wallpaper": "",
"colors": {
"base": "#faf4ed",
"mantle": "#d4cfc9",
"surface": "#f2e9e1",
"overlay": "#9893a5",
"text": "#575279",
"subtext": "#575279",
"muted": "#9893a5",
"accent": "#56949f",
"accentAlt": "#907aa9",
"good": "#286983",
"warn": "#ea9d34",
"bad": "#b4637a"
},
"ansi": [
"#f2e9e1",
"#b4637a",
"#286983",
"#ea9d34",
"#56949f",
"#907aa9",
"#d7827e",
"#575279",
"#9893a5",
"#b4637a",
"#286983",
"#ea9d34",
"#56949f",
"#907aa9",
"#d7827e",
"#575279"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

119
themes/rose-pine/btop.theme Normal file
View File

@@ -0,0 +1,119 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#faf4ed"
# Base
# Main text color
theme[main_fg]="#575279"
# Text
# Title color for boxes
theme[title]="#908caa"
# Subtle
# Highlight color for keyboard shortcuts
theme[hi_fg]="#e0def4"
# Text
# Background color of selected item in processes box
theme[selected_bg]="#524f67"
# HL High
# Foreground color of selected item in processes box
theme[selected_fg]="#f6c177"
# Gold
# Color of inactive/disabled text
theme[inactive_fg]="#403d52"
# HL Med
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#9ccfd8"
# Foam
# Background color of the percentage meters
theme[meter_bg]="#9ccfd8"
# Foam
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#c4a7e7"
# Iris
# Cpu box outline color
theme[cpu_box]="#ebbcba"
# Rose
# Memory/disks box outline color
theme[mem_box]="#31748f"
# Pine
# Net up/down box outline color
theme[net_box]="#c4a7e7"
# Iris
# Processes box outline color
theme[proc_box]="#eb6f92"
# Love
# Box divider line and small boxes line color
theme[div_line]="#6e6a86"
# Muted
# Temperature graph colors
theme[temp_start]="#ebbcba"
# Rose
theme[temp_mid]="#f6c177"
# Gold
theme[temp_end]="#eb6f92"
# Love
# CPU graph colors
theme[cpu_start]="#f6c177"
# Gold
theme[cpu_mid]="#ebbcba"
# Rose
theme[cpu_end]="#eb6f92"
# Love
# Mem/Disk free meter
# all love
theme[free_start]="#eb6f92"
theme[free_mid]="#eb6f92"
theme[free_end]="#eb6f92"
# Mem/Disk cached meter
# all iris
theme[cached_start]="#c4a7e7"
theme[cached_mid]="#c4a7e7"
theme[cached_end]="#c4a7e7"
# Mem/Disk available meter
# all pine
theme[available_start]="#31748f"
theme[available_mid]="#31748f"
theme[available_end]="#31748f"
# Mem/Disk used meter
# all rose
theme[used_start]="#ebbcba"
theme[used_mid]="#ebbcba"
theme[used_end]="#ebbcba"
# Download graph colors
# Pine for start, foam for the rest
theme[download_start]="#31748f"
theme[download_mid]="#9ccfd8"
theme[download_end]="#9ccfd8"
# Upload graph colors
theme[upload_start]="#ebbcba"
# Rose for start
theme[upload_mid]="#eb6f92"
# Love for mid and end
theme[upload_end]="#eb6f92"
# Process box color gradient for threads, mem and cpu usage
theme[process_start]="#31748f"
# Pine
theme[process_mid]="#9ccfd8"
# Foam for mid and end
theme[process_end]="#9ccfd8"

39
themes/summer-day.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Summer Day",
"slug": "summer-day",
"mode": "light",
"wallpaper": "",
"colors": {
"base": "#fdf6e3",
"mantle": "#d7d1c1",
"surface": "#5c6a72",
"overlay": "#829181",
"text": "#5c6a72",
"subtext": "#fdf6e3",
"muted": "#829181",
"accent": "#3a94c5",
"accentAlt": "#df69ba",
"good": "#8da101",
"warn": "#dfa000",
"bad": "#f85552"
},
"ansi": [
"#5c6a72",
"#f85552",
"#8da101",
"#dfa000",
"#3a94c5",
"#df69ba",
"#35a77c",
"#fdf6e3",
"#829181",
"#f85552",
"#8da101",
"#dfa000",
"#3a94c5",
"#df69ba",
"#35a77c",
"#fdf6e3"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 MiB

View File

@@ -0,0 +1,86 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#fdf6e3"
# Main text color
theme[main_fg]="#5c6a72"
# Title color for boxes
theme[title]="#5c6a72"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#f85552"
# Background color of selected items
theme[selected_bg]="#e6e2cc"
# Foreground color of selected items
theme[selected_fg]="#dfa000"
# Color of inactive/disabled text
theme[inactive_fg]="#bdc3af"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#5c6a72"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#8da101"
# Cpu box outline color
theme[cpu_box]="#bdc3af"
# Memory/disks box outline color
theme[mem_box]="#bdc3af"
# Net up/down box outline color
theme[net_box]="#bdc3af"
# Processes box outline color
theme[proc_box]="#bdc3af"
# Box divider line and small boxes line color
theme[div_line]="#bdc3af"
# Temperature graph colors
theme[temp_start]="#8da101"
theme[temp_mid]="#dfa000"
theme[temp_end]="#f85552"
# CPU graph colors
theme[cpu_start]="#8da101"
theme[cpu_mid]="#dfa000"
theme[cpu_end]="#f85552"
# Mem/Disk free meter
theme[free_start]="#f85552"
theme[free_mid]="#dfa000"
theme[free_end]="#8da101"
# Mem/Disk cached meter
theme[cached_start]="#3a94c5"
theme[cached_mid]="#35a77c"
theme[cached_end]="#8da101"
# Mem/Disk available meter
theme[available_start]="#f85552"
theme[available_mid]="#dfa000"
theme[available_end]="#8da101"
# Mem/Disk used meter
theme[used_start]="#8da101"
theme[used_mid]="#dfa000"
theme[used_end]="#f85552"
# Download graph colors
theme[download_start]="#8da101"
theme[download_mid]="#35a77c"
theme[download_end]="#3a94c5"
# Upload graph colors
theme[upload_start]="#dfa000"
theme[upload_mid]="#df69ba"
theme[upload_end]="#f85552"
# Process box color gradient for threads, mem and cpu usage
theme[process_start]="#8da101"
theme[process_mid]="#f85552"
theme[process_end]="#f85552"

102
themes/summer-day/waybar.css Executable file
View File

@@ -0,0 +1,102 @@
@define-color bg_dim #efebd4;
@define-color bg0 #fdf6e3;
@define-color bg1 #f4f0d9;
@define-color bg2 #efebd4;
@define-color bg3 #e6e2cc;
@define-color bg4 #e0dcc7;
@define-color bg5 #bdc3af;
@define-color fg #5c6a72;
@define-color red #f85552;
@define-color orange #f57d26;
@define-color yellow #dfa000;
@define-color green #8da101;
@define-color aqua #35a77c;
@define-color blue #3a94c5;
@define-color purple #df69ba;
@define-color grey0 #a6b0a0;
@define-color grey1 #939f91;
@define-color grey2 #829181;
/* margin: top right bottom left */
/* Spacing outside the element */
/* padding: top right bottom left */
/* Spacing inside the element */
* {
font-family: JetBrainsMono Nerd Font, FontAwesome;
font-size: 16px;
font-weight: bold;
}
window#waybar {
background-color: @fg;
color: @bg0;
transition-property: background-color;
transition-duration: 0.5s;
border-radius: 0px 0px 15px 15px;
transition-duration: .5s;
border-bottom-width: 5px;
border-bottom-color: #3d4a52;
border-bottom-style: solid;
}
#custom-launcher,
#clock,
#clock-date,
#workspaces,
#pulseaudio,
#network,
#battery,
#custom-powermenu {
background-color: @bg0;
color: @fg;
padding-left: 10px;
padding-right: 10px;
margin-top: 7px;
margin-bottom: 12px;
border-radius: 10px;
border-bottom-width: 5px;
border-bottom-color: @bg5;
border-bottom-style: solid;
}
#workspaces {
padding: 0px;
}
#workspaces button.active {
background-color: @blue;
color: @bg0;
border-radius: 10px;
margin-bottom: -5px;
border-bottom-width: 5px;
border-bottom-color: #1e6791;
border-bottom-style: solid;
}
#custom-launcher {
background-color: @green;
color: @bg0;
border-bottom-color: #5d6b00;
margin-left: 15px;
padding-left: 20px;
padding-right: 21px;
}
#custom-powermenu {
background-color: @red;
color: @bg0;
border-bottom-color: #b32f2c;
margin-right: 15px;
padding-left: 20px;
padding-right: 23px;
}

39
themes/summer-night.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Summer Night",
"slug": "summer-night",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#2d353b",
"mantle": "#262d32",
"surface": "#3c474d",
"overlay": "#868d80",
"text": "#d3c6aa",
"subtext": "#868d80",
"muted": "#868d80",
"accent": "#83b6af",
"accentAlt": "#d39bb6",
"good": "#a7c080",
"warn": "#d9bb80",
"bad": "#e68183"
},
"ansi": [
"#3c474d",
"#e68183",
"#a7c080",
"#d9bb80",
"#83b6af",
"#d39bb6",
"#87c095",
"#868d80",
"#868d80",
"#e68183",
"#a7c080",
"#d9bb80",
"#83b6af",
"#d39bb6",
"#87c095",
"#868d80"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 MiB

View File

@@ -0,0 +1,86 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
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]="#e68183"
# Background color of selected items
theme[selected_bg]="#3c474d"
# Foreground color of selected items
theme[selected_fg]="#d9bb80"
# Color of inactive/disabled text
theme[inactive_fg]="#2d353b"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#d3c6aa"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#a7c080"
# Cpu box outline color
theme[cpu_box]="#3c474d"
# Memory/disks box outline color
theme[mem_box]="#3c474d"
# Net up/down box outline color
theme[net_box]="#3c474d"
# Processes box outline color
theme[proc_box]="#3c474d"
# Box divider line and small boxes line color
theme[div_line]="#3c474d"
# Temperature graph colors
theme[temp_start]="#a7c080"
theme[temp_mid]="#d9bb80"
theme[temp_end]="#e68183"
# CPU graph colors
theme[cpu_start]="#a7c080"
theme[cpu_mid]="#d9bb80"
theme[cpu_end]="#e68183"
# Mem/Disk free meter
theme[free_start]="#e68183"
theme[free_mid]="#d9bb80"
theme[free_end]="#a7c080"
# Mem/Disk cached meter
theme[cached_start]="#83b6af"
theme[cached_mid]="#87c095"
theme[cached_end]="#a7c080"
# Mem/Disk available meter
theme[available_start]="#e68183"
theme[available_mid]="#d9bb80"
theme[available_end]="#a7c080"
# Mem/Disk used meter
theme[used_start]="#a7c080"
theme[used_mid]="#d9bb80"
theme[used_end]="#e68183"
# Download graph colors
theme[download_start]="#a7c080"
theme[download_mid]="#87c095"
theme[download_end]="#83b6af"
# Upload graph colors
theme[upload_start]="#d9bb80"
theme[upload_mid]="#d39bb6"
theme[upload_end]="#e68183"
# Process box color gradient for threads, mem and cpu usage
theme[process_start]="#a7c080"
theme[process_mid]="#e68183"
theme[process_end]="#e68183"

View File

@@ -0,0 +1,123 @@
@define-color bg_dim #232a2e;
@define-color bg0 #2d353b;
@define-color bg1 #343f44;
@define-color bg2 #3d484d;
@define-color bg3 #475258;
@define-color bg4 #4f585e;
@define-color bg5 #56635f;
@define-color bg_visual #543a48;
@define-color bg_red #514045;
@define-color bg_green #425047;
@define-color bg_blue #3a515d;
@define-color bg_yellow #4d4c43;
@define-color fg #d3c6aa;
@define-color red #e67e80;
@define-color orange #e69875;
@define-color yellow #dbbc7f;
@define-color green #a7c080;
@define-color aqua #83c092;
@define-color blue #7fbbb3;
@define-color purple #d699b6;
@define-color grey0 #7a8478;
@define-color grey1 #859289;
@define-color grey2 #9da9a0;
/* margin: top right bottom left */
/* Spacing outside the element */
/* padding: top right bottom left */
/* Spacing inside the element */
* {
font-family: JetBrainsMono Nerd Font, FontAwesome;
font-size: 13px;
font-weight: bold;
}
window#waybar {
background-color: @fg;
color: @bg0;
transition-property: background-color;
transition-duration: 0.5s;
border-radius: 0px 0px 15px 15px;
transition-duration: .5s;
border-bottom-width: 5px;
border-bottom-color: #7d6a40;
border-bottom-style: solid;
}
#backlight,
#tray,
#custom-nomarchy,
#clock,
#clock.date,
#workspaces,
#pulseaudio,
#idle_inhibitor,
#custom-battery,
#custom-powermenu {
background-color: @bg0;
color: @fg;
padding-left: 10px;
padding-right: 10px;
margin-top: 7px;
margin-bottom: 12px;
border-radius: 10px;
border-bottom-width: 5px;
border-bottom-color: #161a1d;
border-bottom-style: solid;
}
#tray > .active {
color: @fg;
}
#tray > .needs-attention {
color: @green;
}
#workspaces {
padding: 0px;
}
#workspaces button.active {
background-color: @blue;
color: @bg0;
border-radius: 10px;
margin-bottom: -5px;
border-bottom-width: 5px;
border-bottom-color: #366660;
border-bottom-style: solid;
}
#custom-nomarchy {
background-color: @green;
color: @bg0;
border-bottom-color: #556a35;
margin-left: 15px;
padding-left: 20px;
padding-right: 21px;
font-family: Nomarchy;
font-size: 20px;
}
#custom-powermenu {
background-color: @red;
color: @bg0;
border-bottom-color: #951c1f;
margin-right: 15px;
padding-left: 20px;
padding-right: 23px;
}
#custom-battery.preservation {
color: @green;
}
#idle_inhibitor {
padding-left: 10px;
padding-right: 10px;
font-size: 20px;
}

39
themes/tokyo-night.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Tokyo Night",
"slug": "tokyo-night",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#1a1b26",
"mantle": "#161720",
"surface": "#32344a",
"overlay": "#444b6a",
"text": "#a9b1d6",
"subtext": "#787c99",
"muted": "#444b6a",
"accent": "#7aa2f7",
"accentAlt": "#ad8ee6",
"good": "#9ece6a",
"warn": "#e0af68",
"bad": "#f7768e"
},
"ansi": [
"#32344a",
"#f7768e",
"#9ece6a",
"#e0af68",
"#7aa2f7",
"#ad8ee6",
"#449dab",
"#787c99",
"#444b6a",
"#ff7a93",
"#b9f27c",
"#ff9e64",
"#7da6ff",
"#bb9af7",
"#0db9d7",
"#acb0d0"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 KiB

View File

@@ -0,0 +1,82 @@
# Theme: tokyo-night
# By: Pascal Jaeger
# Main bg
theme[main_bg]="#1a1b26"
# Main text color
theme[main_fg]="#cfc9c2"
# Title color for boxes
theme[title]="#cfc9c2"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#7dcfff"
# Background color of selected item in processes box
theme[selected_bg]="#414868"
# Foreground color of selected item in processes box
theme[selected_fg]="#cfc9c2"
# Color of inactive/disabled text
theme[inactive_fg]="#565f89"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#7dcfff"
# Cpu box outline color
theme[cpu_box]="#565f89"
# Memory/disks box outline color
theme[mem_box]="#565f89"
# Net up/down box outline color
theme[net_box]="#565f89"
# Processes box outline color
theme[proc_box]="#565f89"
# Box divider line and small boxes line color
theme[div_line]="#565f89"
# Temperature graph colors
theme[temp_start]="#9ece6a"
theme[temp_mid]="#e0af68"
theme[temp_end]="#f7768e"
# CPU graph colors
theme[cpu_start]="#9ece6a"
theme[cpu_mid]="#e0af68"
theme[cpu_end]="#f7768e"
# Mem/Disk free meter
theme[free_start]="#9ece6a"
theme[free_mid]="#e0af68"
theme[free_end]="#f7768e"
# Mem/Disk cached meter
theme[cached_start]="#9ece6a"
theme[cached_mid]="#e0af68"
theme[cached_end]="#f7768e"
# Mem/Disk available meter
theme[available_start]="#9ece6a"
theme[available_mid]="#e0af68"
theme[available_end]="#f7768e"
# Mem/Disk used meter
theme[used_start]="#9ece6a"
theme[used_mid]="#e0af68"
theme[used_end]="#f7768e"
# Download graph colors
theme[download_start]="#9ece6a"
theme[download_mid]="#e0af68"
theme[download_end]="#f7768e"
# Upload graph colors
theme[upload_start]="#9ece6a"
theme[upload_mid]="#e0af68"
theme[upload_end]="#f7768e"

39
themes/vantablack.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "Vantablack",
"slug": "vantablack",
"mode": "dark",
"wallpaper": "",
"colors": {
"base": "#0d0d0d",
"mantle": "#0b0b0b",
"surface": "#0d0d0d",
"overlay": "#fdfdfd",
"text": "#ffffff",
"subtext": "#ececec",
"muted": "#fdfdfd",
"accent": "#8d8d8d",
"accentAlt": "#9b9b9b",
"good": "#b6b6b6",
"warn": "#cecece",
"bad": "#a4a4a4"
},
"ansi": [
"#0d0d0d",
"#a4a4a4",
"#b6b6b6",
"#cecece",
"#8d8d8d",
"#9b9b9b",
"#b0b0b0",
"#ececec",
"#fdfdfd",
"#a4a4a4",
"#b6b6b6",
"#cecece",
"#8d8d8d",
"#9b9b9b",
"#b0b0b0",
"#ffffff"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 955 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 444 KiB

View File

@@ -0,0 +1,70 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#0d0d0d"
# Main text color
theme[main_fg]="#ffffff"
# Title color for boxes
theme[title]="#9b9b9b"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#b0b0b0"
# Background color of selected item in processes box
theme[selected_bg]="#fdfdfd"
# Foreground color of selected item in processes box
theme[selected_fg]="#ffffff"
# Color of inactive/disabled text
theme[inactive_fg]="#fdfdfd"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#9b9b9b"
# Box outline and divider line color
theme[cpu_box]="#b6b6b6"
theme[mem_box]="#b6b6b6"
theme[net_box]="#b6b6b6"
theme[proc_box]="#b6b6b6"
theme[div_line]="#fdfdfd"
# Gradient for all meters and graphs
theme[temp_start]="#b0b0b0"
theme[temp_mid]="#8d8d8d"
theme[temp_end]="#b6b6b6"
theme[cpu_start]="#b0b0b0"
theme[cpu_mid]="#8d8d8d"
theme[cpu_end]="#b6b6b6"
theme[free_start]="#8d8d8d"
theme[free_mid]="#cecece"
theme[free_end]="#cecece"
theme[cached_start]="#cecece"
theme[cached_mid]="#cecece"
theme[cached_end]="#cecece"
theme[available_start]="#b0b0b0"
theme[available_mid]="#b0b0b0"
theme[available_end]="#b0b0b0"
theme[used_start]="#b6b6b6"
theme[used_mid]="#b6b6b6"
theme[used_end]="#b6b6b6"
theme[download_start]="#cecece"
theme[download_mid]="#b0b0b0"
theme[download_end]="#8d8d8d"
theme[upload_start]="#cecece"
theme[upload_mid]="#b0b0b0"
theme[upload_end]="#8d8d8d"

39
themes/white.json Normal file
View File

@@ -0,0 +1,39 @@
{
"version": 1,
"name": "White",
"slug": "white",
"mode": "light",
"wallpaper": "",
"colors": {
"base": "#ffffff",
"mantle": "#d9d9d9",
"surface": "#ffffff",
"overlay": "#c0c0c0",
"text": "#000000",
"subtext": "#000000",
"muted": "#c0c0c0",
"accent": "#6e6e6e",
"accentAlt": "#2e2e2e",
"good": "#3a3a3a",
"warn": "#4a4a4a",
"bad": "#2a2a2a"
},
"ansi": [
"#ffffff",
"#2a2a2a",
"#3a3a3a",
"#4a4a4a",
"#1a1a1a",
"#2e2e2e",
"#3e3e3e",
"#000000",
"#c0c0c0",
"#2a2a2a",
"#3a3a3a",
"#4a4a4a",
"#1a1a1a",
"#2e2e2e",
"#3e3e3e",
"#000000"
]
}

Some files were not shown because too many files have changed in this diff Show More