@limpiolux/ui-styles 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components.css +1 -1
- package/light.css +15 -0
- package/package.json +1 -1
- package/utilities.css +1 -1
package/components.css
CHANGED
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
.portal-app-card {
|
|
136
|
-
@apply
|
|
136
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.045] shadow-2xl shadow-black/30 backdrop-blur-xl relative overflow-hidden p-5 transition duration-300;
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
.auth-hero-panel {
|
package/light.css
CHANGED
|
@@ -116,6 +116,13 @@
|
|
|
116
116
|
color: #18181b;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
+
.light .btn-primary,
|
|
120
|
+
.light .btn-primary:hover,
|
|
121
|
+
.light .brand-fab,
|
|
122
|
+
.light .brand-fab:hover {
|
|
123
|
+
color: #ffffff;
|
|
124
|
+
}
|
|
125
|
+
|
|
119
126
|
.light .accent-amber-text {
|
|
120
127
|
color: #a16207;
|
|
121
128
|
}
|
|
@@ -252,6 +259,10 @@
|
|
|
252
259
|
color: #ffffff;
|
|
253
260
|
}
|
|
254
261
|
|
|
262
|
+
.light .soft-tab-active .soft-tab-label {
|
|
263
|
+
color: #ffffff;
|
|
264
|
+
}
|
|
265
|
+
|
|
255
266
|
.light .soft-tab-track {
|
|
256
267
|
border-color: rgba(212, 212, 216, 0.95);
|
|
257
268
|
background:
|
|
@@ -698,6 +709,10 @@
|
|
|
698
709
|
color: rgb(var(--color-zinc-300)) !important;
|
|
699
710
|
}
|
|
700
711
|
|
|
712
|
+
.light {
|
|
713
|
+
--legacy-white-foreground: rgb(var(--color-zinc-200));
|
|
714
|
+
}
|
|
715
|
+
|
|
701
716
|
.light .text-muted {
|
|
702
717
|
color: rgb(var(--color-zinc-500)) !important;
|
|
703
718
|
}
|
package/package.json
CHANGED