From 7761e6de5f85219639dfd1f4fa3b9ea3aabaac5b Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Thu, 3 Jul 2025 11:15:29 +0530 Subject: Theme change --- modules/xresources.home.nix | 7 +++---- modules/xresources/dark.nix | 6 ++++++ 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 modules/xresources/dark.nix (limited to 'modules') diff --git a/modules/xresources.home.nix b/modules/xresources.home.nix index 818db22..4138ec5 100644 --- a/modules/xresources.home.nix +++ b/modules/xresources.home.nix @@ -1,9 +1,8 @@ -{ config, pkgs, epkgs, ... }: +{ ... }: { xresources.properties = let - theme = import ./xresources/catcula.nix; - # theme = import ./xresources/tealicious.nix; + theme = import ./xresources/dark.nix; in { "*.foreground" = theme.foreground; @@ -11,7 +10,7 @@ "*.cursorColor" = theme.foreground; "*.accent" = theme.accent; - "*.color0" = "#15121f"; + "*.color0" = "#171717"; "*.color8" = "#555555"; "*.color1" = "#e06c75"; diff --git a/modules/xresources/dark.nix b/modules/xresources/dark.nix new file mode 100644 index 0000000..4762fca --- /dev/null +++ b/modules/xresources/dark.nix @@ -0,0 +1,6 @@ +{ + background = "#000000"; + background-light = "#111111"; + foreground = "#d8dee9"; + accent = "#4e3aA3"; +} -- cgit v1.3.1