From 08f87f8c316543619791b8b58b4c9fc2f9ac9b0e Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Wed, 18 Jun 2025 15:01:05 +0200 Subject: [PATCH] gruvbox theme --- modules/gruvbox-theme.nix | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 modules/gruvbox-theme.nix diff --git a/modules/gruvbox-theme.nix b/modules/gruvbox-theme.nix new file mode 100644 index 0000000..a6e0864 --- /dev/null +++ b/modules/gruvbox-theme.nix @@ -0,0 +1,39 @@ +# Gruvbox color scheme for NixOS configuration +{ + gruvbox = { + # Backgrounds + bg0 = "#282828"; + bg0_h = "#1d2021"; + bg0_s = "#32302f"; + bg1 = "#3c3836"; + bg2 = "#504945"; + bg3 = "#665c54"; + bg4 = "#7c6f64"; + + # Foregrounds + fg0 = "#fbf1c7"; + fg1 = "#ebdbb2"; + fg2 = "#d5c4a1"; + fg3 = "#bdae93"; + fg4 = "#a89984"; + + # Normal colors + red = "#cc241d"; + green = "#98971a"; + yellow = "#d79921"; + blue = "#458588"; + purple = "#b16286"; + aqua = "#689d6a"; + orange = "#d65d0e"; + gray = "#928374"; + + # Bright colors + bright_red = "#fb4934"; + bright_green = "#b8bb26"; + bright_yellow = "#fabd2f"; + bright_blue = "#83a598"; + bright_purple = "#d3869b"; + bright_aqua = "#8ec07c"; + bright_orange = "#fe8019"; + }; +}