@wistia/vhs-design-tokens 1.5.0-beta.bbf2d43c.3969391 → 1.5.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/dist/css/design-tokens.css +18 -25
- package/dist/js/colorMetadata.js +531 -560
- package/dist/js/designTokens.js +2 -25
- package/dist/scss/_design-tokens.scss +18 -25
- package/index.d.ts +28 -26
- package/package.json +1 -1
package/dist/js/designTokens.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Thu, 08 Feb 2024
|
|
3
|
+
* Generated on Thu, 08 Feb 2024 16:16:51 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
module.exports = {
|
|
@@ -79,30 +79,7 @@ module.exports = {
|
|
|
79
79
|
grey900: '#37373c',
|
|
80
80
|
grey1000: '#1f1f22',
|
|
81
81
|
grey1100: '#0b0d0e',
|
|
82
|
-
|
|
83
|
-
error200: '#ffcaca',
|
|
84
|
-
error300: '#ff9a9a',
|
|
85
|
-
error400: '#ff6962',
|
|
86
|
-
error500: '#fa4040',
|
|
87
|
-
error600: '#d63727',
|
|
88
|
-
error700: '#aa0d15',
|
|
89
|
-
error800: '#860011',
|
|
90
|
-
success100: '#e6f9f3',
|
|
91
|
-
success200: '#bfefe0',
|
|
92
|
-
success300: '#81e0c1',
|
|
93
|
-
success400: '#41d0a3',
|
|
94
|
-
success500: '#00c185',
|
|
95
|
-
success600: '#00966e',
|
|
96
|
-
success700: '#047063',
|
|
97
|
-
success800: '#025050',
|
|
98
|
-
warning100: '#fff8e6',
|
|
99
|
-
warning200: '#ffefc8',
|
|
100
|
-
warning300: '#ffdf96',
|
|
101
|
-
warning400: '#ffce5a',
|
|
102
|
-
warning500: '#fabe1f',
|
|
103
|
-
warning600: '#dc9601',
|
|
104
|
-
warning700: '#be7200',
|
|
105
|
-
warning800: '#b45101',
|
|
82
|
+
statuserror: '#ffecec',
|
|
106
83
|
},
|
|
107
84
|
duration: {
|
|
108
85
|
productive: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on Thu, 08 Feb 2024
|
|
3
|
+
// Generated on Thu, 08 Feb 2024 16:16:51 GMT
|
|
4
4
|
|
|
5
5
|
$breakpoint-xs: 0em;
|
|
6
6
|
$breakpoint-sm: 37.5em;
|
|
@@ -74,30 +74,23 @@ $color-grey-800: #4a4a51;
|
|
|
74
74
|
$color-grey-900: #37373c;
|
|
75
75
|
$color-grey-1000: #1f1f22;
|
|
76
76
|
$color-grey-1100: #0b0d0e;
|
|
77
|
-
$color-error
|
|
78
|
-
$color-
|
|
79
|
-
$color-
|
|
80
|
-
$color-
|
|
81
|
-
$color-
|
|
82
|
-
$color-
|
|
83
|
-
$color-
|
|
84
|
-
$color-
|
|
85
|
-
$color-
|
|
86
|
-
$color-success-
|
|
87
|
-
$color-success-
|
|
88
|
-
$color-success-
|
|
89
|
-
$color-success-
|
|
90
|
-
$color-success-
|
|
91
|
-
$color-success-
|
|
92
|
-
$color-success-
|
|
93
|
-
$color-
|
|
94
|
-
$color-warning-200: #ffefc8;
|
|
95
|
-
$color-warning-300: #ffdf96;
|
|
96
|
-
$color-warning-400: #ffce5a;
|
|
97
|
-
$color-warning-500: #fabe1f;
|
|
98
|
-
$color-warning-600: #dc9601;
|
|
99
|
-
$color-warning-700: #be7200;
|
|
100
|
-
$color-warning-800: #b45101;
|
|
77
|
+
$color-status-error: #ffecec;
|
|
78
|
+
$color-status-warning-100: #fff8e6;
|
|
79
|
+
$color-status-warning-200: #ffefc8;
|
|
80
|
+
$color-status-warning-300: #ffdf96;
|
|
81
|
+
$color-status-warning-400: #ffce5a;
|
|
82
|
+
$color-status-warning-500: #fabe1f;
|
|
83
|
+
$color-status-warning-600: #dc9601;
|
|
84
|
+
$color-status-warning-700: #be7200;
|
|
85
|
+
$color-status-warning-800: #b45101;
|
|
86
|
+
$color-status-success-100: #e6f9f3;
|
|
87
|
+
$color-status-success-200: #bfefe0;
|
|
88
|
+
$color-status-success-300: #81e0c1;
|
|
89
|
+
$color-status-success-400: #41d0a3;
|
|
90
|
+
$color-status-success-500: #00c185;
|
|
91
|
+
$color-status-success-600: #00966e;
|
|
92
|
+
$color-status-success-700: #047063;
|
|
93
|
+
$color-status-success-800: #025050;
|
|
101
94
|
$duration-productive-fast: 70ms;
|
|
102
95
|
$duration-productive-moderate: 110ms;
|
|
103
96
|
$duration-productive-slow: 150ms;
|
package/index.d.ts
CHANGED
|
@@ -132,32 +132,34 @@ declare module '@wistia/vhs-design-tokens' {
|
|
|
132
132
|
readonly grey1000: CSSHexString;
|
|
133
133
|
readonly grey1100: CSSHexString;
|
|
134
134
|
|
|
135
|
-
readonly
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
135
|
+
readonly status: {
|
|
136
|
+
error100: CSSHexString;
|
|
137
|
+
error200: CSSHexString;
|
|
138
|
+
error300: CSSHexString;
|
|
139
|
+
error400: CSSHexString;
|
|
140
|
+
error500: CSSHexString;
|
|
141
|
+
error600: CSSHexString;
|
|
142
|
+
error700: CSSHexString;
|
|
143
|
+
error800: CSSHexString;
|
|
144
|
+
|
|
145
|
+
warning100: CSSHexString;
|
|
146
|
+
warning200: CSSHexString;
|
|
147
|
+
warning300: CSSHexString;
|
|
148
|
+
warning400: CSSHexString;
|
|
149
|
+
warning500: CSSHexString;
|
|
150
|
+
warning600: CSSHexString;
|
|
151
|
+
warning700: CSSHexString;
|
|
152
|
+
warning800: CSSHexString;
|
|
153
|
+
|
|
154
|
+
success100: CSSHexString;
|
|
155
|
+
success200: CSSHexString;
|
|
156
|
+
success300: CSSHexString;
|
|
157
|
+
success400: CSSHexString;
|
|
158
|
+
success500: CSSHexString;
|
|
159
|
+
success600: CSSHexString;
|
|
160
|
+
success700: CSSHexString;
|
|
161
|
+
success800: CSSHexString;
|
|
162
|
+
};
|
|
161
163
|
}
|
|
162
164
|
|
|
163
165
|
export type FontWeightNumbers = 1 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 1000;
|