refactor: implement component-based architecture for enhanced maintainability
- Reorganize directory structure into core/, features/, and themes/ - Colocate application Nix logic, configs, scripts, and theme overrides - Implement 'Inversion of Control' for theming: apps now pull theme-specific layouts - Update flake.nix and shared library paths to match the new structure - Document the new Feature-Centric architecture in README.md
This commit is contained in:
86
themes/palettes/summer-night/apps/btop.theme
Normal file
86
themes/palettes/summer-night/apps/btop.theme
Normal 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"
|
||||
10
themes/palettes/summer-night/apps/neovim.lua
Normal file
10
themes/palettes/summer-night/apps/neovim.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
return {
|
||||
{ "neanias/everforest-nvim" },
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "everforest",
|
||||
background = "soft",
|
||||
},
|
||||
},
|
||||
}
|
||||
4
themes/palettes/summer-night/apps/vscode.json
Normal file
4
themes/palettes/summer-night/apps/vscode.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"name": "Everforest Dark",
|
||||
"extension": "sainnhe.everforest"
|
||||
}
|
||||
BIN
themes/palettes/summer-night/backgrounds/summer-day.png
Normal file
BIN
themes/palettes/summer-night/backgrounds/summer-day.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.8 MiB |
BIN
themes/palettes/summer-night/backgrounds/summer-night.png
Normal file
BIN
themes/palettes/summer-night/backgrounds/summer-night.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.6 MiB |
23
themes/palettes/summer-night/colors.toml
Normal file
23
themes/palettes/summer-night/colors.toml
Normal file
@@ -0,0 +1,23 @@
|
||||
accent = "#83b6af"
|
||||
cursor = "#d3c6aa"
|
||||
foreground = "#d3c6aa"
|
||||
background = "#2d353b"
|
||||
selection_foreground = "#d3c6aa"
|
||||
selection_background = "#505a60"
|
||||
|
||||
color0 = "#3c474d"
|
||||
color1 = "#e68183"
|
||||
color2 = "#a7c080"
|
||||
color3 = "#d9bb80"
|
||||
color4 = "#83b6af"
|
||||
color5 = "#d39bb6"
|
||||
color6 = "#87c095"
|
||||
color7 = "#868d80"
|
||||
color8 = "#868d80"
|
||||
color9 = "#e68183"
|
||||
color10 = "#a7c080"
|
||||
color11 = "#d9bb80"
|
||||
color12 = "#83b6af"
|
||||
color13 = "#d39bb6"
|
||||
color14 = "#87c095"
|
||||
color15 = "#868d80"
|
||||
1
themes/palettes/summer-night/icons.theme
Normal file
1
themes/palettes/summer-night/icons.theme
Normal file
@@ -0,0 +1 @@
|
||||
Everforest-Dark
|
||||
Reference in New Issue
Block a user