Files
Nomarchy/assets/themes/summer-night/apps/btop.theme
Bernardo Magri b27fc5aee8 refactor: major architectural restructure for theme-centric organization
Theme System:
- Move all theme app configs to apps/ subdirectory (20 themes)
- Add theme-loader.nix for dynamic theme config deployment
- Simplify stylix.nix to focus on base theming only

Override System:
- Add overrides.nix for file-based config overrides
- Add behavior-configs.nix for non-visual configuration
- Split hypr/nomarchy.conf into behavior vs visual sections

Module Improvements:
- Add lib.mkDefault to all customizable settings
- Add modules/lib/ with shared utilities and state schema
- Update all home and system modules for downstream overridability

Installer:
- New minimal TTY installer (installer/install.sh)
- Golden path: BTRFS + LUKS2 (disko-golden.nix)
- New installer-iso.nix for TTY-only installation
- Keep graphical installer as installerIsoGraphical option

Cleanup:
- Remove obsolete install.sh, disko-ext4.nix, install-nomarchy.sh
- Update live-iso.nix references
- Add .claude/ to .gitignore for local IDE settings

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-11 19:38:27 +01:00

87 lines
2.0 KiB
Plaintext

# 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"