aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs
index 56f96e80..27fcf3ca 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -259,7 +259,7 @@ impl Config {
///
/// The ordering returned here is expected by the terminal. Colors are simply indexed in this
/// array for performance.
- pub fn color_list(&self) -> [Rgb; 16] {
+ pub fn color_list(&self) -> [Rgb; 18] {
let colors = &self.colors;
[
@@ -282,6 +282,10 @@ impl Config {
colors.bright.magenta,
colors.bright.cyan,
colors.bright.white,
+
+ // Foreground and background
+ colors.primary.foreground,
+ colors.primary.background,
]
}