@bexis2/bexis2-core-ui 0.3.1 → 0.3.3

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 (90) hide show
  1. package/README.md +14 -1
  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 +165 -100
  7. package/dist/components/Table/TableFilter.svelte +1 -0
  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/NumberInput.svelte +15 -15
  14. package/dist/components/form/TextArea.svelte +14 -14
  15. package/dist/components/form/TextInput.svelte +15 -15
  16. package/dist/components/page/Alert.svelte +28 -28
  17. package/dist/components/page/BackToTop.svelte +30 -30
  18. package/dist/components/page/Docs.svelte +22 -22
  19. package/dist/components/page/ErrorMessage.svelte +8 -8
  20. package/dist/components/page/Footer.svelte +5 -5
  21. package/dist/components/page/Header.svelte +5 -5
  22. package/dist/components/page/HelpPopUp.svelte +30 -30
  23. package/dist/components/page/PageCaller.js +19 -19
  24. package/dist/components/page/Spinner.svelte +14 -14
  25. package/dist/components/page/menu/MenuDataCaller.js +10 -10
  26. package/dist/css/core.ui.postcss +17 -17
  27. package/dist/css/themes/theme-bexis2.css +96 -96
  28. package/dist/css/themes/theme-crimson.css +101 -101
  29. package/dist/css/themes/theme-gold-nouveau.css +140 -140
  30. package/dist/css/themes/theme-hamlindigo.css +112 -112
  31. package/dist/css/themes/theme-modern.css +127 -127
  32. package/dist/css/themes/theme-rocket.css +119 -119
  33. package/dist/css/themes/theme-sahara.css +128 -128
  34. package/dist/css/themes/theme-seafoam.css +122 -122
  35. package/dist/css/themes/theme-seasonal.css +115 -115
  36. package/dist/css/themes/theme-skeleton.css +118 -118
  37. package/dist/css/themes/theme-vintage.css +125 -125
  38. package/dist/models/Models.d.ts +2 -0
  39. package/dist/services/BaseCaller.js +16 -16
  40. package/dist/stores/pageStores.js +1 -1
  41. package/dist/themes/theme-bexis2.js +104 -91
  42. package/package.json +2 -2
  43. package/src/lib/TableView.svelte +1 -1
  44. package/src/lib/components/CodeEditor/CodeEditor.svelte +1 -1
  45. package/src/lib/components/ListView.svelte +11 -11
  46. package/src/lib/components/Table/Table.svelte +198 -125
  47. package/src/lib/components/Table/TableFilter.svelte +7 -3
  48. package/src/lib/components/Table/filter.ts +141 -141
  49. package/src/lib/components/file/FileIcon.svelte +45 -45
  50. package/src/lib/components/file/FileInfo.svelte +13 -13
  51. package/src/lib/components/form/Checkbox.svelte +24 -24
  52. package/src/lib/components/form/CheckboxKvPList.svelte +29 -29
  53. package/src/lib/components/form/CheckboxList.svelte +21 -21
  54. package/src/lib/components/form/DateInput.svelte +27 -27
  55. package/src/lib/components/form/DropdownKvP.svelte +54 -54
  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/Notification.svelte +42 -47
  67. package/src/lib/components/page/Page.svelte +0 -1
  68. package/src/lib/components/page/PageCaller.js +19 -19
  69. package/src/lib/components/page/Spinner.svelte +20 -20
  70. package/src/lib/components/page/menu/MenuDataCaller.js +10 -10
  71. package/src/lib/css/core.ui.postcss +17 -17
  72. package/src/lib/css/themes/theme-bexis2.css +96 -96
  73. package/src/lib/css/themes/theme-crimson.css +101 -101
  74. package/src/lib/css/themes/theme-gold-nouveau.css +140 -140
  75. package/src/lib/css/themes/theme-hamlindigo.css +112 -112
  76. package/src/lib/css/themes/theme-modern.css +127 -127
  77. package/src/lib/css/themes/theme-rocket.css +119 -119
  78. package/src/lib/css/themes/theme-sahara.css +128 -128
  79. package/src/lib/css/themes/theme-seafoam.css +122 -122
  80. package/src/lib/css/themes/theme-seasonal.css +115 -115
  81. package/src/lib/css/themes/theme-skeleton.css +118 -118
  82. package/src/lib/css/themes/theme-vintage.css +125 -125
  83. package/src/lib/index.ts +1 -1
  84. package/src/lib/models/Models.ts +6 -4
  85. package/src/lib/models/Page.ts +40 -40
  86. package/src/lib/services/Api.ts +55 -55
  87. package/src/lib/services/BaseCaller.js +16 -16
  88. package/src/lib/stores/apiStores.ts +34 -34
  89. package/src/lib/stores/pageStores.ts +3 -3
  90. package/src/lib/themes/theme-bexis2.ts +107 -96
