mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-14 10:53:44 +00:00
52 lines
998 B
CSS
Executable File
52 lines
998 B
CSS
Executable File
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
h1,
|
|
.ztdl-h1 {
|
|
@apply text-2xl;
|
|
}
|
|
|
|
.ztdl-p {
|
|
@apply text-sm;
|
|
}
|
|
}
|
|
|
|
html {
|
|
--background-color: #ffffff;
|
|
--dark-background-color: #000000;
|
|
}
|
|
|
|
.bg-background-light-500 {
|
|
background-color: var(--theme-light-background-500);
|
|
}
|
|
|
|
.bg-background-light-600 {
|
|
background-color: var(--theme-light-background-600);
|
|
}
|
|
|
|
.bg-background-light-700 {
|
|
background-color: var(--theme-light-background-700);
|
|
}
|
|
|
|
.bg-background-light-800 {
|
|
background-color: var(--theme-light-background-600);
|
|
}
|
|
|
|
.dark .dark\:bg-background-dark-500 {
|
|
background-color: var(--theme-dark-background-500) !important;
|
|
}
|
|
|
|
.dark .dark\:bg-background-dark-600 {
|
|
background-color: var(--theme-dark-background-600) !important;
|
|
}
|
|
|
|
.dark .dark\:bg-background-dark-700 {
|
|
background-color: var(--theme-dark-background-700) !important;
|
|
}
|
|
|
|
.dark .dark\:bg-background-dark-800 {
|
|
background-color: var(--theme-dark-background-800) !important;
|
|
}
|