From 35cc84844bf760800f7c9f8419cda16b1f41b9ed Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 1 Aug 2024 19:16:23 -0400 Subject: [PATCH] add themenix --- config/modules/theme.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 config/modules/theme.nix diff --git a/config/modules/theme.nix b/config/modules/theme.nix new file mode 100644 index 0000000..392e925 --- /dev/null +++ b/config/modules/theme.nix @@ -0,0 +1,22 @@ +{ + border-radius = 5; + colors = { + background = "#282A2E"; + background-alt = "#373B41"; + + foreground = "#C5C8C6"; + + primary = "#F0C674"; + secondary = "#8ABEB7"; + + alert = "#A54242"; + disabled = "#707880"; + }; + sizing = { + xs = 1; + s = 2; + m = 4; + l = 8; + xl = 16; + }; +}