@fluityy/designsystem 0.2.14 → 0.2.15
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/dist/styles.css +24 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -182,6 +182,30 @@
|
|
|
182
182
|
--color-toast-danger-bg: #2d0808;
|
|
183
183
|
}
|
|
184
184
|
|
|
185
|
+
/* button-vars.css */
|
|
186
|
+
/* Tokens locais do botão raised (variantes neutras) — alternam por modo */
|
|
187
|
+
:root {
|
|
188
|
+
--flui-btn-raised-highlight: rgba(255, 255, 255, 0.6);
|
|
189
|
+
--flui-btn-raised-highlight-hover: rgba(255, 255, 255, 0.7);
|
|
190
|
+
--flui-btn-raised-lip: rgba(0, 0, 0, 0.06);
|
|
191
|
+
--flui-btn-raised-lip-hover: rgba(0, 0, 0, 0.07);
|
|
192
|
+
--flui-btn-raised-lip-active: rgba(0, 0, 0, 0.08);
|
|
193
|
+
--flui-btn-raised-stroke: rgba(0, 0, 0, 0.06);
|
|
194
|
+
--flui-btn-raised-stroke-hover: rgba(0, 0, 0, 0.07);
|
|
195
|
+
--flui-btn-raised-stroke-active: rgba(0, 0, 0, 0.08);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
[data-theme="dark"] {
|
|
199
|
+
--flui-btn-raised-highlight: rgba(255, 255, 255, 0.08);
|
|
200
|
+
--flui-btn-raised-highlight-hover: rgba(255, 255, 255, 0.12);
|
|
201
|
+
--flui-btn-raised-lip: rgba(0, 0, 0, 0.32);
|
|
202
|
+
--flui-btn-raised-lip-hover: rgba(0, 0, 0, 0.36);
|
|
203
|
+
--flui-btn-raised-lip-active: rgba(0, 0, 0, 0.4);
|
|
204
|
+
--flui-btn-raised-stroke: rgba(255, 255, 255, 0.06);
|
|
205
|
+
--flui-btn-raised-stroke-hover: rgba(255, 255, 255, 0.08);
|
|
206
|
+
--flui-btn-raised-stroke-active: rgba(255, 255, 255, 0.1);
|
|
207
|
+
}
|
|
208
|
+
|
|
185
209
|
/* tokens.dark.css */
|
|
186
210
|
/**
|
|
187
211
|
* Do not edit directly, this file was auto-generated.
|