feat: make themeing easier
continuous-integration/drone/push Build is failing Details

This commit is contained in:
knoflook 2024-04-23 16:51:50 +02:00
parent 553b97ba21
commit e07d57718a
2 changed files with 2 additions and 27 deletions

View File

@ -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:

View File

@ -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);
}