color-field-formatter-swatch.html.twig 532 B

12345678910111213141516171819
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of a color swatch formatter.
  5. *
  6. * Available variables:
  7. * - color: The color background.
  8. * - width: The width of the color swatch.
  9. * - height: The height of the color swatch.
  10. * - shape: The shape of the color swatch.
  11. *
  12. * @see template_preprocess()
  13. * @see template_preprocess_color_field_formatter_swatch()
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. <div class='color_field__swatch--{{ shape }}' style="background-color: {{ color }}; width: {{ width }}px; height: {{ height }}px;"></div>