@guildofgleks/ui 0.0.1

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.
@@ -0,0 +1,82 @@
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
+ }
@@ -0,0 +1,15 @@
1
+ .fw-black {
2
+ font-weight: 900;
3
+ }
4
+
5
+ .font-heading {
6
+ font-family: var(--font-heading), serif;
7
+ }
8
+
9
+ .font-body {
10
+ font-family: var(--font-body), sans-serif;
11
+ }
12
+
13
+ .font-mono {
14
+ font-family: var(--font-mono), monospace;
15
+ }
@@ -0,0 +1,27 @@
1
+ .gog-inline-center {
2
+ display: inline-flex;
3
+ align-items: center;
4
+ justify-content: center;
5
+ }
6
+
7
+ .gog-flex-center {
8
+ display: flex;
9
+ align-items: center;
10
+ justify-content: center;
11
+ }
12
+
13
+ .gog-contained-layout {
14
+ contain: layout style;
15
+ }
16
+
17
+ .gog-cursor-pointer {
18
+ cursor: pointer;
19
+ }
20
+
21
+ .gog-cursor-wait {
22
+ cursor: wait;
23
+ }
24
+
25
+ .gog-cursor-not-allowed {
26
+ cursor: not-allowed;
27
+ }