How to use "currentColor"

Created on 19 February 2025, about 2 months ago

Problem/Motivation

How do I use ‘currentColor’ with icons?
The following code generates an error because the string ‘currentColor’ is not a colour...

myicones:
  label: pack d'icônes custom
  description: "xxxxxxxxxxxx xxxxxxxxxxxx"
  extractor: svg
  config:
    sources:
      - ./xxxxxxxx/{icon_id}.svg
  settings:
    size:
      title: Size
      type: "integer"
      minimum: 12
      maximum: 128
      multipleOf: 4
      default: 32
    color:
      title: Fill color
      type: "string"
      format: "color"
      default: "currentColor"
  template: >
    <svg xmlns="http://www.w3.org/2000/svg"
      class="lokaicone"
      viewBox="0 0 24 24"
      height="{{ size|default(32) }}"
      width="{{ size|default(32) }}"
      fill="{{ color|default('currentColor') }}"
    >
      {{ content }} 
    </svg>

Is there a method to select ‘currentColor’ or use ‘currentColor’ by default?

💬 Support request
Status

Active

Version

1.0

Component

Code

Created by

🇫🇷France steveoriol Grenoble 🇫🇷

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @steveoriol
  • 🇫🇷France steveoriol Grenoble 🇫🇷

    A little trick until we find something better:

      settings:
        size:
          title: Size
          type: "integer"
          minimum: 12
          maximum: 128
          multipleOf: 4
          default: 32
        color:
          title: Couleur
          type: "string"
          format: "color"
          default: "#000001"
      template: >
        <svg xmlns="http://www.w3.org/2000/svg"
          class="lokaicone"
          viewBox="0 0 24 24"
          height="{{ size|default(32) }}"
          width="{{ size|default(32) }}"
          fill="{{ color|replace({'#000001': "currentColor"}) }}"
        >
          {{ content }} 
        </svg>

    Basically, you set the default colour that is not used in the site and replace it with ‘currentColor’.

  • 🇫🇷France mogtofu33

    First check the template generated to be sure there is no double quoted string.

    Then your SVG icons must be compatible with usage of fill="currentColor", see documentation for color inheritance: https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/color.

Production build 0.71.5 2024