From 345be2d54e5b01dcf8360e51bb5e652427c09e6c Mon Sep 17 00:00:00 2001 From: Elias Almqvist Date: Wed, 18 Dec 2024 20:19:42 +0100 Subject: [PATCH] tweaks --- nix-darwin/home.nix | 38 ++++++++++++++++-------------- nvchad/.config/nvim/lua/chadrc.lua | 9 +++++-- 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/nix-darwin/home.nix b/nix-darwin/home.nix index c6b7290..0f2805b 100644 --- a/nix-darwin/home.nix +++ b/nix-darwin/home.nix @@ -311,31 +311,33 @@ x = 8; y = 8; }; + opacity = 0.8; + blur = true; }; colors = { primary = { - background = "0x1e2122"; - foreground = "0xd4be98"; + background = "0x000000"; + foreground = "0xB3B1AD"; }; normal = { - black = "0x17191a"; - red = "0xea6962"; - green = "0xa9b665"; - yellow = "0xd8a657"; - blue = "0x7daea3"; - magenta = "0xd3869b"; - cyan = "0x89b482"; - white = "0xd4be98"; + black = "0x01060E"; + red = "0xEA6C73"; + green = "0x91B362"; + yellow = "0xF9AF4F"; + blue = "0x53BDFA"; + magenta = "0xFAE994"; + cyan = "0x90E1C6"; + white = "0xC7C7C7"; }; bright = { - black = "0x32302f"; - red = "0xea6962"; - green = "0xa9b665"; - yellow = "0xd8a657"; - blue = "0x7daea3"; - magenta = "0xd3869b"; - cyan = "0x89b482"; - white = "0xd4be98"; + black = "0x686868"; + red = "0xF07178"; + green = "0xC2D94C"; + yellow = "0xFFB454"; + blue = "0x59C2FF"; + magenta = "0xFFEE99"; + cyan = "0x95E6CB"; + white = "0xFFFFFF"; }; }; }; diff --git a/nvchad/.config/nvim/lua/chadrc.lua b/nvchad/.config/nvim/lua/chadrc.lua index 986d2d5..62f01e8 100644 --- a/nvchad/.config/nvim/lua/chadrc.lua +++ b/nvchad/.config/nvim/lua/chadrc.lua @@ -35,16 +35,21 @@ local function split_string(s) end M.ui = { - theme = "gruvchad", - theme_toggle = { "gruvchad", "blossom_light" }, + theme = "yoru", + theme_toggle = { "yoru", "blossom_light" }, hl_override = highlights.override, hl_add = highlights.add, statusline = { + enabled = false, theme = "vscode", }, + tabufline = { + enabled = false, + }, + hl_override = { NvDashAscii = { bg = "blue", fg = "white" }, },