diff options
author | tsxv478 <atvx717@infraredcombat.xyz> | 2025-08-04 21:22:31 +0300 |
---|---|---|
committer | tsxv478 <atvx717@infraredcombat.xyz> | 2025-08-04 21:22:31 +0300 |
commit | 4edb7eafb1477ad428b5e95573647902a2032a75 (patch) | |
tree | fba607d6e74e9386af8a8ea0e46e54bdc1658509 | |
parent | 437c218cc10ced4da9518c88f3940ca04300bc10 (diff) |
onedark colors
-rw-r--r-- | config.def.h | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index f1998bd..63c5ca6 100644 --- a/config.def.h +++ b/config.def.h @@ -132,13 +132,37 @@ static const char *colorname[] = { "#8ec07c", "#ebdbb2", + /* onedark */ + /* 8 normal colors */ + /* "#1e2127", */ + /* "#e06c75", */ + /* "#98c379", */ + /* "#e5c07b", */ + /* "#61afef", */ + /* "#c678dd", */ + /* "#56b6c2", */ + /* "#abb2bf", */ + + /* 8 bright colors */ + /* "#5c6370", */ + /* "#e06c75", */ + /* "#98c379", */ + /* "#e5c07b", */ + /* "#61afef", */ + /* "#c678dd", */ + /* "#56b6c2", */ + /* "#ffffff", */ + + [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ "#cccccc", "#555555", - "gray90", /* default foreground colour */ - "black", /* default background colour */ + "#ebdbb2", /* gruvbox foreground colour */ + "#1d2021", /* gruvbox background colour */ + "#abb2bf", /* onedark foreground colour */ + "#1e2127", /* onedark background colour */ }; |