@wavv/ui 2.3.0-alpha.1 → 2.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavv/ui",
3
- "version": "2.3.0-alpha.1",
3
+ "version": "2.3.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -1,76 +0,0 @@
1
- declare const colors: {
2
- logo1: string;
3
- logo2: string;
4
- logo3: string;
5
- brand: string;
6
- brandShade1: string;
7
- brandShade2: string;
8
- brandDark: string;
9
- brandDarkShade1: string;
10
- brandTint0: string;
11
- brandTint1: string;
12
- brandTint2: string;
13
- brandTint3: string;
14
- brandTint4: string;
15
- brandBackground0: string;
16
- brandBackground1: string;
17
- brandBackground2: string;
18
- brandBackground3: string;
19
- brandBackground4: string;
20
- brandBackground5: string;
21
- error: string;
22
- errorShade1: string;
23
- errorShade2: string;
24
- errorTint0: string;
25
- errorTint1: string;
26
- errorTint2: string;
27
- errorTint3: string;
28
- errorTint4: string;
29
- warning: string;
30
- warningShade1: string;
31
- warningShade2: string;
32
- warningTint0: string;
33
- warningTint1: string;
34
- warningTint2: string;
35
- warningTint3: string;
36
- warningTint4: string;
37
- alert: string;
38
- alertShade1: string;
39
- alertShade2: string;
40
- alertTint0: string;
41
- alertTint1: string;
42
- alertTint2: string;
43
- alertTint3: string;
44
- alertTint4: string;
45
- success: string;
46
- successShade1: string;
47
- successShade2: string;
48
- successTint0: string;
49
- successTint1: string;
50
- successTint2: string;
51
- successTint3: string;
52
- successTint4: string;
53
- grayscale0: string;
54
- grayscale1: string;
55
- grayscale2: string;
56
- grayscale3: string;
57
- grayscale4: string;
58
- grayscale5: string;
59
- grayscale6: string;
60
- grayscale7: string;
61
- grayscale8: string;
62
- grayscale9: string;
63
- grayscale10: string;
64
- contrast0: string;
65
- contrast1: string;
66
- contrast2: string;
67
- contrast3: string;
68
- contrast4: string;
69
- contrast5: string;
70
- contrast6: string;
71
- contrast7: string;
72
- contrast8: string;
73
- contrast9: string;
74
- contrast10: string;
75
- };
76
- export default colors;
@@ -1,86 +0,0 @@
1
- import { transparentize } from "polished";
2
- const brand = '#40E0D0';
3
- const brandDark = '#FF00A8';
4
- const error = '#FF3366';
5
- const warning = '#FFD23F';
6
- const alertColor = '#FFFF66';
7
- const success = '#0ECD9D';
8
- const grayVal = '#2B003E';
9
- const white = '#FFFDF2';
10
- const colors = {
11
- logo1: brand,
12
- logo2: brandDark,
13
- logo3: '#8A2BE2',
14
- brand,
15
- brandShade1: '#E00096',
16
- brandShade2: '#C00084',
17
- brandDark,
18
- brandDarkShade1: '#36C7B8',
19
- brandTint0: transparentize(0.95, brand),
20
- brandTint1: transparentize(0.9, brand),
21
- brandTint2: transparentize(0.8, brand),
22
- brandTint3: transparentize(0.7, brand),
23
- brandTint4: transparentize(0.6, brand),
24
- brandBackground0: '#2C073B',
25
- brandBackground1: '#360948',
26
- brandBackground2: '#400A55',
27
- brandBackground3: '#4A0C62',
28
- brandBackground4: '#540D6E',
29
- brandBackground5: '#6F3386',
30
- error,
31
- errorShade1: '#E02E5C',
32
- errorShade2: '#C92852',
33
- errorTint0: transparentize(0.95, error),
34
- errorTint1: transparentize(0.9, error),
35
- errorTint2: transparentize(0.8, error),
36
- errorTint3: transparentize(0.7, error),
37
- errorTint4: transparentize(0.6, error),
38
- warning,
39
- warningShade1: '#E6AF00',
40
- warningShade2: '#CC9B00',
41
- warningTint0: transparentize(0.95, warning),
42
- warningTint1: transparentize(0.9, warning),
43
- warningTint2: transparentize(0.8, warning),
44
- warningTint3: transparentize(0.7, warning),
45
- warningTint4: transparentize(0.6, warning),
46
- alert: alertColor,
47
- alertShade1: '#E6E652',
48
- alertShade2: '#CCCC48',
49
- alertTint0: transparentize(0.95, alertColor),
50
- alertTint1: transparentize(0.9, alertColor),
51
- alertTint2: transparentize(0.8, alertColor),
52
- alertTint3: transparentize(0.7, alertColor),
53
- alertTint4: transparentize(0.6, alertColor),
54
- success,
55
- successShade1: '#33E512',
56
- successShade2: '#2CCF10',
57
- successTint0: transparentize(0.95, success),
58
- successTint1: transparentize(0.9, success),
59
- successTint2: transparentize(0.8, success),
60
- successTint3: transparentize(0.7, success),
61
- successTint4: transparentize(0.6, success),
62
- grayscale0: transparentize(0.95, grayVal),
63
- grayscale1: transparentize(0.9, grayVal),
64
- grayscale2: transparentize(0.8, grayVal),
65
- grayscale3: transparentize(0.7, grayVal),
66
- grayscale4: transparentize(0.6, grayVal),
67
- grayscale5: transparentize(0.5, grayVal),
68
- grayscale6: transparentize(0.4, grayVal),
69
- grayscale7: transparentize(0.3, grayVal),
70
- grayscale8: transparentize(0.2, grayVal),
71
- grayscale9: transparentize(0.1, grayVal),
72
- grayscale10: grayVal,
73
- contrast0: transparentize(0.95, white),
74
- contrast1: transparentize(0.9, white),
75
- contrast2: transparentize(0.8, white),
76
- contrast3: transparentize(0.7, white),
77
- contrast4: transparentize(0.6, white),
78
- contrast5: transparentize(0.5, white),
79
- contrast6: transparentize(0.4, white),
80
- contrast7: transparentize(0.3, white),
81
- contrast8: transparentize(0.2, white),
82
- contrast9: transparentize(0.1, white),
83
- contrast10: white
84
- };
85
- const eighties_colors = colors;
86
- export { eighties_colors as default };
@@ -1,3 +0,0 @@
1
- import type { ITheme } from '../../ThemeTypes';
2
- declare const dark: ITheme;
3
- export default dark;