e-monsite/color-twig-extension

使用twig操作颜色

v2.2.1 2021-10-05 08:19 UTC

This package is auto-updated.

Last update: 2024-09-05 14:33:48 UTC


README

安装

composer require e-monsite/color-twig-extension

如果你在Symfony上,请将此捆绑包添加到你的捆绑包中

// config/bundles.php
return [
    Emonsite\ColorTwigExtension\ColorExtensionBundle::class => ['all' => true],
];

用法

这里有一些示例

{{ 'rgb(138, 7, 7)' | darken(20) }}
{{ '#8a0707' | lighten(40) }}
{{ 'green' | alpha(0.5) }}
{% if myColor is dark %} ... {% endif %}
{% if myColor2 is light %} ... {% endif %}