mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-20 09:47:57 +02:00
ironbar: Don't hardcode colors
This commit is contained in:
parent
ee7b7e2cac
commit
6391d885a3
@ -1,3 +1,5 @@
|
|||||||
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
xdg.configFile."ironbar/config.json".text = /* json */ ''
|
xdg.configFile."ironbar/config.json".text = /* json */ ''
|
||||||
{
|
{
|
||||||
@ -39,12 +41,12 @@
|
|||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
xdg.configFile."ironbar/style.css".text = /* css */ ''
|
xdg.configFile."ironbar/style.css".text = with config.lib.stylix.colors; /* css */ ''
|
||||||
@define-color color_bg #272822;
|
@define-color color_bg #${base00};
|
||||||
@define-color color_bg_dark #383838;
|
@define-color color_bg_dark #${base01};
|
||||||
@define-color color_border #383838;
|
@define-color color_border #${base01};
|
||||||
@define-color color_border_active #fd971f;
|
@define-color color_border_active #${base09};
|
||||||
@define-color color_text #ffffff;
|
@define-color color_text #${base05};
|
||||||
@define-color color_urgent #8f0a0a;
|
@define-color color_urgent #8f0a0a;
|
||||||
|
|
||||||
* {
|
* {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user