feat(theme): configure colors via global css variables
This commit is contained in:
@@ -151,11 +151,33 @@ html {
|
||||
border-color: color-mix(in srgb, var(--destructive-custom) 35%, transparent) !important;
|
||||
}
|
||||
|
||||
/* Background Glowing Orbs */
|
||||
/* Background Glowing Orbs & Dynamic Surfaces */
|
||||
.blur-\[120px\] {
|
||||
background-color: var(--bg-glow-1) !important;
|
||||
}
|
||||
|
||||
.bg-\[\#020617\] {
|
||||
background-color: oklch(var(--oklch-background)) !important;
|
||||
}
|
||||
|
||||
/* Dynamische Buttons & Badges über globale CSS Variablen */
|
||||
.btn-primary-theme, .bg-primary-theme {
|
||||
background-color: var(--button-bg, var(--primary-custom)) !important;
|
||||
color: #ffffff !important;
|
||||
}
|
||||
|
||||
.text-highlight-theme {
|
||||
color: var(--text-highlight, var(--accent-custom)) !important;
|
||||
}
|
||||
|
||||
.border-glow-theme {
|
||||
border-color: var(--card-border-glow, color-mix(in srgb, var(--accent-custom) 35%, transparent)) !important;
|
||||
}
|
||||
|
||||
.ring-theme {
|
||||
--tw-ring-color: var(--ring-color, var(--primary-custom)) !important;
|
||||
}
|
||||
|
||||
input, select, textarea, option {
|
||||
background-color: oklch(var(--oklch-surface)) !important;
|
||||
color: oklch(var(--oklch-text-main)) !important;
|
||||
|
||||
Reference in New Issue
Block a user