@bexis2/bexis2-core-ui 0.2.31 → 0.2.32

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.
Files changed (87) hide show
  1. package/README.md +5 -0
  2. package/dist/TableView.svelte +1 -1
  3. package/dist/components/File/FileIcon.svelte +45 -45
  4. package/dist/components/File/FileInfo.svelte +13 -13
  5. package/dist/components/ListView.svelte +5 -5
  6. package/dist/components/Table/Table.svelte +87 -25
  7. package/dist/components/Table/TableFilter.svelte +1 -1
  8. package/dist/components/form/Checkbox.svelte +13 -13
  9. package/dist/components/form/CheckboxKvPList.svelte +16 -16
  10. package/dist/components/form/CheckboxList.svelte +10 -10
  11. package/dist/components/form/DateInput.svelte +14 -14
  12. package/dist/components/form/DropdownKvP.svelte +54 -54
  13. package/dist/components/form/MultiSelect.svelte +181 -181
  14. package/dist/components/form/NumberInput.svelte +15 -15
  15. package/dist/components/form/TextArea.svelte +14 -14
  16. package/dist/components/form/TextInput.svelte +15 -15
  17. package/dist/components/page/Alert.svelte +28 -28
  18. package/dist/components/page/BackToTop.svelte +30 -30
  19. package/dist/components/page/Docs.svelte +22 -22
  20. package/dist/components/page/ErrorMessage.svelte +8 -8
  21. package/dist/components/page/Footer.svelte +5 -5
  22. package/dist/components/page/Header.svelte +5 -5
  23. package/dist/components/page/HelpPopUp.svelte +30 -30
  24. package/dist/components/page/PageCaller.js +19 -19
  25. package/dist/components/page/Spinner.svelte +14 -14
  26. package/dist/components/page/breadcrumb/Breadcrumb.svelte +19 -19
  27. package/dist/components/page/menu/MenuDataCaller.js +10 -10
  28. package/dist/css/core.ui.postcss +17 -17
  29. package/dist/css/themes/theme-bexis2.css +96 -96
  30. package/dist/css/themes/theme-crimson.css +101 -101
  31. package/dist/css/themes/theme-gold-nouveau.css +140 -140
  32. package/dist/css/themes/theme-hamlindigo.css +112 -112
  33. package/dist/css/themes/theme-modern.css +127 -127
  34. package/dist/css/themes/theme-rocket.css +119 -119
  35. package/dist/css/themes/theme-sahara.css +128 -128
  36. package/dist/css/themes/theme-seafoam.css +122 -122
  37. package/dist/css/themes/theme-seasonal.css +115 -115
  38. package/dist/css/themes/theme-skeleton.css +118 -118
  39. package/dist/css/themes/theme-vintage.css +125 -125
  40. package/dist/models/Models.d.ts +3 -0
  41. package/dist/services/BaseCaller.js +16 -16
  42. package/package.json +1 -1
  43. package/src/lib/TableView.svelte +1 -1
  44. package/src/lib/components/ListView.svelte +11 -11
  45. package/src/lib/components/Table/Table.svelte +107 -26
  46. package/src/lib/components/Table/TableFilter.svelte +2 -1
  47. package/src/lib/components/Table/filter.ts +141 -141
  48. package/src/lib/components/{File → file}/FileIcon.svelte +45 -45
  49. package/src/lib/components/{File → file}/FileInfo.svelte +13 -13
  50. package/src/lib/components/form/Checkbox.svelte +24 -24
  51. package/src/lib/components/form/CheckboxKvPList.svelte +29 -29
  52. package/src/lib/components/form/CheckboxList.svelte +21 -21
  53. package/src/lib/components/form/DateInput.svelte +27 -27
  54. package/src/lib/components/form/DropdownKvP.svelte +54 -54
  55. package/src/lib/components/form/MultiSelect.svelte +181 -181
  56. package/src/lib/components/form/NumberInput.svelte +30 -30
  57. package/src/lib/components/form/TextArea.svelte +28 -28
  58. package/src/lib/components/form/TextInput.svelte +28 -28
  59. package/src/lib/components/page/Alert.svelte +41 -41
  60. package/src/lib/components/page/BackToTop.svelte +30 -30
  61. package/src/lib/components/page/Docs.svelte +46 -46
  62. package/src/lib/components/page/ErrorMessage.svelte +10 -10
  63. package/src/lib/components/page/Footer.svelte +18 -18
  64. package/src/lib/components/page/Header.svelte +18 -18
  65. package/src/lib/components/page/HelpPopUp.svelte +72 -72
  66. package/src/lib/components/page/PageCaller.js +19 -19
  67. package/src/lib/components/page/Spinner.svelte +20 -20
  68. package/src/lib/components/page/breadcrumb/Breadcrumb.svelte +39 -39
  69. package/src/lib/components/page/menu/MenuDataCaller.js +10 -10
  70. package/src/lib/css/core.ui.postcss +17 -17
  71. package/src/lib/css/themes/theme-bexis2.css +96 -96
  72. package/src/lib/css/themes/theme-crimson.css +101 -101
  73. package/src/lib/css/themes/theme-gold-nouveau.css +140 -140
  74. package/src/lib/css/themes/theme-hamlindigo.css +112 -112
  75. package/src/lib/css/themes/theme-modern.css +127 -127
  76. package/src/lib/css/themes/theme-rocket.css +119 -119
  77. package/src/lib/css/themes/theme-sahara.css +128 -128
  78. package/src/lib/css/themes/theme-seafoam.css +122 -122
  79. package/src/lib/css/themes/theme-seasonal.css +115 -115
  80. package/src/lib/css/themes/theme-skeleton.css +118 -118
  81. package/src/lib/css/themes/theme-vintage.css +125 -125
  82. package/src/lib/models/Models.ts +10 -7
  83. package/src/lib/models/Page.ts +40 -40
  84. package/src/lib/services/Api.ts +55 -55
  85. package/src/lib/services/BaseCaller.js +16 -16
  86. package/src/lib/stores/apiStores.ts +31 -31
  87. /package/src/lib/components/{File → file}/FileUploader.svelte +0 -0
