@zimbra/x-ui 7.0.0 → 9.1.0
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/css-variables.css +14 -1
- package/package.json +1 -1
package/css-variables.css
CHANGED
|
@@ -16,6 +16,18 @@
|
|
|
16
16
|
--gray-light: light-dark(#999999, #4d4d4d);
|
|
17
17
|
--gray-lighter: light-dark(#d9d9d9, #262626);
|
|
18
18
|
--gray-lightest: light-dark(#f2f2f2, #191919);
|
|
19
|
+
/* Stable colors which will not changed in dark mode */
|
|
20
|
+
--gray-base-stable: #000000;
|
|
21
|
+
--gray-darkest-stable: #262626;
|
|
22
|
+
--gray-darker-stable: #4d4d4d;
|
|
23
|
+
--gray-dark-stable: #666666;
|
|
24
|
+
--gray-stable: #777777;
|
|
25
|
+
--gray-light-stable: #999999;
|
|
26
|
+
--gray-lighter-stable: #d9d9d9;
|
|
27
|
+
--gray-lightest-stable: #f2f2f2;
|
|
28
|
+
--black-bg: #000000;
|
|
29
|
+
--white-bg: #ffffff;
|
|
30
|
+
|
|
19
31
|
--gray-placeholder: var(--gray-dark);
|
|
20
32
|
--warm-gray: var(--gray-light);
|
|
21
33
|
--off-white: #fafafa;
|
|
@@ -118,5 +130,6 @@
|
|
|
118
130
|
--row-height-narrow: 72px;
|
|
119
131
|
--row-height-wide: 27px;
|
|
120
132
|
--tag-secondary-font-color: #ffffff;
|
|
121
|
-
--popover-row-border-color: var(--border-color)
|
|
133
|
+
--popover-row-border-color: var(--border-color);
|
|
134
|
+
--warning-banner-bg: light-dark(var(--brand-warning-300), var(--brand-warning-500));
|
|
122
135
|
}
|