summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-04-20 00:29:26 -0400
committerJune McEnroe <june@causal.agency>2018-04-20 00:29:26 -0400
commit5faa7a2e230d42919bbf1397c4b2b83e96223dec (patch)
treeebfacf12bac05d14033584d1485468bd701a8134 /bin
parentFormat gfxx options with uppercase hexadecimal (diff)
downloadsrc-5faa7a2e230d42919bbf1397c4b2b83e96223dec.tar.gz
src-5faa7a2e230d42919bbf1397c4b2b83e96223dec.zip
Update fbclock and fbatt colours
No, my Linux computer is still broken.
Diffstat (limited to 'bin')
-rw-r--r--bin/fbatt.c10
-rw-r--r--bin/fbclock.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/bin/fbatt.c b/bin/fbatt.c
index 6c0052e4..55e3745a 100644
--- a/bin/fbatt.c
+++ b/bin/fbatt.c
@@ -33,11 +33,11 @@ static const uint32_t RIGHT  = 5 * 8 + 1; // fbclock width.
 static const uint32_t WIDTH  = 8;
 static const uint32_t HEIGHT = 16;
 
-static const uint32_t BG     = 0x1D2021;
-static const uint32_t BORDER = 0xA99A84;
-static const uint32_t GRAY   = 0x938374;
-static const uint32_t YELLOW = 0xD89A22;
-static const uint32_t RED    = 0xCC241D;
+static const uint32_t BG     = 0x161510;
+static const uint32_t BORDER = 0x7A7155;
+static const uint32_t GRAY   = 0x4C4635;
+static const uint32_t YELLOW = 0xA37720;
+static const uint32_t RED    = 0xA32810;
 
 int main() {
     int error;
diff --git a/bin/fbclock.c b/bin/fbclock.c
index e8e5fc69..5671f873 100644
--- a/bin/fbclock.c
+++ b/bin/fbclock.c
@@ -40,8 +40,8 @@ struct Psf2Header {
     uint32_t glyphWidth;
 };
 
-static const uint32_t BG = 0x1D2021;
-static const uint32_t FG = 0xA99A84;
+static const uint32_t BG = 0x161510;
+static const uint32_t FG = 0x7A7155;
 
 int main() {
     size_t len;