Renamed cyberpunk theme to daemon and finished it.
This commit is contained in:
83
themes/daemon/default.nix
Normal file
83
themes/daemon/default.nix
Normal file
@@ -0,0 +1,83 @@
|
||||
{
|
||||
system,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
stylix.enable = true;
|
||||
|
||||
stylix.image = ./wallpaper.jpg;
|
||||
|
||||
stylix.base16Scheme = {
|
||||
slug = "daemon-2-0";
|
||||
scheme = "Daemon 2.0 by Converted from Konsole";
|
||||
author = "Converted from Konsole";
|
||||
|
||||
# Base colors
|
||||
base00 = "210e15"; # Background
|
||||
base01 = "320d14"; # BackgroundFaint (Color0)
|
||||
base02 = "5df4fe"; # Foreground (Main)
|
||||
base03 = "200d14"; # Color0Faint (Gray shade for comments or lighter background elements)
|
||||
base04 = "9370db"; # Color4 (Blue)
|
||||
base05 = "93f4fe"; # ForegroundIntense (Standard text)
|
||||
base06 = "ffffff"; # Color0Intense (Bright white color for highlights)
|
||||
base07 = "ffffff"; # Maximum brightness for foreground or UI elements
|
||||
|
||||
# ANSI colors
|
||||
base08 = "fb3048"; # Red (Color1)
|
||||
base09 = "ff5048"; # Orange/Red (Color6)
|
||||
base0A = "fdf500"; # Yellow (Color3)
|
||||
base0B = "28c775"; # Green (Color7)
|
||||
base0C = "1ac5b0"; # Aqua/Cyan (Color2)
|
||||
base0D = "9370db"; # Blue (Color4)
|
||||
base0E = "cb1dcd"; # Magenta (Color5)
|
||||
base0F = "320d14"; # Darker tone for special elements
|
||||
};
|
||||
|
||||
home-manager.sharedModules = [
|
||||
{
|
||||
programs.vscode = {
|
||||
extensions = with inputs.nix-vscode-extensions.extensions.${system}; [
|
||||
vscode-marketplace.max-ss.cyberpunk
|
||||
vscode-marketplace.vscode-icons-team.vscode-icons
|
||||
];
|
||||
userSettings = {
|
||||
"workbench.colorTheme" = "Activate SCARLET protocol (beta)";
|
||||
"workbench.iconTheme" = "vscode-icons";
|
||||
};
|
||||
};
|
||||
|
||||
stylix.cursor = {
|
||||
package = pkgs.qogir-icon-theme;
|
||||
name = "Qogir";
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
stylix.cursor = {
|
||||
package = pkgs.qogir-icon-theme;
|
||||
name = "Qogir";
|
||||
};
|
||||
|
||||
stylix.fonts = {
|
||||
serif = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Serif";
|
||||
};
|
||||
|
||||
sansSerif = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Sans";
|
||||
};
|
||||
|
||||
monospace = {
|
||||
package = pkgs.nerdfonts.override {fonts = ["JetBrainsMono"];};
|
||||
name = "JetBrainsMono Nerd Font";
|
||||
};
|
||||
|
||||
emoji = {
|
||||
package = pkgs.noto-fonts-emoji;
|
||||
name = "Noto Color Emoji";
|
||||
};
|
||||
};
|
||||
}
|
||||
25
themes/daemon/scheme.yaml
Normal file
25
themes/daemon/scheme.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
# Base16 Daemon-2.0 Scheme
|
||||
# Scheme by Converted from Konsole
|
||||
scheme: Daemon-2.0
|
||||
author: Converted from Konsole
|
||||
|
||||
base00: 210d14 # Background (Color=33,14,21)
|
||||
base01: 210d14 # BackgroundFaint (Color=33,14,21)
|
||||
base02: 210d14 # BackgroundIntense (Color=33,14,21)
|
||||
base03: 200d14 # Color0 (Color=32,13,20)
|
||||
base04: ffffff # Color0Faint (Color=255,255,255)
|
||||
base05: ffffff # Color0Intense (Color=255,255,255)
|
||||
base06: 5df4fe # ForegroundFaint (Color=93,244,254)
|
||||
base07: 5df4fe # ForegroundIntense (Color=93,244,254)
|
||||
|
||||
base08: fb3048 # Color1 (Red) (Color=251,48,72)
|
||||
base09: 1ac5b0 # Color2 (Green) (Color=26,197,176)
|
||||
base0A: fdf500 # Color3 (Yellow) (Color=253,245,0)
|
||||
base0B: 9370db # Color4 (Blue) (Color=147,112,219)
|
||||
base0C: cb1dcd # Color5 (Magenta) (Color=203,29,205)
|
||||
base0D: ff5048 # Color6 (Cyan) (Color=255,80,72)
|
||||
base0E: 28c775 # Color7 (White/Bright Green) (Color=40,199,117)
|
||||
base0F: 200d14 # Darker background color (base03)
|
||||
|
||||
# Base16 schemes typically have descriptive values from base00 to base0F.
|
||||
# For the missing values, I've used some of the closest colors from the available data.
|
||||
BIN
themes/daemon/wallpaper.jpg
Normal file
BIN
themes/daemon/wallpaper.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 42 KiB |
Reference in New Issue
Block a user