From b0e30fdce1edef28e256bcc632c65a4c380f50d7 Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Wed, 5 May 2021 22:07:57 +0100 Subject: [PATCH] Use lightGrey for folders on normal computers This way we still get some differences between files and folders on normal computers. I did try with just green, but I think the contrast is too low. Closes #656 --- src/main/resources/data/computercraft/lua/rom/programs/list.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/data/computercraft/lua/rom/programs/list.lua b/src/main/resources/data/computercraft/lua/rom/programs/list.lua index ec281938d..490662071 100644 --- a/src/main/resources/data/computercraft/lua/rom/programs/list.lua +++ b/src/main/resources/data/computercraft/lua/rom/programs/list.lua @@ -33,5 +33,5 @@ table.sort(tFiles) if term.isColour() then textutils.pagedTabulate(colors.green, tDirs, colors.white, tFiles) else - textutils.pagedTabulate(tDirs, tFiles) + textutils.pagedTabulate(colors.lightGray, tDirs, colors.white, tFiles) end