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
This commit is contained in:
Jonathan Coates 2021-05-05 22:07:57 +01:00
parent 4e15afa254
commit b0e30fdce1
1 changed files with 1 additions and 1 deletions

View File

@ -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