I've been unable to find documentation of the color of text in a sketch. Brown looks like reserved words, blue is text, etc. Here are my questions about the two code fragments. Why are LiquidCrystal.h and Wire.h brown and the other two includes black? Why is minute brown, while hour and second are black. This last one seems to be giving me a problem.
My RTC is on battery but minute gives a new value when the Arduino board is powered up.
#include <LiquidCrystal.h>
#include <DS1307RTC.h> // a basic DS1307 library that returns time as a time_t
#include <Time.h>
#include <Wire.h>
lcd.setCursor(0, 1);
lcd.print(hour());
lcd.print(" ");
lcd.print(minute());
lcd.print(" ");
lcd.print(second());
lcd.print(" ");