Documentation/Parsers/colors.md
The colors parser supports multiple input file types:
~/Library/Colors.:. A color can either be a color hex value, or the name of another color in the file.The default filter for this command is: [^/]\.(?i:clr|json|txt|xml)$. That means it'll accept any file with the extensions clr, json, txt or xml.
You can provide a custom filter using the filter option, it accepts any valid regular expression. See the Config file documentation for more information.
| Option Name | Default Value | Description |
|---|---|---|
colorFormat | rgba | Each color value is interpreted using the given color format. The supported formats are: <ul><li>rgba: 8 hexadecimal digits, with each pair of the hexadecimal digits representing the values of the Red, Green, Blue and Alpha channel, respectively.</li><li>argb: 8 hexadecimal digits, with each pair of the hexadecimal digits representing the values of the Alpha, Red, Green and Blue channel, respectively.</li></ul> |