@@ -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
+ }
@@ -1,127 +1,127 @@
1
- /* https://fonts.google.com/specimen/Quicksand?query=Quicksand */
2
- @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
3
-
4
- :root {
5
- /* =~= Theme Properties =~= */
6
- --theme-font-family-base: 'Quicksand', sans-serif;
7
- --theme-font-family-heading: 'Quicksand', sans-serif;
8
- --theme-font-color-base: var(--color-surface-900);
9
- --theme-font-color-dark: var(--color-tertiary-50);
10
- --theme-rounded-base: 9999px;
11
- --theme-rounded-container: 24px;
12
- --theme-border-base: 3px;
13
- /* =~= Theme On-X Colors =~= */
14
- --on-primary: 255 255 255;
15
- --on-secondary: 0 0 0;
16
- --on-tertiary: 0 0 0;
17
- --on-success: 0 0 0;
18
- --on-warning: 0 0 0;
19
- --on-error: 255 255 255;
20
- --on-surface: 255 255 255;
21
- /* =~= Theme Colors =~= */
22
- /* primary | #ec4899 */
23
- --color-primary-50: 252 228 240; /* ⬅ #fce4f0 */
24
- --color-primary-100: 251 218 235; /* ⬅ #fbdaeb */
25
- --color-primary-200: 250 209 230; /* ⬅ #fad1e6 */
26
- --color-primary-300: 247 182 214; /* ⬅ #f7b6d6 */
27
- --color-primary-400: 242 127 184; /* ⬅ #f27fb8 */
28
- --color-primary-500: 236 72 153; /* ⬅ #ec4899 */
29
- --color-primary-600: 212 65 138; /* ⬅ #d4418a */
30
- --color-primary-700: 177 54 115; /* ⬅ #b13673 */
31
- --color-primary-800: 142 43 92; /* ⬅ #8e2b5c */
32
- --color-primary-900: 116 35 75; /* ⬅ #74234b */
33
- /* secondary | #06b6d4 */
34
- --color-secondary-50: 218 244 249; /* ⬅ #daf4f9 */
35
- --color-secondary-100: 205 240 246; /* ⬅ #cdf0f6 */
36
- --color-secondary-200: 193 237 244; /* ⬅ #c1edf4 */
37
- --color-secondary-300: 155 226 238; /* ⬅ #9be2ee */
38
- --color-secondary-400: 81 204 225; /* ⬅ #51cce1 */
39
- --color-secondary-500: 6 182 212; /* ⬅ #06b6d4 */
40
- --color-secondary-600: 5 164 191; /* ⬅ #05a4bf */
41
- --color-secondary-700: 5 137 159; /* ⬅ #05899f */
42
- --color-secondary-800: 4 109 127; /* ⬅ #046d7f */
43
- --color-secondary-900: 3 89 104; /* ⬅ #035968 */
44
- /* tertiary | #14b8a6 */
45
- --color-tertiary-50: 220 244 242; /* ⬅ #dcf4f2 */
46
- --color-tertiary-100: 208 241 237; /* ⬅ #d0f1ed */
47
- --color-tertiary-200: 196 237 233; /* ⬅ #c4ede9 */
48
- --color-tertiary-300: 161 227 219; /* ⬅ #a1e3db */
49
- --color-tertiary-400: 91 205 193; /* ⬅ #5bcdc1 */
50
- --color-tertiary-500: 20 184 166; /* ⬅ #14b8a6 */
51
- --color-tertiary-600: 18 166 149; /* ⬅ #12a695 */
52
- --color-tertiary-700: 15 138 125; /* ⬅ #0f8a7d */
53
- --color-tertiary-800: 12 110 100; /* ⬅ #0c6e64 */
54
- --color-tertiary-900: 10 90 81; /* ⬅ #0a5a51 */
55
- /* success | #84cc16 */
56
- --color-success-50: 237 247 220; /* ⬅ #edf7dc */
57
- --color-success-100: 230 245 208; /* ⬅ #e6f5d0 */
58
- --color-success-200: 224 242 197; /* ⬅ #e0f2c5 */
59
- --color-success-300: 206 235 162; /* ⬅ #ceeba2 */
60
- --color-success-400: 169 219 92; /* ⬅ #a9db5c */
61
- --color-success-500: 132 204 22; /* ⬅ #84cc16 */
62
- --color-success-600: 119 184 20; /* ⬅ #77b814 */
63
- --color-success-700: 99 153 17; /* ⬅ #639911 */
64
- --color-success-800: 79 122 13; /* ⬅ #4f7a0d */
65
- --color-success-900: 65 100 11; /* ⬅ #41640b */
66
- /* warning | #eab308 */
67
- --color-warning-50: 252 244 218; /* ⬅ #fcf4da */
68
- --color-warning-100: 251 240 206; /* ⬅ #fbf0ce */
69
- --color-warning-200: 250 236 193; /* ⬅ #faecc1 */
70
- --color-warning-300: 247 225 156; /* ⬅ #f7e19c */
71
- --color-warning-400: 240 202 82; /* ⬅ #f0ca52 */
72
- --color-warning-500: 234 179 8; /* ⬅ #eab308 */
73
- --color-warning-600: 211 161 7; /* ⬅ #d3a107 */
74
- --color-warning-700: 176 134 6; /* ⬅ #b08606 */
75
- --color-warning-800: 140 107 5; /* ⬅ #8c6b05 */
76
- --color-warning-900: 115 88 4; /* ⬅ #735804 */
77
- /* error | #ef4444 */
78
- --color-error-50: 253 227 227; /* ⬅ #fde3e3 */
79
- --color-error-100: 252 218 218; /* ⬅ #fcdada */
80
- --color-error-200: 251 208 208; /* ⬅ #fbd0d0 */
81
- --color-error-300: 249 180 180; /* ⬅ #f9b4b4 */
82
- --color-error-400: 244 124 124; /* ⬅ #f47c7c */
83
- --color-error-500: 239 68 68; /* ⬅ #ef4444 */
84
- --color-error-600: 215 61 61; /* ⬅ #d73d3d */
85
- --color-error-700: 179 51 51; /* ⬅ #b33333 */
86
- --color-error-800: 143 41 41; /* ⬅ #8f2929 */
87
- --color-error-900: 117 33 33; /* ⬅ #752121 */
88
- /* surface | #6366f1 */
89
- --color-surface-50: 232 232 253; /* ⬅ #e8e8fd */
90
- --color-surface-100: 224 224 252; /* ⬅ #e0e0fc */
91
- --color-surface-200: 216 217 252; /* ⬅ #d8d9fc */
92
- --color-surface-300: 193 194 249; /* ⬅ #c1c2f9 */
93
- --color-surface-400: 146 148 245; /* ⬅ #9294f5 */
94
- --color-surface-500: 99 102 241; /* ⬅ #6366f1 */
95
- --color-surface-600: 89 92 217; /* ⬅ #595cd9 */
96
- --color-surface-700: 74 77 181; /* ⬅ #4a4db5 */
97
- --color-surface-800: 59 61 145; /* ⬅ #3b3d91 */
98
- --color-surface-900: 49 50 118; /* ⬅ #313276 */
99
- }
100
-
101
- [data-theme='modern'] h1,
102
- [data-theme='modern'] h2,
103
- [data-theme='modern'] h3,
104
- [data-theme='modern'] h4,
105
- [data-theme='modern'] h5,
106
- [data-theme='modern'] h6,
107
- [data-theme='modern'] a,
108
- [data-theme='modern'] button {
109
- font-weight: bold;
110
- }
111
-
112
- /* Applied to body with `<body data-theme="modern">` */
113
- /* Created with: https://csshero.org/mesher/ */
114
- [data-theme='modern'] {
115
- /* prettier-ignore */
116
- background-image:
117
- radial-gradient(at 76% 0%, hsla(189,100%,56%,0.36) 0px, transparent 50%),
118
- radial-gradient(at 1% 0%, hsla(340,100%,76%,0.26) 0px, transparent 50%),
119
- radial-gradient(at 20% 100%, hsla(241,100%,70%,0.47) 0px, transparent 50%);
120
- }
121
- .dark [data-theme='modern'] {
122
- /* prettier-ignore */
123
- background-image:
124
- radial-gradient(at 76% 0%, hsla(189,100%,56%,0.20) 0px, transparent 50%),
125
- radial-gradient(at 1% 0%, hsla(340,100%,76%,0.15) 0px, transparent 50%),
126
- radial-gradient(at 20% 100%, hsla(241,100%,70%,0.30) 0px, transparent 50%);
127
- }
1
+ /* https://fonts.google.com/specimen/Quicksand?query=Quicksand */
2
+ @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
3
+
4
+ :root {
5
+ /* =~= Theme Properties =~= */
6
+ --theme-font-family-base: 'Quicksand', sans-serif;
7
+ --theme-font-family-heading: 'Quicksand', sans-serif;
8
+ --theme-font-color-base: var(--color-surface-900);
9
+ --theme-font-color-dark: var(--color-tertiary-50);
10
+ --theme-rounded-base: 9999px;
11
+ --theme-rounded-container: 24px;
12
+ --theme-border-base: 3px;
13
+ /* =~= Theme On-X Colors =~= */
14
+ --on-primary: 255 255 255;
15
+ --on-secondary: 0 0 0;
16
+ --on-tertiary: 0 0 0;
17
+ --on-success: 0 0 0;
18
+ --on-warning: 0 0 0;
19
+ --on-error: 255 255 255;
20
+ --on-surface: 255 255 255;
21
+ /* =~= Theme Colors =~= */
22
+ /* primary | #ec4899 */
23
+ --color-primary-50: 252 228 240; /* ⬅ #fce4f0 */
24
+ --color-primary-100: 251 218 235; /* ⬅ #fbdaeb */
25
+ --color-primary-200: 250 209 230; /* ⬅ #fad1e6 */
26
+ --color-primary-300: 247 182 214; /* ⬅ #f7b6d6 */
27
+ --color-primary-400: 242 127 184; /* ⬅ #f27fb8 */
28
+ --color-primary-500: 236 72 153; /* ⬅ #ec4899 */
29
+ --color-primary-600: 212 65 138; /* ⬅ #d4418a */
30
+ --color-primary-700: 177 54 115; /* ⬅ #b13673 */
31
+ --color-primary-800: 142 43 92; /* ⬅ #8e2b5c */
32
+ --color-primary-900: 116 35 75; /* ⬅ #74234b */
33
+ /* secondary | #06b6d4 */
34
+ --color-secondary-50: 218 244 249; /* ⬅ #daf4f9 */
35
+ --color-secondary-100: 205 240 246; /* ⬅ #cdf0f6 */
36
+ --color-secondary-200: 193 237 244; /* ⬅ #c1edf4 */
37
+ --color-secondary-300: 155 226 238; /* ⬅ #9be2ee */
38
+ --color-secondary-400: 81 204 225; /* ⬅ #51cce1 */
39
+ --color-secondary-500: 6 182 212; /* ⬅ #06b6d4 */
40
+ --color-secondary-600: 5 164 191; /* ⬅ #05a4bf */
41
+ --color-secondary-700: 5 137 159; /* ⬅ #05899f */
42
+ --color-secondary-800: 4 109 127; /* ⬅ #046d7f */
43
+ --color-secondary-900: 3 89 104; /* ⬅ #035968 */
44
+ /* tertiary | #14b8a6 */
45
+ --color-tertiary-50: 220 244 242; /* ⬅ #dcf4f2 */
46
+ --color-tertiary-100: 208 241 237; /* ⬅ #d0f1ed */
47
+ --color-tertiary-200: 196 237 233; /* ⬅ #c4ede9 */
48
+ --color-tertiary-300: 161 227 219; /* ⬅ #a1e3db */
49
+ --color-tertiary-400: 91 205 193; /* ⬅ #5bcdc1 */
50
+ --color-tertiary-500: 20 184 166; /* ⬅ #14b8a6 */
51
+ --color-tertiary-600: 18 166 149; /* ⬅ #12a695 */
52
+ --color-tertiary-700: 15 138 125; /* ⬅ #0f8a7d */
53
+ --color-tertiary-800: 12 110 100; /* ⬅ #0c6e64 */
54
+ --color-tertiary-900: 10 90 81; /* ⬅ #0a5a51 */
55
+ /* success | #84cc16 */
56
+ --color-success-50: 237 247 220; /* ⬅ #edf7dc */
57
+ --color-success-100: 230 245 208; /* ⬅ #e6f5d0 */
58
+ --color-success-200: 224 242 197; /* ⬅ #e0f2c5 */
59
+ --color-success-300: 206 235 162; /* ⬅ #ceeba2 */
60
+ --color-success-400: 169 219 92; /* ⬅ #a9db5c */
61
+ --color-success-500: 132 204 22; /* ⬅ #84cc16 */
62
+ --color-success-600: 119 184 20; /* ⬅ #77b814 */
63
+ --color-success-700: 99 153 17; /* ⬅ #639911 */
64
+ --color-success-800: 79 122 13; /* ⬅ #4f7a0d */
65
+ --color-success-900: 65 100 11; /* ⬅ #41640b */
66
+ /* warning | #eab308 */
67
+ --color-warning-50: 252 244 218; /* ⬅ #fcf4da */
68
+ --color-warning-100: 251 240 206; /* ⬅ #fbf0ce */
69
+ --color-warning-200: 250 236 193; /* ⬅ #faecc1 */
70
+ --color-warning-300: 247 225 156; /* ⬅ #f7e19c */
71
+ --color-warning-400: 240 202 82; /* ⬅ #f0ca52 */
72
+ --color-warning-500: 234 179 8; /* ⬅ #eab308 */
73
+ --color-warning-600: 211 161 7; /* ⬅ #d3a107 */
74
+ --color-warning-700: 176 134 6; /* ⬅ #b08606 */
75
+ --color-warning-800: 140 107 5; /* ⬅ #8c6b05 */
76
+ --color-warning-900: 115 88 4; /* ⬅ #735804 */
77
+ /* error | #ef4444 */
78
+ --color-error-50: 253 227 227; /* ⬅ #fde3e3 */
79
+ --color-error-100: 252 218 218; /* ⬅ #fcdada */
80
+ --color-error-200: 251 208 208; /* ⬅ #fbd0d0 */
81
+ --color-error-300: 249 180 180; /* ⬅ #f9b4b4 */
82
+ --color-error-400: 244 124 124; /* ⬅ #f47c7c */
83
+ --color-error-500: 239 68 68; /* ⬅ #ef4444 */
84
+ --color-error-600: 215 61 61; /* ⬅ #d73d3d */
85
+ --color-error-700: 179 51 51; /* ⬅ #b33333 */
86
+ --color-error-800: 143 41 41; /* ⬅ #8f2929 */
87
+ --color-error-900: 117 33 33; /* ⬅ #752121 */
88
+ /* surface | #6366f1 */
89
+ --color-surface-50: 232 232 253; /* ⬅ #e8e8fd */
90
+ --color-surface-100: 224 224 252; /* ⬅ #e0e0fc */
91
+ --color-surface-200: 216 217 252; /* ⬅ #d8d9fc */
92
+ --color-surface-300: 193 194 249; /* ⬅ #c1c2f9 */
93
+ --color-surface-400: 146 148 245; /* ⬅ #9294f5 */
94
+ --color-surface-500: 99 102 241; /* ⬅ #6366f1 */
95
+ --color-surface-600: 89 92 217; /* ⬅ #595cd9 */
96
+ --color-surface-700: 74 77 181; /* ⬅ #4a4db5 */
97
+ --color-surface-800: 59 61 145; /* ⬅ #3b3d91 */
98
+ --color-surface-900: 49 50 118; /* ⬅ #313276 */
99
+ }
100
+
101
+ [data-theme='modern'] h1,
102
+ [data-theme='modern'] h2,
103
+ [data-theme='modern'] h3,
104
+ [data-theme='modern'] h4,
105
+ [data-theme='modern'] h5,
106
+ [data-theme='modern'] h6,
107
+ [data-theme='modern'] a,
108
+ [data-theme='modern'] button {
109
+ font-weight: bold;
110
+ }
111
+
112
+ /* Applied to body with `<body data-theme="modern">` */
113
+ /* Created with: https://csshero.org/mesher/ */
114
+ [data-theme='modern'] {
115
+ /* prettier-ignore */
116
+ background-image:
117
+ radial-gradient(at 76% 0%, hsla(189,100%,56%,0.36) 0px, transparent 50%),
118
+ radial-gradient(at 1% 0%, hsla(340,100%,76%,0.26) 0px, transparent 50%),
119
+ radial-gradient(at 20% 100%, hsla(241,100%,70%,0.47) 0px, transparent 50%);
120
+ }
121
+ .dark [data-theme='modern'] {
122
+ /* prettier-ignore */
123
+ background-image:
124
+ radial-gradient(at 76% 0%, hsla(189,100%,56%,0.20) 0px, transparent 50%),
125
+ radial-gradient(at 1% 0%, hsla(340,100%,76%,0.15) 0px, transparent 50%),
126
+ radial-gradient(at 20% 100%, hsla(241,100%,70%,0.30) 0px, transparent 50%);
127
+ }