aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-06-22 21:19:46 +0200
committerAdrian Kummerlaender2018-06-22 21:19:46 +0200
commit85820915419ae129c5965dca9d3636ff7bca769b (patch)
tree7bf932d94b84637cc9a428b3e2256968de886427
parentab46be8acc63fec4daf86289ffa240d9e943d5fc (diff)
downloadnixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar
nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar.gz
nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar.bz2
nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar.lz
nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar.xz
nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar.zst
nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.zip
Fix green color value
-rw-r--r--gui/apps/sxiv.nix2
-rw-r--r--gui/conf/xmonad.hs8
-rw-r--r--gui/gtk.nix8
3 files changed, 9 insertions, 9 deletions
diff --git a/gui/apps/sxiv.nix b/gui/apps/sxiv.nix
index 628fd41..376669f 100644
--- a/gui/apps/sxiv.nix
+++ b/gui/apps/sxiv.nix
@@ -8,6 +8,6 @@ pkgs.callPackage ../pkgs/sxiv.nix {
win_fs = "#999999";
sel = "#aadb0f";
bar_bg = "#161616";
- bar_fg = "#909737";
+ bar_fg = "#909636";
};
}
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs
index 359e312..634b9cf 100644
--- a/gui/conf/xmonad.hs
+++ b/gui/conf/xmonad.hs
@@ -33,10 +33,10 @@ customTabTheme = (theme xmonadTheme)
{ fontName = "xft:Iosevka Medium-12"
, decoHeight = 20
, activeTextColor = "#222222"
- , activeColor = "#909737"
+ , activeColor = "#909636"
, inactiveTextColor = "#999999"
, inactiveColor = "#161616"
- , activeBorderColor = "#909737"
+ , activeBorderColor = "#909636"
, inactiveBorderColor = "#161616" }
availableLayouts = id
@@ -143,7 +143,7 @@ main = xmonad $ ewmh
{ modMask = mod4Mask -- super key as modifier
, borderWidth = 3
, normalBorderColor = "#161616"
- , focusedBorderColor = "#909737"
+ , focusedBorderColor = "#909636"
, keys = \c -> mkKeymap c keybindings
, startupHook = return () >> checkKeymap def keybindings
, handleEventHook = customEventHook
@@ -192,4 +192,4 @@ hideScreenBorder :: RationalRect -> RationalRect
hideScreenBorder (RationalRect x0 y0 w h) = RationalRect (x0-(bw/sw)) (y0-(bw/sh)) (w+((2*bw)/sw)) (h+((2*bw+1)/sh))
where bw = 6
sw = 1280
- sh = 1024
+ sh = 768
diff --git a/gui/gtk.nix b/gui/gtk.nix
index c7cf757..a4cf977 100644
--- a/gui/gtk.nix
+++ b/gui/gtk.nix
@@ -18,7 +18,7 @@
caret2_fg = "101010";
hdr_btn_bg = "161616";
hdr_btn_fg = "aadb0f";
- menu_bg = "909737";
+ menu_bg = "909636";
menu_fg = "1a1a1a";
sel_bg = "aadb0f";
sel_fg = "101010";
@@ -27,8 +27,8 @@
gradient = 0.0;
roundness = 0;
spacing = 1;
- wm_border_focus = "909737";
- wm_border_unfocus = "909737";
+ wm_border_focus = "909636";
+ wm_border_unfocus = "909636";
gtk3_generate_dark = false;
};
};
@@ -39,7 +39,7 @@
iconTheme = let
oomox-archdroid-icon-theme = pkgs.callPackage ./pkgs/oomox-archdroid-icon-theme.nix {
- color = "909737";
+ color = "909636";
};
in {
name = "oomox-archdroid";