I'm modifying the united LS theme to add a bit more that I'm used to having. One of the things is a song playing title/time bar. I took the code from non|step, and that much works fine using xLabel. However, it didn't have a color specified, so black was used, but that doesn't work well against a dark gray background, so I went about using the [label]FontColor (R, G, B) line to change the color. However, it seems I can't get anything lighter than a bright cyan color. The font color setting in the theme is in hex (abdcfc), which should be (171, 220, 252). Any idea why it won't display the correct color?
Try specifying it with hex? I use: dateFontColor C0DBF7, which works perfectly....
xLabel doesn't seem to accept hex. I tried using it, and it was still black. At least, it doesn't read hex if you just put in "abdcfc." Does it need a modifier to let the module know you're giving it a hex value?
swmmng: Please copy and paste the exact line that is in your *.rc file here.
RGB value that gives me bright cyan text:
ampTimeLabelFontColor (171, 220, 252)
Corresponding hex value that gives black text:
ampTimeLabelFontColor (abdcfc)
This what module version?
try...
ampTimeLabelFontColor abdcfc
yeah... why the parentheses??
Wow, yeah, no parentheses. I put them in because in the readme, the syntax was given as FontColor (color). Thanks, though.