DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

colors:

Properties of each color available in the RTE.

colors.[ id-string ]

Property

colors.[ id-string ]

Description

Defines the colors available in the RTE.

Properties:

.name = Label of the color in menu
.value = The HTML-color value

Example:

# General configuration of the available colors:
RTE.colors {
  color1 {
    name = Background color
    value = blue
  }
  color2 {
    name = Another color I like!
    value = #775533
  }
  noColor {
    name = No color
    value =
  }
}
# Specific setting for the font color selector:
RTE.default.colors = color1, color2, noColor

[page:RTE]