docs » hs.drawing.color

Provides access to the system color lists and a wider variety of ways to represent color within Hammerspoon.

Color is represented within Hammerspoon as a table containing keys which tell Hammerspoon how the color is specified. You can specify a color in one of the following ways, depending upon the keys you supply within the table:

Any combination of the above keys may be specified within the color table and they will be evaluated in the following order:

  1. if the image key is specified, it will be used to create a tiling pattern.
  2. If the list and name keys are specified, and if they can be matched to an existing color within the system color lists, that color is used.
  3. If the hue key is provided, then the color is generated as an HSB color
  4. If the white key is provided, then the color is generated as a Grayscale color
  5. Otherwise, an RGB color is generated.

Except where specified above to indicate the color model being used, any key which is not provided defaults to a value of 0.0, except for alpha, which defaults to 1.0. This means that specifying an empty table as the color will result in an opaque black color.

API Overview

API Documentation

Constants

definedCollections
Signature hs.drawing.color.definedCollections
Type Constant
Description

This table contains this list of defined color collections provided by the hs.drawing.color module. Collections differ from the system color lists in that you can modify the color values their members contain by modifying the table at hs.drawing.color.<collection>.<color> and future references to that color will reflect the new changes, thus allowing you to customize the palettes for your installation.

Notes
  • This list is a constant, but the members it refers to are not.
Source extensions/drawing/color/drawing_color.lua line 361

Variables

ansiTerminalColors
Signature hs.drawing.color.ansiTerminalColors
Type Variable
Description

A collection of colors representing the ANSI Terminal color sequences. The color definitions are based upon code found at https://github.com/balthamos/geektool-3 in the /NerdTool/classes/ANSIEscapeHelper.m file.

Notes
  • This is not a constant, so you can adjust the colors at run time for your installation if desired.
Source extensions/drawing/color/drawing_color.lua line 129
hammerspoon
Signature hs.drawing.color.hammerspoon
Type Variable
Description

This table contains a collection of various useful pre-defined colors:

Notes
  • This is not a constant, so you can adjust the colors at run time for your installation if desired.

  • Previous versions of Hammerspoon included these colors at the hs.drawing.color path; for backwards compatibility, the keys of this table are replicated at that path as long as they do not conflict with any other color collection or function within the hs.drawing.color module. You really should adjust your code to use the collection, as this may change in the future.

Source extensions/drawing/color/drawing_color.lua line 330
x11
Signature hs.drawing.color.x11
Type Variable
Description

A collection of colors representing the X11 color names as defined at https://en.wikipedia.org/wiki/Web_colors#X11_color_names (names in lowercase)

Notes
  • This is not a constant, so you can adjust the colors at run time for your installation if desired.
Source extensions/drawing/color/drawing_color.lua line 170

Functions

asHSB
Signature hs.drawing.color.asHSB(color) -> table | string
Type Function
Description

Returns a table containing the HSB representation of the specified color.

Parameters
  • color - a table specifying a color as described in the module definition (see hs.drawing.color in the online help or Dash documentation)
Returns
  • a table containing the hue, saturation, brightness, and alpha keys representing the specified color as HSB or a string describing the color's colorspace if conversion is not possible.
Notes
  • See also hs.drawing.color.asRGB
Source extensions/drawing/color/libdrawing_color.m line 66
asRGB
Signature hs.drawing.color.asRGB(color) -> table | string
Type Function
Description

Returns a table containing the RGB representation of the specified color.

Parameters
  • color - a table specifying a color as described in the module definition (see hs.drawing.color in the online help or Dash documentation)
Returns
  • a table containing the red, blue, green, and alpha keys representing the specified color as RGB or a string describing the color's colorspace if conversion is not possible.
Notes
  • See also hs.drawing.color.asHSB
Source extensions/drawing/color/libdrawing_color.m line 34
colorsFor
Signature hs.drawing.color.colorsFor(list) -> table
Type Function
Description

Returns a table containing the colors for the specified system color list or hs.drawing.color collection.

Parameters
  • list - the name of the list to provide colors for
Returns
  • a table whose keys are made from the colors provided by the color list or nil if the list does not exist.
Notes
  • Where possible, each color node is provided as its RGB color representation. Where this is not possible, the color node contains the keys list and name which identify the indicated color. This means that you can use the following wherever a color parameter is expected: hs.drawing.color.colorsFor(list)["color-name"]
  • This function provides a tostring metatable method which allows listing the defined colors in the list in the Hammerspoon console with: hs.drawing.colorsFor(list)
  • See also hs.drawing.color.lists
Source extensions/drawing/color/drawing_color.lua line 100
lists
Signature hs.drawing.color.lists() -> table
Type Function
Description

Returns a table containing the system color lists and hs.drawing.color collections with their defined colors.

Parameters
  • None
Returns
  • a table whose keys are made from the currently defined system color lists and hs.drawing.color collections. Each color list key refers to a table whose keys make up the colors provided by the specific color list.
Notes
  • Where possible, each color node is provided as its RGB color representation. Where this is not possible, the color node contains the keys list and name which identify the indicated color. This means that you can use the following wherever a color parameter is expected: hs.drawing.color.lists()["list-name"]["color-name"]
  • This function provides a tostring metatable method which allows listing the defined color lists in the Hammerspoon console with: hs.drawing.color.lists()
  • See also hs.drawing.color.colorsFor
Source extensions/drawing/color/libdrawing_color.m line 8