@deque/cauldron-styles 5.0.0-canary.ce15231f → 5.0.0-canary.f7bc1da2
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.css +7 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
/* color palette */
|
|
9
9
|
--white: #ffffff;
|
|
10
10
|
--dark-workspace-color: #53636e;
|
|
11
|
+
--stroke-light: #b3bfc6;
|
|
11
12
|
--stroke-dark: #5d676f;
|
|
12
13
|
--gray-10: #fdfdfe;
|
|
13
14
|
--gray-20: #f2f2f2;
|
|
@@ -50,6 +51,9 @@
|
|
|
50
51
|
--header-text-color: var(--gray-80);
|
|
51
52
|
--header-text-color-dark: var(--gray-90);
|
|
52
53
|
|
|
54
|
+
/* background colours */
|
|
55
|
+
--background-light: #f0f2f5;
|
|
56
|
+
|
|
53
57
|
/* accents */
|
|
54
58
|
--error: var(--accent-error);
|
|
55
59
|
--disabled: var(--gray-40);
|
|
@@ -66,6 +70,7 @@
|
|
|
66
70
|
|
|
67
71
|
/* spacing (padding/margin) */
|
|
68
72
|
--space-smallest: 8px;
|
|
73
|
+
--space-smaller: 12px;
|
|
69
74
|
--space-small: 16px;
|
|
70
75
|
--space-medium: 18px;
|
|
71
76
|
--space-large: 24px;
|
|
@@ -81,6 +86,7 @@
|
|
|
81
86
|
--text-size-larger: 56px;
|
|
82
87
|
--text-size-large: 45px;
|
|
83
88
|
--text-size-large-medium: 34px;
|
|
89
|
+
--text-size-medium-large: 32px;
|
|
84
90
|
--text-size-medium: 24px;
|
|
85
91
|
--text-small-medium: 20px;
|
|
86
92
|
--text-size-normal: 18px;
|
|
@@ -1823,7 +1829,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1823
1829
|
|
|
1824
1830
|
:root {
|
|
1825
1831
|
--link-text-color: var(--gray-90);
|
|
1826
|
-
--link-text-color-hover:
|
|
1832
|
+
--link-text-color-hover: #3873a3;
|
|
1827
1833
|
--link-text-color-light: rgba(60, 122, 174, 0.1);
|
|
1828
1834
|
}
|
|
1829
1835
|
|
|
@@ -3471,7 +3477,6 @@ button.TooltipTabstop {
|
|
|
3471
3477
|
outline-offset: unset;
|
|
3472
3478
|
}
|
|
3473
3479
|
|
|
3474
|
-
.TableHeader,
|
|
3475
3480
|
.TableHeader--sort-ascending,
|
|
3476
3481
|
.TableHeader--sort-descending {
|
|
3477
3482
|
background: var(--table-header-sorting-background-color);
|
package/package.json
CHANGED