@fluityy/designsystem 0.2.5 → 0.2.7
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/index.js +78 -39
- package/dist/index.js.map +1 -1
- package/dist/styles.css +9 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
--flui-color-neutral-0: #ffffff;
|
|
30
30
|
--flui-color-neutral-50: #f7f8fa;
|
|
31
31
|
--flui-color-neutral-100: #f3f4f7;
|
|
32
|
+
--flui-color-neutral-150: #eceef2;
|
|
32
33
|
--flui-color-neutral-200: #dde1e9;
|
|
33
34
|
--flui-color-neutral-300: #c2c8d4;
|
|
34
35
|
--flui-color-neutral-400: #9aa2b4;
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
--flui-color-neutral-750: #2c303c;
|
|
39
40
|
--flui-color-neutral-800: #22262f;
|
|
40
41
|
--flui-color-neutral-850: #1a1d25;
|
|
42
|
+
--flui-color-neutral-875: #161920;
|
|
41
43
|
--flui-color-neutral-900: #13151b;
|
|
42
44
|
--flui-color-neutral-950: #0e1015;
|
|
43
45
|
--flui-color-neutral-1000: #050608;
|
|
@@ -84,11 +86,12 @@
|
|
|
84
86
|
--flui-font-line-height-relaxed: 1.75;
|
|
85
87
|
--flui-semantic-bg-base: var(--flui-color-neutral-0);
|
|
86
88
|
--flui-semantic-bg-subtle: var(--flui-color-neutral-50);
|
|
87
|
-
--flui-semantic-bg-muted: var(--flui-color-neutral-
|
|
89
|
+
--flui-semantic-bg-muted: var(--flui-color-neutral-150);
|
|
90
|
+
--flui-semantic-bg-elevated: var(--flui-color-neutral-0);
|
|
88
91
|
--flui-semantic-fg-default: var(--flui-color-neutral-900);
|
|
89
92
|
--flui-semantic-fg-muted: var(--flui-color-neutral-500);
|
|
90
93
|
--flui-semantic-fg-on-brand: var(--flui-color-neutral-0);
|
|
91
|
-
--flui-semantic-border-default: var(--flui-color-neutral-
|
|
94
|
+
--flui-semantic-border-default: var(--flui-color-neutral-150);
|
|
92
95
|
--flui-semantic-border-strong: var(--flui-color-neutral-300);
|
|
93
96
|
--flui-semantic-primary-default: var(--flui-color-brand-500);
|
|
94
97
|
--flui-semantic-primary-hover: var(--flui-color-brand-600);
|
|
@@ -116,7 +119,8 @@
|
|
|
116
119
|
[data-theme="dark"] {
|
|
117
120
|
--flui-semantic-bg-base: var(--flui-color-neutral-1000);
|
|
118
121
|
--flui-semantic-bg-subtle: var(--flui-color-neutral-950);
|
|
119
|
-
--flui-semantic-bg-muted: var(--flui-color-neutral-
|
|
122
|
+
--flui-semantic-bg-muted: var(--flui-color-neutral-850);
|
|
123
|
+
--flui-semantic-bg-elevated: var(--flui-color-neutral-875);
|
|
120
124
|
--flui-semantic-fg-default: var(--flui-color-neutral-50);
|
|
121
125
|
--flui-semantic-fg-muted: var(--flui-color-neutral-300);
|
|
122
126
|
--flui-semantic-border-default: var(--flui-color-neutral-850);
|
|
@@ -185,6 +189,7 @@
|
|
|
185
189
|
--color-bg: var(--flui-semantic-bg-base);
|
|
186
190
|
--color-bg-subtle: var(--flui-semantic-bg-subtle);
|
|
187
191
|
--color-bg-muted: var(--flui-semantic-bg-muted);
|
|
192
|
+
--color-bg-elevated: var(--flui-semantic-bg-elevated);
|
|
188
193
|
--color-fg: var(--flui-semantic-fg-default);
|
|
189
194
|
--color-fg-muted: var(--flui-semantic-fg-muted);
|
|
190
195
|
--color-fg-on-brand: var(--flui-semantic-fg-on-brand);
|
|
@@ -217,6 +222,7 @@
|
|
|
217
222
|
--color-neutral-500: var(--flui-color-neutral-500);
|
|
218
223
|
--color-neutral-800: var(--flui-color-neutral-800);
|
|
219
224
|
--color-neutral-850: var(--flui-color-neutral-850);
|
|
225
|
+
--color-neutral-875: var(--flui-color-neutral-875);
|
|
220
226
|
--color-neutral-900: var(--flui-color-neutral-900);
|
|
221
227
|
--color-neutral-950: var(--flui-color-neutral-950);
|
|
222
228
|
--color-neutral-1000: var(--flui-color-neutral-1000);
|