summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
author0undefined <oscar@nelin.dk>2025-05-31 21:06:05 +0000
committer0undefined <oscar@nelin.dk>2025-05-31 21:06:05 +0000
commit61a4b0302f968d1d3d80cb614c1afcc375324f57 (patch)
tree297fddd74b1927fea5ee04d6e2b36e337c3e067f /config.def.h
parent8e3aa607b638e7ad392af0d160196a577c21de2c (diff)
Fix colors
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index adb2dfe..cfdfe5b 100644
--- a/config.def.h
+++ b/config.def.h
@@ -36,8 +36,8 @@ static const uint32_t col_red = 0x770000ff;
static uint32_t colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_fg, col_bg, col_border },
- [SchemeSel] = { col_fg_sel, col_bg_sel, col_primary },
- [SchemeTagSel] = { col_bg, col_primary, col_border },
+ [SchemeSel] = { col_fg_sel, col_bg_sel, col_fg_sel },
+ [SchemeTagSel] = { col_bg, col_fg_sel, col_border },
[SchemeUrg] = { 0, 0, col_red },
};