summaryrefslogtreecommitdiffstats
path: root/roles/hyprtheme/templates/theme/hyprlock.conf.j2
blob: d284dba5a0809204084aa3a046eae1ced0a9d99d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% macro hex_to_rgb(hex) -%}
{{ hex[1:3] | int(base=16)}}, {{ hex[3:5] | int(base=16) }}, {{ hex[5:7] | int(base=16) }}
{%- endmacro %}

$font = {{ hyprtheme_default_mono_font }}
$color = rgba({{ hex_to_rgb(background) }}, 1.0)
$inner_color = rgba({{ hex_to_rgb(background) }}, 0.8)
$outer_color = rgba({{ hex_to_rgb(accent) }}, 1.0)
$font_color = rgba({{ hex_to_rgb(foreground) }}, 1.0)
$check_color = rgba({{ hex_to_rgb(foreground) }}, 1.0)
$capslock_color = rgba({{ hex_to_rgb(color11) }}, 1.0)