mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-16 22:18:20 +00:00

* start v2 * start * run * some cleanup * remove v2 pkg again * simplify * webauthn * remove unused config * fix login path in Dockerfile * fix asset_generator.go * health handler * fix grpc web * refactor * merge * build new main.go * run new main.go * update logging pkg * fix error msg * update logging * cleanup * cleanup * go mod tidy * change localDevMode * fix customEndpoints * update logging * comments * change local flag to external configs * fix location generated go code * fix Co-authored-by: fforootd <florian@caos.ch>
29 lines
779 B
SCSS
29 lines
779 B
SCSS
@import 'styles/vars';
|
|
@import 'main';
|
|
@import 'bundle';
|
|
|
|
// Include non-theme styles for core. -> mainly background of the login
|
|
@include lgn-core();
|
|
|
|
$light-primary: lgn-palette($lgn-light-brand);
|
|
$light-accent: lgn-palette($lgn-light-brand);
|
|
$light-warn: lgn-palette($lgn-warn);
|
|
|
|
$dark-primary: lgn-palette($lgn-dark-brand);
|
|
$dark-accent: lgn-palette($lgn-dark-brand);
|
|
$dark-warn: lgn-palette($lgn-warn);
|
|
|
|
$light-theme: lgn-light-theme($light-primary, $light-accent, $light-warn);
|
|
$dark-theme: lgn-dark-theme($dark-primary, $dark-accent, $dark-warn);
|
|
|
|
// Include all theme styles for the components.
|
|
@include zitadel-lgn-theme();
|
|
|
|
//.lgn-dark-theme {
|
|
// @include zitadel-lgn-theme($dark-theme);
|
|
//}
|
|
|
|
//.lgn-light-theme {
|
|
// @include zitadel-lgn-theme($light-theme);
|
|
//}
|