@guildofgleks/ui 0.0.1 → 21.2.2
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/LICENSE +21 -0
- package/README.md +192 -64
- package/fesm2022/guildofgleks-ui.mjs +1019 -911
- package/fesm2022/guildofgleks-ui.mjs.map +1 -1
- package/package.json +19 -2
- package/src/styles/fonts.css +16 -17
- package/src/styles/index.css +17 -3
- package/src/styles/theme.css +943 -0
- package/src/styles/typography.css +15 -15
- package/src/styles/utilities.css +33 -27
- package/types/guildofgleks-ui.d.ts +421 -161
- package/src/styles/tokens.scss +0 -82
package/src/styles/tokens.scss
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
:root[data-theme='light'] {
|
|
2
|
-
--background-color: #f8f3ea;
|
|
3
|
-
--surface-color: #ede2cc;
|
|
4
|
-
--text-color: #1a1208;
|
|
5
|
-
--muted-text-color: #5c3d00;
|
|
6
|
-
--color-text-secondary: #5c3d00;
|
|
7
|
-
--primary-color: #1a1208;
|
|
8
|
-
--accent-color: #7a5c00;
|
|
9
|
-
--accent-bright: #b68b00;
|
|
10
|
-
--accent-dim: #5a4200;
|
|
11
|
-
--accent-pale: #fde8c8;
|
|
12
|
-
--secondary-color: #a07800;
|
|
13
|
-
--success-color: #166534;
|
|
14
|
-
--danger-color: #b91c1c;
|
|
15
|
-
--warning-color: #a16207;
|
|
16
|
-
--info-color: #6b7280;
|
|
17
|
-
--border-color: #c9b896;
|
|
18
|
-
--hover-color: #e4d6bc;
|
|
19
|
-
--radius: 0px;
|
|
20
|
-
--gog-spinner-overlay-bg: rgba(248, 243, 234, 0.75);
|
|
21
|
-
--gog-toast-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
|
|
22
|
-
--gog-toast-min-width: 280px;
|
|
23
|
-
--gog-toast-max-width: 400px;
|
|
24
|
-
--gog-toast-gap: 10px;
|
|
25
|
-
--gog-toast-stack-padding: 16px;
|
|
26
|
-
--gog-toast-z-index: 9999;
|
|
27
|
-
--gog-toast-enter-distance: 110%;
|
|
28
|
-
|
|
29
|
-
--header-bg: #d4b483;
|
|
30
|
-
--header-foreground: #1a1208;
|
|
31
|
-
--header-border: #a07800;
|
|
32
|
-
--footer-bg: #d4b483;
|
|
33
|
-
--footer-foreground: #5c3d00;
|
|
34
|
-
|
|
35
|
-
--space-xs: 4px;
|
|
36
|
-
--space-sm: 8px;
|
|
37
|
-
--space-md: 16px;
|
|
38
|
-
--space-lg: 24px;
|
|
39
|
-
--space-2xl: 48px;
|
|
40
|
-
|
|
41
|
-
--btn-sm-padding: 0.5rem 0.875rem;
|
|
42
|
-
--btn-md-padding: 0.75rem 1.25rem;
|
|
43
|
-
--btn-lg-padding: 1rem 1.5rem;
|
|
44
|
-
--btn-sm-font-size: 0.875rem;
|
|
45
|
-
--btn-md-font-size: 1rem;
|
|
46
|
-
--btn-lg-font-size: 1.125rem;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
:root[data-theme='dark'] {
|
|
50
|
-
--background-color: #0e0b06;
|
|
51
|
-
--surface-color: #181208;
|
|
52
|
-
--text-color: #fdcc64;
|
|
53
|
-
--muted-text-color: #946700;
|
|
54
|
-
--color-text-secondary: #946700;
|
|
55
|
-
--primary-color: #0e0b06;
|
|
56
|
-
--accent-color: #fae000;
|
|
57
|
-
--accent-bright: #fdcc64;
|
|
58
|
-
--accent-dim: #b68b00;
|
|
59
|
-
--accent-pale: #724700;
|
|
60
|
-
--secondary-color: #d8b300;
|
|
61
|
-
--success-color: #16a34a;
|
|
62
|
-
--danger-color: #ef4444;
|
|
63
|
-
--warning-color: #f59e0b;
|
|
64
|
-
--info-color: #9ca3af;
|
|
65
|
-
--border-color: #2a1f0e;
|
|
66
|
-
--hover-color: #221a0c;
|
|
67
|
-
--radius: 0px;
|
|
68
|
-
--gog-spinner-overlay-bg: rgba(10, 8, 3, 0.65);
|
|
69
|
-
--gog-toast-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
|
|
70
|
-
--gog-toast-min-width: 280px;
|
|
71
|
-
--gog-toast-max-width: 400px;
|
|
72
|
-
--gog-toast-gap: 10px;
|
|
73
|
-
--gog-toast-stack-padding: 16px;
|
|
74
|
-
--gog-toast-z-index: 9999;
|
|
75
|
-
--gog-toast-enter-distance: 110%;
|
|
76
|
-
|
|
77
|
-
--header-bg: #0e0b06;
|
|
78
|
-
--header-foreground: #fae000;
|
|
79
|
-
--header-border: #724700;
|
|
80
|
-
--footer-bg: #0e0b06;
|
|
81
|
-
--footer-foreground: #946700;
|
|
82
|
-
}
|