diff options
| author | eug-vs <eugene@eug-vs.xyz> | 2022-03-31 17:59:22 +0300 | 
|---|---|---|
| committer | eug-vs <eugene@eug-vs.xyz> | 2022-03-31 17:59:37 +0300 | 
| commit | cad1f11826b0f4a7fe4ee2f8e9328367e10a6140 (patch) | |
| tree | f8235e5f0f97d95b4c86c250fb525447b45fb046 | |
| parent | c5298ee42bbf9dbec0b8d9dc2f57b1f260ea2b45 (diff) | |
| download | dwm-cad1f11826b0f4a7fe4ee2f8e9328367e10a6140.tar.gz | |
feat: remove accent color
| -rw-r--r-- | config.def.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 2d2af1a..41cfc16 100644 --- a/config.def.h +++ b/config.def.h @@ -13,11 +13,11 @@ static const int topbar             = 1;        /* 0 means bottom bar */  static const char *fonts[]          = { "fira code nerd font:pixelsize=12:antialias=true:autohint=true" };  static const char col_background[]  = "#1d2021";  static const char col_foreground[]  = "#ebdbb2"; -static const char col_primary[]      = "#689d6a"; +static const char col_primary[]      = "#928374";  static const char *colors[][3]      = {  	/*               fg         bg         border   */  	[SchemeNorm] = { col_foreground, col_background, "#000000" }, -	[SchemeSel]  = { col_foreground, col_primary,  col_primary  }, +	[SchemeSel]  = { col_foreground, col_primary,  "#000000"  },  	[SchemeStatus]  = { col_foreground, col_background,  "#000000"  },  };  |