- Notifications
You must be signed in to change notification settings - Fork26
Description
I have started usingobjc-colordump
, but I find it a little bit complicated to use when you are changing the palette colors.
My setup: I created the palette with one color, then I copied the clr file to my working directory, and set up the build phase invokingobjc-colordump
, pointing to the clr file in my working copy.
At this moment, if I modify the palette (add a color, remove a color,…), the file that changes is the one in~/Library/Colors
, but everytime I recompile my project, since the tool “install” the palette again, my changes get overwritten. I have to remember to copy back the palette in the Library to my working copy before recompiling. This doesn't make things very easy (and I have lost a couple of colors because of this).
I trying soft-linking the~/Library/Colors
palette to the one in my working directory, and the link gets overwritten during the compilation.
My question is, how are you using the tool while creating new colors in the palette? Do you manually copy the clr file each time it gets modified?
Thanks.