From e07d57718a871dc0178e3e4047f017cc55d71d97 Mon Sep 17 00:00:00 2001 From: knoflook Date: Tue, 23 Apr 2024 16:51:50 +0200 Subject: [PATCH] feat: make themeing easier --- compose.yml | 5 ++--- custom.css.tmpl | 24 ------------------------ 2 files changed, 2 insertions(+), 27 deletions(-) delete mode 100644 custom.css.tmpl diff --git a/compose.yml b/compose.yml index fa3c533..df6b4c5 100644 --- a/compose.yml +++ b/compose.yml @@ -47,9 +47,7 @@ services: - media:/media - assets:/web/dist/assets - templates:/templates - configs: - - source: custom_css - target: /web/dist/custom.css + - webdist:/web/dist networks: - internal - proxy @@ -180,6 +178,7 @@ networks: volumes: backups: + webdist: media: templates: assets: diff --git a/custom.css.tmpl b/custom.css.tmpl deleted file mode 100644 index 780eb76..0000000 --- a/custom.css.tmpl +++ /dev/null @@ -1,24 +0,0 @@ -/* my custom css */ - - -:root { - --ak-accent: #fd4b2d; - - --ak-dark-foreground: #fafafa; - --ak-dark-foreground-darker: #bebebe; - --ak-dark-foreground-link: #5a5cb9; - --ak-dark-background: #18191a; - --ak-dark-background-darker: #000000; - - - --ak-dark-background-light: {{ env "AUTHENTIK_COLOR_BACKGROUND_LIGHT" }}; - --ak-dark-background-light-ish: #212427; - --ak-dark-background-lighter: #2b2e33; - - --pf-c-background-image--BackgroundImage: var(--ak-flow-background); - --pf-c-background-image--BackgroundImage-2x: var(--ak-flow-background); - --pf-c-background-image--BackgroundImage--sm: var(--ak-flow-background); - --pf-c-background-image--BackgroundImage--sm-2x: var(--ak-flow-background); - --pf-c-background-image--BackgroundImage--lg: var(--ak-flow-background); -} -