PCManFM desktop colors

The dedicated forum for PCMan File Manager - http://wiki.lxde.org/en/PCManFM
Locked
Darjeeling
Posts: 5
Joined: Mon Jan 10, 2011 3:03 am

PCManFM desktop colors

Post by Darjeeling »

In the 0.5x series of PCManFM the configuration of the desktop
colors consisted of three groups of decimals for each of the
background, foreground and shadow colors ...

[desktop]
bg1=2056,2056,12850
bg2=38696,47009,32104
text=65535,50115,39321
shadow=2056,2056,12850

... while in the current 1.3.1 version there's only one six digit
hexadecimal number for each of the three colors ...

[desktop]
desktop_bg=#000000
desktop_fg=#ffffff
desktop_shadow=#000000

Does anyone know how the old triplets translate into the new
hex numbers?

I know this isn't very important, but I'm curious :)
drooly
Posts: 791
Joined: Mon Apr 08, 2013 6:45 am

Re: PCManFM desktop colors

Post by drooly »

it's RGB (red,green,blue) with values between 0 - 65535.
white is

Code: Select all

65535,65535,65535
red is:

Code: Select all

65535,0,0
etc.

(interestingly, spacefm still uses that format)
Locked