This commit is contained in:
fqbn207
2025-01-30 22:06:09 +01:00
parent 1d50eb0f2b
commit e93bb7b5c7
4 changed files with 15 additions and 5 deletions

View File

@ -20,7 +20,7 @@
colors = {
primary = {
foreground = "#FFFFFF";
background = "#262626";
background = "#121212";
};
};
};

View File

@ -31,6 +31,8 @@
telescope.enable = true;
theme = {
enable = true;
name = "oxocarbon";
style = "dark";
};
};
};

View File

@ -4,6 +4,7 @@
statusline = {
lualine = {
enable = true;
theme = "oxocarbon";
globalStatus = true;
icons.enable = true;
ignoreFocus = [

View File

@ -13,16 +13,23 @@ static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = {"Fantasque Sans Mono:size=10"};
static const char dmenufont[] = "Fantasque Sans Mono:size=10";
static const char col_gray1[] = "#262626";
//static const char col_gray1[] = "#262626";
//static const char col_gray2[] = "#ffffff";
//static const char col_gray3[] = "#dde1e6";
//static const char col_gray4[] = "#ffffff";
//static const char col_cyan[] = "#262626";
static const char col_gray1[] = "#121212";
static const char col_gray2[] = "#ffffff";
static const char col_gray3[] = "#dde1e6";
static const char col_gray4[] = "#ffffff";
static const char col_cyan[] = "#262626";
static const char col_cyan[] = "#121212";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = {col_gray3, col_gray1, col_gray1}, /* Normale Fenster */
[SchemeSel] = {col_gray4, col_cyan, col_gray2}, /* Ausgewähltes Fenster */
[SchemeNorm] = {col_gray3, col_gray1, col_gray1},
[SchemeSel] = {col_gray4, col_cyan, col_gray2},
};
/* tagging */