@@ -1,140 +1,140 @@
1
- /* =~= Gold Nouveau - made by GitHub user @Sarenor for the Skeleton community theme contest. =~= */
2
- /* https://github.com/skeletonlabs/skeleton/discussions/401 */
3
-
4
- /* https://fonts.google.com/specimen/Quicksand?query=Quicksand */
5
- @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
6
-
7
- /* =~= Gold Nouveau =~= */
8
- :root {
9
- /* =~= Theme Properties =~= */
10
- --theme-font-family-base: system-ui, sans-serif;
11
- --theme-font-family-heading: 'Quicksand', sans-serif;
12
- --theme-font-color-base: var(--color-surface-900);
13
- --theme-font-color-dark: var(--color-surface-50);
14
- --theme-rounded-base: 4px;
15
- --theme-rounded-container: 4px;
16
- --theme-border-base: 1px;
17
- /* =~= Theme On-X Colors =~= */
18
- --on-primary: 255 255 255;
19
- --on-secondary: 255 255 255;
20
- --on-tertiary: 255 255 255;
21
- --on-success: 0 0 0;
22
- --on-warning: 0 0 0;
23
- --on-error: 255 255 255;
24
- --on-surface: 255 255 255;
25
- /* =~= Theme Colors =~= */
26
- /* primary | #744aa1 */
27
- --color-primary-50: 250 248 252; /* ⬅ #faf8fc */
28
- --color-primary-100: 242 238 247; /* ⬅ #f2eef7 */
29
- --color-primary-200: 229 220 239; /* ⬅ #e5dcef */
30
- --color-primary-300: 209 192 226; /* ⬅ #d1c0e2 */
31
- --color-primary-400: 162 129 197; /* ⬅ #a281c5 */
32
- --color-primary-500: 116 74 161; /* ⬅ #744aa1 */
33
- --color-primary-600: 83 53 115; /* ⬅ #533573 */
34
- --color-primary-700: 60 39 84; /* ⬅ #3c2754 */
35
- --color-primary-800: 35 22 49; /* ⬅ #231631 */
36
- --color-primary-900: 18 11 24; /* ⬅ #120b18 */
37
- /* secondary | #0672e5 */
38
- --color-secondary-50: 218 234 251; /* ⬅ #daeafb */
39
- --color-secondary-100: 205 227 250; /* ⬅ #cde3fa */
40
- --color-secondary-200: 193 220 249; /* ⬅ #c1dcf9 */
41
- --color-secondary-300: 155 199 245; /* ⬅ #9bc7f5 */
42
- --color-secondary-400: 81 156 237; /* ⬅ #519ced */
43
- --color-secondary-500: 6 114 229; /* ⬅ #0672e5 */
44
- --color-secondary-600: 5 103 206; /* ⬅ #0567ce */
45
- --color-secondary-700: 5 86 172; /* ⬅ #0556ac */
46
- --color-secondary-800: 4 68 137; /* ⬅ #044489 */
47
- --color-secondary-900: 3 56 112; /* ⬅ #033870 */
48
- /* tertiary | #7f78dd */
49
- --color-tertiary-50: 236 235 250; /* ⬅ #ecebfa */
50
- --color-tertiary-100: 229 228 248; /* ⬅ #e5e4f8 */
51
- --color-tertiary-200: 223 221 247; /* ⬅ #dfddf7 */
52
- --color-tertiary-300: 204 201 241; /* ⬅ #ccc9f1 */
53
- --color-tertiary-400: 165 161 231; /* ⬅ #a5a1e7 */
54
- --color-tertiary-500: 127 120 221; /* ⬅ #7f78dd */
55
- --color-tertiary-600: 114 108 199; /* ⬅ #726cc7 */
56
- --color-tertiary-700: 95 90 166; /* ⬅ #5f5aa6 */
57
- --color-tertiary-800: 76 72 133; /* ⬅ #4c4885 */
58
- --color-tertiary-900: 62 59 108; /* ⬅ #3e3b6c */
59
- /* success | #72c585 */
60
- --color-success-50: 234 246 237; /* ⬅ #eaf6ed */
61
- --color-success-100: 227 243 231; /* ⬅ #e3f3e7 */
62
- --color-success-200: 220 241 225; /* ⬅ #dcf1e1 */
63
- --color-success-300: 199 232 206; /* ⬅ #c7e8ce */
64
- --color-success-400: 156 214 170; /* ⬅ #9cd6aa */
65
- --color-success-500: 114 197 133; /* ⬅ #72c585 */
66
- --color-success-600: 103 177 120; /* ⬅ #67b178 */
67
- --color-success-700: 86 148 100; /* ⬅ #569464 */
68
- --color-success-800: 68 118 80; /* ⬅ #447650 */
69
- --color-success-900: 56 97 65; /* ⬅ #386141 */
70
- /* warning | #e77f08 */
71
- --color-warning-50: 251 236 218; /* ⬅ #fbecda */
72
- --color-warning-100: 250 229 206; /* ⬅ #fae5ce */
73
- --color-warning-200: 249 223 193; /* ⬅ #f9dfc1 */
74
- --color-warning-300: 245 204 156; /* ⬅ #f5cc9c */
75
- --color-warning-400: 238 165 82; /* ⬅ #eea552 */
76
- --color-warning-500: 231 127 8; /* ⬅ #e77f08 */
77
- --color-warning-600: 208 114 7; /* ⬅ #d07207 */
78
- --color-warning-700: 173 95 6; /* ⬅ #ad5f06 */
79
- --color-warning-800: 139 76 5; /* ⬅ #8b4c05 */
80
- --color-warning-900: 113 62 4; /* ⬅ #713e04 */
81
- /* error | #8f0f22 */
82
- --color-error-50: 238 219 222; /* ⬅ #eedbde */
83
- --color-error-100: 233 207 211; /* ⬅ #e9cfd3 */
84
- --color-error-200: 227 195 200; /* ⬅ #e3c3c8 */
85
- --color-error-300: 210 159 167; /* ⬅ #d29fa7 */
86
- --color-error-400: 177 87 100; /* ⬅ #b15764 */
87
- --color-error-500: 143 15 34; /* ⬅ #8f0f22 */
88
- --color-error-600: 129 14 31; /* ⬅ #810e1f */
89
- --color-error-700: 107 11 26; /* ⬅ #6b0b1a */
90
- --color-error-800: 86 9 20; /* ⬅ #560914 */
91
- --color-error-900: 70 7 17; /* ⬅ #460711 */
92
- /* surface | #744aa1 */
93
- --color-surface-50: 250 248 252; /* ⬅ #faf8fc */
94
- --color-surface-100: 242 238 247; /* ⬅ #f2eef7 */
95
- --color-surface-200: 229 220 239; /* ⬅ #e5dcef */
96
- --color-surface-300: 209 192 226; /* ⬅ #d1c0e2 */
97
- --color-surface-400: 162 129 197; /* ⬅ #a281c5 */
98
- --color-surface-500: 116 74 161; /* ⬅ #744aa1 */
99
- --color-surface-600: 83 53 115; /* ⬅ #533573 */
100
- --color-surface-700: 60 39 84; /* ⬅ #3c2754 */
101
- --color-surface-800: 35 22 49; /* ⬅ #231631 */
102
- --color-surface-900: 18 11 24; /* ⬅ #120b18 */
103
- }
104
-
105
- /* =~= Gold Nouveau (dark mode overrides) =~= */
106
- .dark [data-theme='gold-nouveau'] {
107
- /* =~= Theme On-X Colors =~= */
108
- --on-primary: 0 0 0;
109
- /* =~= Theme Colors =~= */
110
- /* primary | #e6c833 */
111
- --color-primary-50: 251 247 224; /* ⬅ #fbf7e0 */
112
- --color-primary-100: 250 244 214; /* ⬅ #faf4d6 */
113
- --color-primary-200: 249 241 204; /* ⬅ #f9f1cc */
114
- --color-primary-300: 245 233 173; /* ⬅ #f5e9ad */
115
- --color-primary-400: 238 217 112; /* ⬅ #eed970 */
116
- --color-primary-500: 230 200 51; /* ⬅ #e6c833 */
117
- --color-primary-600: 207 180 46; /* ⬅ #cfb42e */
118
- --color-primary-700: 173 150 38; /* ⬅ #ad9626 */
119
- --color-primary-800: 138 120 31; /* ⬅ #8a781f */
120
- --color-primary-900: 113 98 25; /* ⬅ #716219 */
121
- }
122
-
123
- /* Headings */
124
- [data-theme='gold-nouveau'] h1,
125
- [data-theme='gold-nouveau'] h2,
126
- [data-theme='gold-nouveau'] h3,
127
- [data-theme='gold-nouveau'] h4,
128
- [data-theme='gold-nouveau'] h5,
129
- [data-theme='gold-nouveau'] h6 {
130
- font-weight: bold;
131
- }
132
-
133
- /* Applied to body with `<body data-theme="gold-nouveau">` */
134
- /* Created with: https://csshero.org/mesher/ */
135
- /* prettier-ignore */
136
- [data-theme='gold-nouveau'] {
137
- background-image:
138
- radial-gradient(at 0% 100%, rgba(var(--color-secondary-500) / 0.33) 0px, transparent 50%),
139
- radial-gradient(at 98% 100%, rgba(var(--color-error-500) / 0.33) 0px, transparent 50%);
140
- }
1
+ /* =~= Gold Nouveau - made by GitHub user @Sarenor for the Skeleton community theme contest. =~= */
2
+ /* https://github.com/skeletonlabs/skeleton/discussions/401 */
3
+
4
+ /* https://fonts.google.com/specimen/Quicksand?query=Quicksand */
5
+ @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
6
+
7
+ /* =~= Gold Nouveau =~= */
8
+ :root {
9
+ /* =~= Theme Properties =~= */
10
+ --theme-font-family-base: system-ui, sans-serif;
11
+ --theme-font-family-heading: 'Quicksand', sans-serif;
12
+ --theme-font-color-base: var(--color-surface-900);
13
+ --theme-font-color-dark: var(--color-surface-50);
14
+ --theme-rounded-base: 4px;
15
+ --theme-rounded-container: 4px;
16
+ --theme-border-base: 1px;
17
+ /* =~= Theme On-X Colors =~= */
18
+ --on-primary: 255 255 255;
19
+ --on-secondary: 255 255 255;
20
+ --on-tertiary: 255 255 255;
21
+ --on-success: 0 0 0;
22
+ --on-warning: 0 0 0;
23
+ --on-error: 255 255 255;
24
+ --on-surface: 255 255 255;
25
+ /* =~= Theme Colors =~= */
26
+ /* primary | #744aa1 */
27
+ --color-primary-50: 250 248 252; /* ⬅ #faf8fc */
28
+ --color-primary-100: 242 238 247; /* ⬅ #f2eef7 */
29
+ --color-primary-200: 229 220 239; /* ⬅ #e5dcef */
30
+ --color-primary-300: 209 192 226; /* ⬅ #d1c0e2 */
31
+ --color-primary-400: 162 129 197; /* ⬅ #a281c5 */
32
+ --color-primary-500: 116 74 161; /* ⬅ #744aa1 */
33
+ --color-primary-600: 83 53 115; /* ⬅ #533573 */
34
+ --color-primary-700: 60 39 84; /* ⬅ #3c2754 */
35
+ --color-primary-800: 35 22 49; /* ⬅ #231631 */
36
+ --color-primary-900: 18 11 24; /* ⬅ #120b18 */
37
+ /* secondary | #0672e5 */
38
+ --color-secondary-50: 218 234 251; /* ⬅ #daeafb */
39
+ --color-secondary-100: 205 227 250; /* ⬅ #cde3fa */
40
+ --color-secondary-200: 193 220 249; /* ⬅ #c1dcf9 */
41
+ --color-secondary-300: 155 199 245; /* ⬅ #9bc7f5 */
42
+ --color-secondary-400: 81 156 237; /* ⬅ #519ced */
43
+ --color-secondary-500: 6 114 229; /* ⬅ #0672e5 */
44
+ --color-secondary-600: 5 103 206; /* ⬅ #0567ce */
45
+ --color-secondary-700: 5 86 172; /* ⬅ #0556ac */
46
+ --color-secondary-800: 4 68 137; /* ⬅ #044489 */
47
+ --color-secondary-900: 3 56 112; /* ⬅ #033870 */
48
+ /* tertiary | #7f78dd */
49
+ --color-tertiary-50: 236 235 250; /* ⬅ #ecebfa */
50
+ --color-tertiary-100: 229 228 248; /* ⬅ #e5e4f8 */
51
+ --color-tertiary-200: 223 221 247; /* ⬅ #dfddf7 */
52
+ --color-tertiary-300: 204 201 241; /* ⬅ #ccc9f1 */
53
+ --color-tertiary-400: 165 161 231; /* ⬅ #a5a1e7 */
54
+ --color-tertiary-500: 127 120 221; /* ⬅ #7f78dd */
55
+ --color-tertiary-600: 114 108 199; /* ⬅ #726cc7 */
56
+ --color-tertiary-700: 95 90 166; /* ⬅ #5f5aa6 */
57
+ --color-tertiary-800: 76 72 133; /* ⬅ #4c4885 */
58
+ --color-tertiary-900: 62 59 108; /* ⬅ #3e3b6c */
59
+ /* success | #72c585 */
60
+ --color-success-50: 234 246 237; /* ⬅ #eaf6ed */
61
+ --color-success-100: 227 243 231; /* ⬅ #e3f3e7 */
62
+ --color-success-200: 220 241 225; /* ⬅ #dcf1e1 */
63
+ --color-success-300: 199 232 206; /* ⬅ #c7e8ce */
64
+ --color-success-400: 156 214 170; /* ⬅ #9cd6aa */
65
+ --color-success-500: 114 197 133; /* ⬅ #72c585 */
66
+ --color-success-600: 103 177 120; /* ⬅ #67b178 */
67
+ --color-success-700: 86 148 100; /* ⬅ #569464 */
68
+ --color-success-800: 68 118 80; /* ⬅ #447650 */
69
+ --color-success-900: 56 97 65; /* ⬅ #386141 */
70
+ /* warning | #e77f08 */
71
+ --color-warning-50: 251 236 218; /* ⬅ #fbecda */
72
+ --color-warning-100: 250 229 206; /* ⬅ #fae5ce */
73
+ --color-warning-200: 249 223 193; /* ⬅ #f9dfc1 */
74
+ --color-warning-300: 245 204 156; /* ⬅ #f5cc9c */
75
+ --color-warning-400: 238 165 82; /* ⬅ #eea552 */
76
+ --color-warning-500: 231 127 8; /* ⬅ #e77f08 */
77
+ --color-warning-600: 208 114 7; /* ⬅ #d07207 */
78
+ --color-warning-700: 173 95 6; /* ⬅ #ad5f06 */
79
+ --color-warning-800: 139 76 5; /* ⬅ #8b4c05 */
80
+ --color-warning-900: 113 62 4; /* ⬅ #713e04 */
81
+ /* error | #8f0f22 */
82
+ --color-error-50: 238 219 222; /* ⬅ #eedbde */
83
+ --color-error-100: 233 207 211; /* ⬅ #e9cfd3 */
84
+ --color-error-200: 227 195 200; /* ⬅ #e3c3c8 */
85
+ --color-error-300: 210 159 167; /* ⬅ #d29fa7 */
86
+ --color-error-400: 177 87 100; /* ⬅ #b15764 */
87
+ --color-error-500: 143 15 34; /* ⬅ #8f0f22 */
88
+ --color-error-600: 129 14 31; /* ⬅ #810e1f */
89
+ --color-error-700: 107 11 26; /* ⬅ #6b0b1a */
90
+ --color-error-800: 86 9 20; /* ⬅ #560914 */
91
+ --color-error-900: 70 7 17; /* ⬅ #460711 */
92
+ /* surface | #744aa1 */
93
+ --color-surface-50: 250 248 252; /* ⬅ #faf8fc */
94
+ --color-surface-100: 242 238 247; /* ⬅ #f2eef7 */
95
+ --color-surface-200: 229 220 239; /* ⬅ #e5dcef */
96
+ --color-surface-300: 209 192 226; /* ⬅ #d1c0e2 */
97
+ --color-surface-400: 162 129 197; /* ⬅ #a281c5 */
98
+ --color-surface-500: 116 74 161; /* ⬅ #744aa1 */
99
+ --color-surface-600: 83 53 115; /* ⬅ #533573 */
100
+ --color-surface-700: 60 39 84; /* ⬅ #3c2754 */
101
+ --color-surface-800: 35 22 49; /* ⬅ #231631 */
102
+ --color-surface-900: 18 11 24; /* ⬅ #120b18 */
103
+ }
104
+
105
+ /* =~= Gold Nouveau (dark mode overrides) =~= */
106
+ .dark [data-theme='gold-nouveau'] {
107
+ /* =~= Theme On-X Colors =~= */
108
+ --on-primary: 0 0 0;
109
+ /* =~= Theme Colors =~= */
110
+ /* primary | #e6c833 */
111
+ --color-primary-50: 251 247 224; /* ⬅ #fbf7e0 */
112
+ --color-primary-100: 250 244 214; /* ⬅ #faf4d6 */
113
+ --color-primary-200: 249 241 204; /* ⬅ #f9f1cc */
114
+ --color-primary-300: 245 233 173; /* ⬅ #f5e9ad */
115
+ --color-primary-400: 238 217 112; /* ⬅ #eed970 */
116
+ --color-primary-500: 230 200 51; /* ⬅ #e6c833 */
117
+ --color-primary-600: 207 180 46; /* ⬅ #cfb42e */
118
+ --color-primary-700: 173 150 38; /* ⬅ #ad9626 */
119
+ --color-primary-800: 138 120 31; /* ⬅ #8a781f */
120
+ --color-primary-900: 113 98 25; /* ⬅ #716219 */
121
+ }
122
+
123
+ /* Headings */
124
+ [data-theme='gold-nouveau'] h1,
125
+ [data-theme='gold-nouveau'] h2,
126
+ [data-theme='gold-nouveau'] h3,
127
+ [data-theme='gold-nouveau'] h4,
128
+ [data-theme='gold-nouveau'] h5,
129
+ [data-theme='gold-nouveau'] h6 {
130
+ font-weight: bold;
131
+ }
132
+
133
+ /* Applied to body with `<body data-theme="gold-nouveau">` */
134
+ /* Created with: https://csshero.org/mesher/ */
135
+ /* prettier-ignore */
136
+ [data-theme='gold-nouveau'] {
137
+ background-image:
138
+ radial-gradient(at 0% 100%, rgba(var(--color-secondary-500) / 0.33) 0px, transparent 50%),
139
+ radial-gradient(at 98% 100%, rgba(var(--color-error-500) / 0.33) 0px, transparent 50%);
140
+ }
@@ -1,112 +1,112 @@
1
- /* =~= Hamlindigo Theme - made by GitHub user @rcgy for the Skeleton community. Go watch Better Call Saul. =~= */
2
- /* https://github.com/skeletonlabs/skeleton/discussions/401 */
3
-
4
- @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800&display=swap');
5
-
6
- :root {
7
- /* =~= Hamlindigo Theme | Custom =~= */
8
- --theme-font-family-base: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
9
- 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
10
- 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
11
- --theme-font-family-heading: 'Playfair Display', serif;
12
- --theme-font-color-base: 0 0 0;
13
- --theme-font-color-dark: 255 255 255;
14
- --theme-rounded-base: 2px;
15
- --theme-rounded-container: 2px;
16
- --theme-border-base: 2px;
17
- /* =~= Theme On-X Colors =~= */
18
- --on-primary: 0 0 0;
19
- --on-secondary: 255 255 255;
20
- --on-tertiary: 255 255 255;
21
- --on-success: 255 255 255;
22
- --on-warning: 0 0 0;
23
- --on-error: 255 255 255;
24
- --on-surface: 255 255 255;
25
- /* =~= Theme Colors =~= */
26
- /* primary | #a8bef1 */
27
- --color-primary-50: 242 245 253; /* ⬅ #f2f5fd */
28
- --color-primary-100: 238 242 252; /* ⬅ #eef2fc */
29
- --color-primary-200: 233 239 252; /* ⬅ #e9effc */
30
- --color-primary-300: 220 229 249; /* ⬅ #dce5f9 */
31
- --color-primary-400: 194 210 245; /* ⬅ #c2d2f5 */
32
- --color-primary-500: 168 190 241; /* ⬅ #a8bef1 */
33
- --color-primary-600: 151 171 217; /* ⬅ #97abd9 */
34
- --color-primary-700: 126 143 181; /* ⬅ #7e8fb5 */
35
- --color-primary-800: 101 114 145; /* ⬅ #657291 */
36
- --color-primary-900: 82 93 118; /* ⬅ #525d76 */
37
- /* secondary | #a48e5b */
38
- --color-secondary-50: 241 238 230; /* ⬅ #f1eee6 */
39
- --color-secondary-100: 237 232 222; /* ⬅ #ede8de */
40
- --color-secondary-200: 232 227 214; /* ⬅ #e8e3d6 */
41
- --color-secondary-300: 219 210 189; /* ⬅ #dbd2bd */
42
- --color-secondary-400: 191 176 140; /* ⬅ #bfb08c */
43
- --color-secondary-500: 164 142 91; /* ⬅ #a48e5b */
44
- --color-secondary-600: 148 128 82; /* ⬅ #948052 */
45
- --color-secondary-700: 123 107 68; /* ⬅ #7b6b44 */
46
- --color-secondary-800: 98 85 55; /* ⬅ #625537 */
47
- --color-secondary-900: 80 70 45; /* ⬅ #50462d */
48
- /* tertiary | #6197a3 */
49
- --color-tertiary-50: 231 239 241; /* ⬅ #e7eff1 */
50
- --color-tertiary-100: 223 234 237; /* ⬅ #dfeaed */
51
- --color-tertiary-200: 216 229 232; /* ⬅ #d8e5e8 */
52
- --color-tertiary-300: 192 213 218; /* ⬅ #c0d5da */
53
- --color-tertiary-400: 144 182 191; /* ⬅ #90b6bf */
54
- --color-tertiary-500: 97 151 163; /* ⬅ #6197a3 */
55
- --color-tertiary-600: 87 136 147; /* ⬅ #578893 */
56
- --color-tertiary-700: 73 113 122; /* ⬅ #49717a */
57
- --color-tertiary-800: 58 91 98; /* ⬅ #3a5b62 */
58
- --color-tertiary-900: 48 74 80; /* ⬅ #304a50 */
59
- /* success | #47947d */
60
- --color-success-50: 227 239 236; /* ⬅ #e3efec */
61
- --color-success-100: 218 234 229; /* ⬅ #daeae5 */
62
- --color-success-200: 209 228 223; /* ⬅ #d1e4df */
63
- --color-success-300: 181 212 203; /* ⬅ #b5d4cb */
64
- --color-success-400: 126 180 164; /* ⬅ #7eb4a4 */
65
- --color-success-500: 71 148 125; /* ⬅ #47947d */
66
- --color-success-600: 64 133 113; /* ⬅ #408571 */
67
- --color-success-700: 53 111 94; /* ⬅ #356f5e */
68
- --color-success-800: 43 89 75; /* ⬅ #2b594b */
69
- --color-success-900: 35 73 61; /* ⬅ #23493d */
70
- /* warning | #daa93e */
71
- --color-warning-50: 249 242 226; /* ⬅ #f9f2e2 */
72
- --color-warning-100: 248 238 216; /* ⬅ #f8eed8 */
73
- --color-warning-200: 246 234 207; /* ⬅ #f6eacf */
74
- --color-warning-300: 240 221 178; /* ⬅ #f0ddb2 */
75
- --color-warning-400: 229 195 120; /* ⬅ #e5c378 */
76
- --color-warning-500: 218 169 62; /* ⬅ #daa93e */
77
- --color-warning-600: 196 152 56; /* ⬅ #c49838 */
78
- --color-warning-700: 164 127 47; /* ⬅ #a47f2f */
79
- --color-warning-800: 131 101 37; /* ⬅ #836525 */
80
- --color-warning-900: 107 83 30; /* ⬅ #6b531e */
81
- /* error | #a26175 */
82
- --color-error-50: 241 231 234; /* ⬅ #f1e7ea */
83
- --color-error-100: 236 223 227; /* ⬅ #ecdfe3 */
84
- --color-error-200: 232 216 221; /* ⬅ #e8d8dd */
85
- --color-error-300: 218 192 200; /* ⬅ #dac0c8 */
86
- --color-error-400: 190 144 158; /* ⬅ #be909e */
87
- --color-error-500: 162 97 117; /* ⬅ #a26175 */
88
- --color-error-600: 146 87 105; /* ⬅ #925769 */
89
- --color-error-700: 122 73 88; /* ⬅ #7a4958 */
90
- --color-error-800: 97 58 70; /* ⬅ #613a46 */
91
- --color-error-900: 79 48 57; /* ⬅ #4f3039 */
92
- /* surface | #6376a3 */
93
- --color-surface-50: 232 234 241; /* ⬅ #e8eaf1 */
94
- --color-surface-100: 224 228 237; /* ⬅ #e0e4ed */
95
- --color-surface-200: 216 221 232; /* ⬅ #d8dde8 */
96
- --color-surface-300: 193 200 218; /* ⬅ #c1c8da */
97
- --color-surface-400: 146 159 191; /* ⬅ #929fbf */
98
- --color-surface-500: 99 118 163; /* ⬅ #6376a3 */
99
- --color-surface-600: 89 106 147; /* ⬅ #596a93 */
100
- --color-surface-700: 74 89 122; /* ⬅ #4a597a */
101
- --color-surface-800: 59 71 98; /* ⬅ #3b4762 */
102
- --color-surface-900: 49 58 80; /* ⬅ #313a50 */
103
- }
104
-
105
- /* Applied to body with `<body data-theme="hamlindigo">` */
106
- /* Generated via: https://heropatterns.com/ */
107
- [data-theme='hamlindigo'] {
108
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cg fill='%23e0e4ed' fill-opacity='0.5'%3E%3Cpath fill-rule='evenodd' d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/g%3E%3C/svg%3E");
109
- }
110
- .dark [data-theme='hamlindigo'] {
111
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cg fill='%233b4762' fill-opacity='0.2'%3E%3Cpath fill-rule='evenodd' d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/g%3E%3C/svg%3E");
112
- }
1
+ /* =~= Hamlindigo Theme - made by GitHub user @rcgy for the Skeleton community. Go watch Better Call Saul. =~= */
2
+ /* https://github.com/skeletonlabs/skeleton/discussions/401 */
3
+
4
+ @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800&display=swap');
5
+
6
+ :root {
7
+ /* =~= Hamlindigo Theme | Custom =~= */
8
+ --theme-font-family-base: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
9
+ 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
10
+ 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
11
+ --theme-font-family-heading: 'Playfair Display', serif;
12
+ --theme-font-color-base: 0 0 0;
13
+ --theme-font-color-dark: 255 255 255;
14
+ --theme-rounded-base: 2px;
15
+ --theme-rounded-container: 2px;
16
+ --theme-border-base: 2px;
17
+ /* =~= Theme On-X Colors =~= */
18
+ --on-primary: 0 0 0;
19
+ --on-secondary: 255 255 255;
20
+ --on-tertiary: 255 255 255;
21
+ --on-success: 255 255 255;
22
+ --on-warning: 0 0 0;
23
+ --on-error: 255 255 255;
24
+ --on-surface: 255 255 255;
25
+ /* =~= Theme Colors =~= */
26
+ /* primary | #a8bef1 */
27
+ --color-primary-50: 242 245 253; /* ⬅ #f2f5fd */
28
+ --color-primary-100: 238 242 252; /* ⬅ #eef2fc */
29
+ --color-primary-200: 233 239 252; /* ⬅ #e9effc */
30
+ --color-primary-300: 220 229 249; /* ⬅ #dce5f9 */
31
+ --color-primary-400: 194 210 245; /* ⬅ #c2d2f5 */
32
+ --color-primary-500: 168 190 241; /* ⬅ #a8bef1 */
33
+ --color-primary-600: 151 171 217; /* ⬅ #97abd9 */
34
+ --color-primary-700: 126 143 181; /* ⬅ #7e8fb5 */
35
+ --color-primary-800: 101 114 145; /* ⬅ #657291 */
36
+ --color-primary-900: 82 93 118; /* ⬅ #525d76 */
37
+ /* secondary | #a48e5b */
38
+ --color-secondary-50: 241 238 230; /* ⬅ #f1eee6 */
39
+ --color-secondary-100: 237 232 222; /* ⬅ #ede8de */
40
+ --color-secondary-200: 232 227 214; /* ⬅ #e8e3d6 */
41
+ --color-secondary-300: 219 210 189; /* ⬅ #dbd2bd */
42
+ --color-secondary-400: 191 176 140; /* ⬅ #bfb08c */
43
+ --color-secondary-500: 164 142 91; /* ⬅ #a48e5b */
44
+ --color-secondary-600: 148 128 82; /* ⬅ #948052 */
45
+ --color-secondary-700: 123 107 68; /* ⬅ #7b6b44 */
46
+ --color-secondary-800: 98 85 55; /* ⬅ #625537 */
47
+ --color-secondary-900: 80 70 45; /* ⬅ #50462d */
48
+ /* tertiary | #6197a3 */
49
+ --color-tertiary-50: 231 239 241; /* ⬅ #e7eff1 */
50
+ --color-tertiary-100: 223 234 237; /* ⬅ #dfeaed */
51
+ --color-tertiary-200: 216 229 232; /* ⬅ #d8e5e8 */
52
+ --color-tertiary-300: 192 213 218; /* ⬅ #c0d5da */
53
+ --color-tertiary-400: 144 182 191; /* ⬅ #90b6bf */
54
+ --color-tertiary-500: 97 151 163; /* ⬅ #6197a3 */
55
+ --color-tertiary-600: 87 136 147; /* ⬅ #578893 */
56
+ --color-tertiary-700: 73 113 122; /* ⬅ #49717a */
57
+ --color-tertiary-800: 58 91 98; /* ⬅ #3a5b62 */
58
+ --color-tertiary-900: 48 74 80; /* ⬅ #304a50 */
59
+ /* success | #47947d */
60
+ --color-success-50: 227 239 236; /* ⬅ #e3efec */
61
+ --color-success-100: 218 234 229; /* ⬅ #daeae5 */
62
+ --color-success-200: 209 228 223; /* ⬅ #d1e4df */
63
+ --color-success-300: 181 212 203; /* ⬅ #b5d4cb */
64
+ --color-success-400: 126 180 164; /* ⬅ #7eb4a4 */
65
+ --color-success-500: 71 148 125; /* ⬅ #47947d */
66
+ --color-success-600: 64 133 113; /* ⬅ #408571 */
67
+ --color-success-700: 53 111 94; /* ⬅ #356f5e */
68
+ --color-success-800: 43 89 75; /* ⬅ #2b594b */
69
+ --color-success-900: 35 73 61; /* ⬅ #23493d */
70
+ /* warning | #daa93e */
71
+ --color-warning-50: 249 242 226; /* ⬅ #f9f2e2 */
72
+ --color-warning-100: 248 238 216; /* ⬅ #f8eed8 */
73
+ --color-warning-200: 246 234 207; /* ⬅ #f6eacf */
74
+ --color-warning-300: 240 221 178; /* ⬅ #f0ddb2 */
75
+ --color-warning-400: 229 195 120; /* ⬅ #e5c378 */
76
+ --color-warning-500: 218 169 62; /* ⬅ #daa93e */
77
+ --color-warning-600: 196 152 56; /* ⬅ #c49838 */
78
+ --color-warning-700: 164 127 47; /* ⬅ #a47f2f */
79
+ --color-warning-800: 131 101 37; /* ⬅ #836525 */
80
+ --color-warning-900: 107 83 30; /* ⬅ #6b531e */
81
+ /* error | #a26175 */
82
+ --color-error-50: 241 231 234; /* ⬅ #f1e7ea */
83
+ --color-error-100: 236 223 227; /* ⬅ #ecdfe3 */
84
+ --color-error-200: 232 216 221; /* ⬅ #e8d8dd */
85
+ --color-error-300: 218 192 200; /* ⬅ #dac0c8 */
86
+ --color-error-400: 190 144 158; /* ⬅ #be909e */
87
+ --color-error-500: 162 97 117; /* ⬅ #a26175 */
88
+ --color-error-600: 146 87 105; /* ⬅ #925769 */
89
+ --color-error-700: 122 73 88; /* ⬅ #7a4958 */
90
+ --color-error-800: 97 58 70; /* ⬅ #613a46 */
91
+ --color-error-900: 79 48 57; /* ⬅ #4f3039 */
92
+ /* surface | #6376a3 */
93
+ --color-surface-50: 232 234 241; /* ⬅ #e8eaf1 */
94
+ --color-surface-100: 224 228 237; /* ⬅ #e0e4ed */
95
+ --color-surface-200: 216 221 232; /* ⬅ #d8dde8 */
96
+ --color-surface-300: 193 200 218; /* ⬅ #c1c8da */
97
+ --color-surface-400: 146 159 191; /* ⬅ #929fbf */
98
+ --color-surface-500: 99 118 163; /* ⬅ #6376a3 */
99
+ --color-surface-600: 89 106 147; /* ⬅ #596a93 */
100
+ --color-surface-700: 74 89 122; /* ⬅ #4a597a */
101
+ --color-surface-800: 59 71 98; /* ⬅ #3b4762 */
102
+ --color-surface-900: 49 58 80; /* ⬅ #313a50 */
103
+ }
104
+
105
+ /* Applied to body with `<body data-theme="hamlindigo">` */
106
+ /* Generated via: https://heropatterns.com/ */
107
+ [data-theme='hamlindigo'] {
108
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cg fill='%23e0e4ed' fill-opacity='0.5'%3E%3Cpath fill-rule='evenodd' d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/g%3E%3C/svg%3E");
109
+ }
110
+ .dark [data-theme='hamlindigo'] {
111
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cg fill='%233b4762' fill-opacity='0.2'%3E%3Cpath fill-rule='evenodd' d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/g%3E%3C/svg%3E");
112
+ }