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:
92
themes/palettes/matte-black/apps/btop.theme
Normal file
92
themes/palettes/matte-black/apps/btop.theme
Normal 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"
|
||||
9
themes/palettes/matte-black/apps/neovim.lua
Normal file
9
themes/palettes/matte-black/apps/neovim.lua
Normal file
@@ -0,0 +1,9 @@
|
||||
return {
|
||||
{ "tahayvr/matteblack.nvim", lazy = false, priority = 1000 },
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "matteblack",
|
||||
},
|
||||
},
|
||||
}
|
||||
4
themes/palettes/matte-black/apps/vscode.json
Normal file
4
themes/palettes/matte-black/apps/vscode.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"name": "Matte Black",
|
||||
"extension": "TahaYVR.matteblack"
|
||||
}
|
||||
BIN
themes/palettes/matte-black/backgrounds/0-ship-at-sea.jpg
Normal file
BIN
themes/palettes/matte-black/backgrounds/0-ship-at-sea.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 MiB |
BIN
themes/palettes/matte-black/backgrounds/1-dark-waters.jpg
Normal file
BIN
themes/palettes/matte-black/backgrounds/1-dark-waters.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1010 KiB |
BIN
themes/palettes/matte-black/backgrounds/2-dot-hands.jpg
Normal file
BIN
themes/palettes/matte-black/backgrounds/2-dot-hands.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 471 KiB |
23
themes/palettes/matte-black/colors.toml
Normal file
23
themes/palettes/matte-black/colors.toml
Normal file
@@ -0,0 +1,23 @@
|
||||
accent = "#e68e0d"
|
||||
cursor = "#eaeaea"
|
||||
foreground = "#bebebe"
|
||||
background = "#121212"
|
||||
selection_foreground = "#bebebe"
|
||||
selection_background = "#333333"
|
||||
|
||||
color0 = "#333333"
|
||||
color1 = "#D35F5F"
|
||||
color2 = "#FFC107"
|
||||
color3 = "#b91c1c"
|
||||
color4 = "#e68e0d"
|
||||
color5 = "#D35F5F"
|
||||
color6 = "#bebebe"
|
||||
color7 = "#bebebe"
|
||||
color8 = "#8a8a8d"
|
||||
color9 = "#B91C1C"
|
||||
color10 = "#FFC107"
|
||||
color11 = "#b90a0a"
|
||||
color12 = "#f59e0b"
|
||||
color13 = "#B91C1C"
|
||||
color14 = "#eaeaea"
|
||||
color15 = "#ffffff"
|
||||
1
themes/palettes/matte-black/icons.theme
Normal file
1
themes/palettes/matte-black/icons.theme
Normal file
@@ -0,0 +1 @@
|
||||
Yaru-red
|
||||
BIN
themes/palettes/matte-black/preview.png
Normal file
BIN
themes/palettes/matte-black/preview.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 459 KiB |
Reference in New Issue
Block a user