Oh! Sorry, quick CSS lesson then:
This is basically exactly what you'll be doing, but instead of "p" as the selector, it will be the widget elements. You will use the property "color" to set the text color in your widget.
All CSS declaration blocks begin with a selector ("p" in this example, which is the paragraph tag), followed by an opening curly brace, styling properties, and end with a closing curly brace as shown in the syntax above. This is another example of a declaration, which uses a class as the selector (classes start with a period):
CSS:
.class-name {
background-color: white;
color: black;
}
All styling properties contain a property name, a colon, a property value, and a semicolon to end the line. There are lots and lots of properties, with multiple values each.
If you'd like a more in-depth explanation, I recommend HTML Dog:
www.htmldog.com