@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.
- package/README.md +5 -0
- package/dist/TableView.svelte +1 -1
- package/dist/components/File/FileIcon.svelte +45 -45
- package/dist/components/File/FileInfo.svelte +13 -13
- package/dist/components/ListView.svelte +5 -5
- package/dist/components/Table/Table.svelte +87 -25
- package/dist/components/Table/TableFilter.svelte +1 -1
- package/dist/components/form/Checkbox.svelte +13 -13
- package/dist/components/form/CheckboxKvPList.svelte +16 -16
- package/dist/components/form/CheckboxList.svelte +10 -10
- package/dist/components/form/DateInput.svelte +14 -14
- package/dist/components/form/DropdownKvP.svelte +54 -54
- package/dist/components/form/MultiSelect.svelte +181 -181
- package/dist/components/form/NumberInput.svelte +15 -15
- package/dist/components/form/TextArea.svelte +14 -14
- package/dist/components/form/TextInput.svelte +15 -15
- package/dist/components/page/Alert.svelte +28 -28
- package/dist/components/page/BackToTop.svelte +30 -30
- package/dist/components/page/Docs.svelte +22 -22
- package/dist/components/page/ErrorMessage.svelte +8 -8
- package/dist/components/page/Footer.svelte +5 -5
- package/dist/components/page/Header.svelte +5 -5
- package/dist/components/page/HelpPopUp.svelte +30 -30
- package/dist/components/page/PageCaller.js +19 -19
- package/dist/components/page/Spinner.svelte +14 -14
- package/dist/components/page/breadcrumb/Breadcrumb.svelte +19 -19
- package/dist/components/page/menu/MenuDataCaller.js +10 -10
- package/dist/css/core.ui.postcss +17 -17
- package/dist/css/themes/theme-bexis2.css +96 -96
- package/dist/css/themes/theme-crimson.css +101 -101
- package/dist/css/themes/theme-gold-nouveau.css +140 -140
- package/dist/css/themes/theme-hamlindigo.css +112 -112
- package/dist/css/themes/theme-modern.css +127 -127
- package/dist/css/themes/theme-rocket.css +119 -119
- package/dist/css/themes/theme-sahara.css +128 -128
- package/dist/css/themes/theme-seafoam.css +122 -122
- package/dist/css/themes/theme-seasonal.css +115 -115
- package/dist/css/themes/theme-skeleton.css +118 -118
- package/dist/css/themes/theme-vintage.css +125 -125
- package/dist/models/Models.d.ts +3 -0
- package/dist/services/BaseCaller.js +16 -16
- package/package.json +1 -1
- package/src/lib/TableView.svelte +1 -1
- package/src/lib/components/ListView.svelte +11 -11
- package/src/lib/components/Table/Table.svelte +107 -26
- package/src/lib/components/Table/TableFilter.svelte +2 -1
- package/src/lib/components/Table/filter.ts +141 -141
- package/src/lib/components/{File → file}/FileIcon.svelte +45 -45
- package/src/lib/components/{File → file}/FileInfo.svelte +13 -13
- package/src/lib/components/form/Checkbox.svelte +24 -24
- package/src/lib/components/form/CheckboxKvPList.svelte +29 -29
- package/src/lib/components/form/CheckboxList.svelte +21 -21
- package/src/lib/components/form/DateInput.svelte +27 -27
- package/src/lib/components/form/DropdownKvP.svelte +54 -54
- package/src/lib/components/form/MultiSelect.svelte +181 -181
- package/src/lib/components/form/NumberInput.svelte +30 -30
- package/src/lib/components/form/TextArea.svelte +28 -28
- package/src/lib/components/form/TextInput.svelte +28 -28
- package/src/lib/components/page/Alert.svelte +41 -41
- package/src/lib/components/page/BackToTop.svelte +30 -30
- package/src/lib/components/page/Docs.svelte +46 -46
- package/src/lib/components/page/ErrorMessage.svelte +10 -10
- package/src/lib/components/page/Footer.svelte +18 -18
- package/src/lib/components/page/Header.svelte +18 -18
- package/src/lib/components/page/HelpPopUp.svelte +72 -72
- package/src/lib/components/page/PageCaller.js +19 -19
- package/src/lib/components/page/Spinner.svelte +20 -20
- package/src/lib/components/page/breadcrumb/Breadcrumb.svelte +39 -39
- package/src/lib/components/page/menu/MenuDataCaller.js +10 -10
- package/src/lib/css/core.ui.postcss +17 -17
- package/src/lib/css/themes/theme-bexis2.css +96 -96
- package/src/lib/css/themes/theme-crimson.css +101 -101
- package/src/lib/css/themes/theme-gold-nouveau.css +140 -140
- package/src/lib/css/themes/theme-hamlindigo.css +112 -112
- package/src/lib/css/themes/theme-modern.css +127 -127
- package/src/lib/css/themes/theme-rocket.css +119 -119
- package/src/lib/css/themes/theme-sahara.css +128 -128
- package/src/lib/css/themes/theme-seafoam.css +122 -122
- package/src/lib/css/themes/theme-seasonal.css +115 -115
- package/src/lib/css/themes/theme-skeleton.css +118 -118
- package/src/lib/css/themes/theme-vintage.css +125 -125
- package/src/lib/models/Models.ts +10 -7
- package/src/lib/models/Page.ts +40 -40
- package/src/lib/services/Api.ts +55 -55
- package/src/lib/services/BaseCaller.js +16 -16
- package/src/lib/stores/apiStores.ts +31 -31
- /package/src/lib/components/{File → file}/FileUploader.svelte +0 -0
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
/*place global styles here */
|
|
2
|
-
html,
|
|
3
|
-
body {
|
|
4
|
-
@apply h-full;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
h1 {
|
|
8
|
-
@apply text-primary-500;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
:root {
|
|
12
|
-
--background: rgb(var(--color-surface-200));
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
[type='text']:focus {
|
|
16
|
-
--tw-ring-color: #00000;
|
|
17
|
-
}
|
|
1
|
+
/*place global styles here */
|
|
2
|
+
html,
|
|
3
|
+
body {
|
|
4
|
+
@apply h-full;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
h1 {
|
|
8
|
+
@apply text-primary-500;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
:root {
|
|
12
|
+
--background: rgb(var(--color-surface-200));
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
[type='text']:focus {
|
|
16
|
+
--tw-ring-color: #00000;
|
|
17
|
+
}
|
|
@@ -1,96 +1,96 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
/* =~= Theme Properties =~= */
|
|
3
|
-
--theme-font-family-base: system-ui;
|
|
4
|
-
--theme-font-family-heading: system-ui;
|
|
5
|
-
--theme-font-color-base: var(--color-surface-900);
|
|
6
|
-
--theme-font-color-dark: 255 255 255;
|
|
7
|
-
--theme-rounded-base: 4px;
|
|
8
|
-
--theme-rounded-container: 4px;
|
|
9
|
-
--theme-border-base: 1px;
|
|
10
|
-
/* =~= Theme On-X Colors =~= */
|
|
11
|
-
--on-primary: 255 255 255;
|
|
12
|
-
--on-secondary: 255 255 255;
|
|
13
|
-
--on-tertiary: 0 0 0;
|
|
14
|
-
--on-success: 255 255 255;
|
|
15
|
-
--on-warning: 255 255 255;
|
|
16
|
-
--on-error: 255 255 255;
|
|
17
|
-
--on-surface: 0 0 0;
|
|
18
|
-
/* =~= Theme Colors =~= */
|
|
19
|
-
/* primary | #45b2a1 */
|
|
20
|
-
--color-primary-50: 227 243 241; /* ⬅ #e3f3f1 */
|
|
21
|
-
--color-primary-100: 218 240 236; /* ⬅ #daf0ec */
|
|
22
|
-
--color-primary-200: 209 236 232; /* ⬅ #d1ece8 */
|
|
23
|
-
--color-primary-300: 181 224 217; /* ⬅ #b5e0d9 */
|
|
24
|
-
--color-primary-400: 125 201 189; /* ⬅ #7dc9bd */
|
|
25
|
-
--color-primary-500: 69 178 161; /* ⬅ #45b2a1 */
|
|
26
|
-
--color-primary-600: 62 160 145; /* ⬅ #3ea091 */
|
|
27
|
-
--color-primary-700: 52 134 121; /* ⬅ #348679 */
|
|
28
|
-
--color-primary-800: 41 107 97; /* ⬅ #296b61 */
|
|
29
|
-
--color-primary-900: 34 87 79; /* ⬅ #22574f */
|
|
30
|
-
/* secondary | #ff9700 */
|
|
31
|
-
--color-secondary-50: 255 239 217; /* ⬅ #ffefd9 */
|
|
32
|
-
--color-secondary-100: 255 234 204; /* ⬅ #ffeacc */
|
|
33
|
-
--color-secondary-200: 255 229 191; /* ⬅ #ffe5bf */
|
|
34
|
-
--color-secondary-300: 255 213 153; /* ⬅ #ffd599 */
|
|
35
|
-
--color-secondary-400: 255 182 77; /* ⬅ #ffb64d */
|
|
36
|
-
--color-secondary-500: 255 151 0; /* ⬅ #ff9700 */
|
|
37
|
-
--color-secondary-600: 230 136 0; /* ⬅ #e68800 */
|
|
38
|
-
--color-secondary-700: 191 113 0; /* ⬅ #bf7100 */
|
|
39
|
-
--color-secondary-800: 153 91 0; /* ⬅ #995b00 */
|
|
40
|
-
--color-secondary-900: 125 74 0; /* ⬅ #7d4a00 */
|
|
41
|
-
/* tertiary | #bee1da */
|
|
42
|
-
--color-tertiary-50: 245 251 249; /* ⬅ #f5fbf9 */
|
|
43
|
-
--color-tertiary-100: 242 249 248; /* ⬅ #f2f9f8 */
|
|
44
|
-
--color-tertiary-200: 239 248 246; /* ⬅ #eff8f6 */
|
|
45
|
-
--color-tertiary-300: 229 243 240; /* ⬅ #e5f3f0 */
|
|
46
|
-
--color-tertiary-400: 210 234 229; /* ⬅ #d2eae5 */
|
|
47
|
-
--color-tertiary-500: 190 225 218; /* ⬅ #bee1da */
|
|
48
|
-
--color-tertiary-600: 171 203 196; /* ⬅ #abcbc4 */
|
|
49
|
-
--color-tertiary-700: 143 169 164; /* ⬅ #8fa9a4 */
|
|
50
|
-
--color-tertiary-800: 114 135 131; /* ⬅ #728783 */
|
|
51
|
-
--color-tertiary-900: 93 110 107; /* ⬅ #5d6e6b */
|
|
52
|
-
/* success | #4BB543 */
|
|
53
|
-
--color-success-50: 228 244 227; /* ⬅ #e4f4e3 */
|
|
54
|
-
--color-success-100: 219 240 217; /* ⬅ #dbf0d9 */
|
|
55
|
-
--color-success-200: 210 237 208; /* ⬅ #d2edd0 */
|
|
56
|
-
--color-success-300: 183 225 180; /* ⬅ #b7e1b4 */
|
|
57
|
-
--color-success-400: 129 203 123; /* ⬅ #81cb7b */
|
|
58
|
-
--color-success-500: 75 181 67; /* ⬅ #4BB543 */
|
|
59
|
-
--color-success-600: 68 163 60; /* ⬅ #44a33c */
|
|
60
|
-
--color-success-700: 56 136 50; /* ⬅ #388832 */
|
|
61
|
-
--color-success-800: 45 109 40; /* ⬅ #2d6d28 */
|
|
62
|
-
--color-success-900: 37 89 33; /* ⬅ #255921 */
|
|
63
|
-
/* warning | #EAB308 */
|
|
64
|
-
--color-warning-50: 252 244 218; /* ⬅ #fcf4da */
|
|
65
|
-
--color-warning-100: 251 240 206; /* ⬅ #fbf0ce */
|
|
66
|
-
--color-warning-200: 250 236 193; /* ⬅ #faecc1 */
|
|
67
|
-
--color-warning-300: 247 225 156; /* ⬅ #f7e19c */
|
|
68
|
-
--color-warning-400: 240 202 82; /* ⬅ #f0ca52 */
|
|
69
|
-
--color-warning-500: 234 179 8; /* ⬅ #EAB308 */
|
|
70
|
-
--color-warning-600: 211 161 7; /* ⬅ #d3a107 */
|
|
71
|
-
--color-warning-700: 176 134 6; /* ⬅ #b08606 */
|
|
72
|
-
--color-warning-800: 140 107 5; /* ⬅ #8c6b05 */
|
|
73
|
-
--color-warning-900: 115 88 4; /* ⬅ #735804 */
|
|
74
|
-
/* error | #FF0000 */
|
|
75
|
-
--color-error-50: 255 217 217; /* ⬅ #ffd9d9 */
|
|
76
|
-
--color-error-100: 255 204 204; /* ⬅ #ffcccc */
|
|
77
|
-
--color-error-200: 255 191 191; /* ⬅ #ffbfbf */
|
|
78
|
-
--color-error-300: 255 153 153; /* ⬅ #ff9999 */
|
|
79
|
-
--color-error-400: 255 77 77; /* ⬅ #ff4d4d */
|
|
80
|
-
--color-error-500: 255 0 0; /* ⬅ #FF0000 */
|
|
81
|
-
--color-error-600: 230 0 0; /* ⬅ #e60000 */
|
|
82
|
-
--color-error-700: 191 0 0; /* ⬅ #bf0000 */
|
|
83
|
-
--color-error-800: 153 0 0; /* ⬅ #990000 */
|
|
84
|
-
--color-error-900: 125 0 0; /* ⬅ #7d0000 */
|
|
85
|
-
/* surface | #c7c7c7 */
|
|
86
|
-
--color-surface-50: 247 247 247; /* ⬅ #f7f7f7 */
|
|
87
|
-
--color-surface-100: 244 244 244; /* ⬅ #f4f4f4 */
|
|
88
|
-
--color-surface-200: 241 241 241; /* ⬅ #f1f1f1 */
|
|
89
|
-
--color-surface-300: 233 233 233; /* ⬅ #e9e9e9 */
|
|
90
|
-
--color-surface-400: 216 216 216; /* ⬅ #d8d8d8 */
|
|
91
|
-
--color-surface-500: 199 199 199; /* ⬅ #c7c7c7 */
|
|
92
|
-
--color-surface-600: 179 179 179; /* ⬅ #b3b3b3 */
|
|
93
|
-
--color-surface-700: 149 149 149; /* ⬅ #959595 */
|
|
94
|
-
--color-surface-800: 119 119 119; /* ⬅ #777777 */
|
|
95
|
-
--color-surface-900: 98 98 98; /* ⬅ #626262 */
|
|
96
|
-
}
|
|
1
|
+
:root {
|
|
2
|
+
/* =~= Theme Properties =~= */
|
|
3
|
+
--theme-font-family-base: system-ui;
|
|
4
|
+
--theme-font-family-heading: system-ui;
|
|
5
|
+
--theme-font-color-base: var(--color-surface-900);
|
|
6
|
+
--theme-font-color-dark: 255 255 255;
|
|
7
|
+
--theme-rounded-base: 4px;
|
|
8
|
+
--theme-rounded-container: 4px;
|
|
9
|
+
--theme-border-base: 1px;
|
|
10
|
+
/* =~= Theme On-X Colors =~= */
|
|
11
|
+
--on-primary: 255 255 255;
|
|
12
|
+
--on-secondary: 255 255 255;
|
|
13
|
+
--on-tertiary: 0 0 0;
|
|
14
|
+
--on-success: 255 255 255;
|
|
15
|
+
--on-warning: 255 255 255;
|
|
16
|
+
--on-error: 255 255 255;
|
|
17
|
+
--on-surface: 0 0 0;
|
|
18
|
+
/* =~= Theme Colors =~= */
|
|
19
|
+
/* primary | #45b2a1 */
|
|
20
|
+
--color-primary-50: 227 243 241; /* ⬅ #e3f3f1 */
|
|
21
|
+
--color-primary-100: 218 240 236; /* ⬅ #daf0ec */
|
|
22
|
+
--color-primary-200: 209 236 232; /* ⬅ #d1ece8 */
|
|
23
|
+
--color-primary-300: 181 224 217; /* ⬅ #b5e0d9 */
|
|
24
|
+
--color-primary-400: 125 201 189; /* ⬅ #7dc9bd */
|
|
25
|
+
--color-primary-500: 69 178 161; /* ⬅ #45b2a1 */
|
|
26
|
+
--color-primary-600: 62 160 145; /* ⬅ #3ea091 */
|
|
27
|
+
--color-primary-700: 52 134 121; /* ⬅ #348679 */
|
|
28
|
+
--color-primary-800: 41 107 97; /* ⬅ #296b61 */
|
|
29
|
+
--color-primary-900: 34 87 79; /* ⬅ #22574f */
|
|
30
|
+
/* secondary | #ff9700 */
|
|
31
|
+
--color-secondary-50: 255 239 217; /* ⬅ #ffefd9 */
|
|
32
|
+
--color-secondary-100: 255 234 204; /* ⬅ #ffeacc */
|
|
33
|
+
--color-secondary-200: 255 229 191; /* ⬅ #ffe5bf */
|
|
34
|
+
--color-secondary-300: 255 213 153; /* ⬅ #ffd599 */
|
|
35
|
+
--color-secondary-400: 255 182 77; /* ⬅ #ffb64d */
|
|
36
|
+
--color-secondary-500: 255 151 0; /* ⬅ #ff9700 */
|
|
37
|
+
--color-secondary-600: 230 136 0; /* ⬅ #e68800 */
|
|
38
|
+
--color-secondary-700: 191 113 0; /* ⬅ #bf7100 */
|
|
39
|
+
--color-secondary-800: 153 91 0; /* ⬅ #995b00 */
|
|
40
|
+
--color-secondary-900: 125 74 0; /* ⬅ #7d4a00 */
|
|
41
|
+
/* tertiary | #bee1da */
|
|
42
|
+
--color-tertiary-50: 245 251 249; /* ⬅ #f5fbf9 */
|
|
43
|
+
--color-tertiary-100: 242 249 248; /* ⬅ #f2f9f8 */
|
|
44
|
+
--color-tertiary-200: 239 248 246; /* ⬅ #eff8f6 */
|
|
45
|
+
--color-tertiary-300: 229 243 240; /* ⬅ #e5f3f0 */
|
|
46
|
+
--color-tertiary-400: 210 234 229; /* ⬅ #d2eae5 */
|
|
47
|
+
--color-tertiary-500: 190 225 218; /* ⬅ #bee1da */
|
|
48
|
+
--color-tertiary-600: 171 203 196; /* ⬅ #abcbc4 */
|
|
49
|
+
--color-tertiary-700: 143 169 164; /* ⬅ #8fa9a4 */
|
|
50
|
+
--color-tertiary-800: 114 135 131; /* ⬅ #728783 */
|
|
51
|
+
--color-tertiary-900: 93 110 107; /* ⬅ #5d6e6b */
|
|
52
|
+
/* success | #4BB543 */
|
|
53
|
+
--color-success-50: 228 244 227; /* ⬅ #e4f4e3 */
|
|
54
|
+
--color-success-100: 219 240 217; /* ⬅ #dbf0d9 */
|
|
55
|
+
--color-success-200: 210 237 208; /* ⬅ #d2edd0 */
|
|
56
|
+
--color-success-300: 183 225 180; /* ⬅ #b7e1b4 */
|
|
57
|
+
--color-success-400: 129 203 123; /* ⬅ #81cb7b */
|
|
58
|
+
--color-success-500: 75 181 67; /* ⬅ #4BB543 */
|
|
59
|
+
--color-success-600: 68 163 60; /* ⬅ #44a33c */
|
|
60
|
+
--color-success-700: 56 136 50; /* ⬅ #388832 */
|
|
61
|
+
--color-success-800: 45 109 40; /* ⬅ #2d6d28 */
|
|
62
|
+
--color-success-900: 37 89 33; /* ⬅ #255921 */
|
|
63
|
+
/* warning | #EAB308 */
|
|
64
|
+
--color-warning-50: 252 244 218; /* ⬅ #fcf4da */
|
|
65
|
+
--color-warning-100: 251 240 206; /* ⬅ #fbf0ce */
|
|
66
|
+
--color-warning-200: 250 236 193; /* ⬅ #faecc1 */
|
|
67
|
+
--color-warning-300: 247 225 156; /* ⬅ #f7e19c */
|
|
68
|
+
--color-warning-400: 240 202 82; /* ⬅ #f0ca52 */
|
|
69
|
+
--color-warning-500: 234 179 8; /* ⬅ #EAB308 */
|
|
70
|
+
--color-warning-600: 211 161 7; /* ⬅ #d3a107 */
|
|
71
|
+
--color-warning-700: 176 134 6; /* ⬅ #b08606 */
|
|
72
|
+
--color-warning-800: 140 107 5; /* ⬅ #8c6b05 */
|
|
73
|
+
--color-warning-900: 115 88 4; /* ⬅ #735804 */
|
|
74
|
+
/* error | #FF0000 */
|
|
75
|
+
--color-error-50: 255 217 217; /* ⬅ #ffd9d9 */
|
|
76
|
+
--color-error-100: 255 204 204; /* ⬅ #ffcccc */
|
|
77
|
+
--color-error-200: 255 191 191; /* ⬅ #ffbfbf */
|
|
78
|
+
--color-error-300: 255 153 153; /* ⬅ #ff9999 */
|
|
79
|
+
--color-error-400: 255 77 77; /* ⬅ #ff4d4d */
|
|
80
|
+
--color-error-500: 255 0 0; /* ⬅ #FF0000 */
|
|
81
|
+
--color-error-600: 230 0 0; /* ⬅ #e60000 */
|
|
82
|
+
--color-error-700: 191 0 0; /* ⬅ #bf0000 */
|
|
83
|
+
--color-error-800: 153 0 0; /* ⬅ #990000 */
|
|
84
|
+
--color-error-900: 125 0 0; /* ⬅ #7d0000 */
|
|
85
|
+
/* surface | #c7c7c7 */
|
|
86
|
+
--color-surface-50: 247 247 247; /* ⬅ #f7f7f7 */
|
|
87
|
+
--color-surface-100: 244 244 244; /* ⬅ #f4f4f4 */
|
|
88
|
+
--color-surface-200: 241 241 241; /* ⬅ #f1f1f1 */
|
|
89
|
+
--color-surface-300: 233 233 233; /* ⬅ #e9e9e9 */
|
|
90
|
+
--color-surface-400: 216 216 216; /* ⬅ #d8d8d8 */
|
|
91
|
+
--color-surface-500: 199 199 199; /* ⬅ #c7c7c7 */
|
|
92
|
+
--color-surface-600: 179 179 179; /* ⬅ #b3b3b3 */
|
|
93
|
+
--color-surface-700: 149 149 149; /* ⬅ #959595 */
|
|
94
|
+
--color-surface-800: 119 119 119; /* ⬅ #777777 */
|
|
95
|
+
--color-surface-900: 98 98 98; /* ⬅ #626262 */
|
|
96
|
+
}
|
|
@@ -1,101 +1,101 @@
|
|
|
1
|
-
/* =~= Crimson Theme - made by GitHub user @ak4zh for the Skeleton community theme contest. =~= */
|
|
2
|
-
/* https://github.com/skeletonlabs/skeleton/discussions/401 */
|
|
3
|
-
|
|
4
|
-
:root {
|
|
5
|
-
/* =~= Theme Styles =~= */
|
|
6
|
-
--theme-font-family-base: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
|
|
7
|
-
'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
|
|
8
|
-
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
9
|
-
--theme-font-family-heading: system-ui;
|
|
10
|
-
--theme-font-color-base: var(--color-surface-900);
|
|
11
|
-
--theme-font-color-dark: var(--color-surface-50);
|
|
12
|
-
--theme-rounded-base: 24px;
|
|
13
|
-
--theme-rounded-container: 24px;
|
|
14
|
-
--theme-border-base: 1px;
|
|
15
|
-
/* =~= Theme On-X Colors =~= */
|
|
16
|
-
--on-primary: 255 255 255;
|
|
17
|
-
--on-secondary: 255 255 255;
|
|
18
|
-
--on-tertiary: 0 0 0;
|
|
19
|
-
--on-success: 0 0 0;
|
|
20
|
-
--on-warning: 0 0 0;
|
|
21
|
-
--on-error: 0 0 0;
|
|
22
|
-
--on-surface: 255 255 255;
|
|
23
|
-
/* =~= Theme Colors =~= */
|
|
24
|
-
/* primary | #d4163c */
|
|
25
|
-
--color-primary-50: 249 220 226; /* ⬅ #f9dce2 */
|
|
26
|
-
--color-primary-100: 246 208 216; /* ⬅ #f6d0d8 */
|
|
27
|
-
--color-primary-200: 244 197 206; /* ⬅ #f4c5ce */
|
|
28
|
-
--color-primary-300: 238 162 177; /* ⬅ #eea2b1 */
|
|
29
|
-
--color-primary-400: 225 92 119; /* ⬅ #e15c77 */
|
|
30
|
-
--color-primary-500: 212 22 60; /* ⬅ #d4163c */
|
|
31
|
-
--color-primary-600: 191 20 54; /* ⬅ #bf1436 */
|
|
32
|
-
--color-primary-700: 159 17 45; /* ⬅ #9f112d */
|
|
33
|
-
--color-primary-800: 127 13 36; /* ⬅ #7f0d24 */
|
|
34
|
-
--color-primary-900: 104 11 29; /* ⬅ #680b1d */
|
|
35
|
-
/* secondary | #4685af */
|
|
36
|
-
--color-secondary-50: 227 237 243; /* ⬅ #e3edf3 */
|
|
37
|
-
--color-secondary-100: 218 231 239; /* ⬅ #dae7ef */
|
|
38
|
-
--color-secondary-200: 209 225 235; /* ⬅ #d1e1eb */
|
|
39
|
-
--color-secondary-300: 181 206 223; /* ⬅ #b5cedf */
|
|
40
|
-
--color-secondary-400: 126 170 199; /* ⬅ #7eaac7 */
|
|
41
|
-
--color-secondary-500: 70 133 175; /* ⬅ #4685af */
|
|
42
|
-
--color-secondary-600: 63 120 158; /* ⬅ #3f789e */
|
|
43
|
-
--color-secondary-700: 53 100 131; /* ⬅ #356483 */
|
|
44
|
-
--color-secondary-800: 42 80 105; /* ⬅ #2a5069 */
|
|
45
|
-
--color-secondary-900: 34 65 86; /* ⬅ #224156 */
|
|
46
|
-
/* tertiary | #c0b6b4 */
|
|
47
|
-
--color-tertiary-50: 246 244 244; /* ⬅ #f6f4f4 */
|
|
48
|
-
--color-tertiary-100: 242 240 240; /* ⬅ #f2f0f0 */
|
|
49
|
-
--color-tertiary-200: 239 237 236; /* ⬅ #efedec */
|
|
50
|
-
--color-tertiary-300: 230 226 225; /* ⬅ #e6e2e1 */
|
|
51
|
-
--color-tertiary-400: 211 204 203; /* ⬅ #d3cccb */
|
|
52
|
-
--color-tertiary-500: 192 182 180; /* ⬅ #c0b6b4 */
|
|
53
|
-
--color-tertiary-600: 173 164 162; /* ⬅ #ada4a2 */
|
|
54
|
-
--color-tertiary-700: 144 137 135; /* ⬅ #908987 */
|
|
55
|
-
--color-tertiary-800: 115 109 108; /* ⬅ #736d6c */
|
|
56
|
-
--color-tertiary-900: 94 89 88; /* ⬅ #5e5958 */
|
|
57
|
-
/* success | #c1dd97 */
|
|
58
|
-
--color-success-50: 246 250 239; /* ⬅ #f6faef */
|
|
59
|
-
--color-success-100: 243 248 234; /* ⬅ #f3f8ea */
|
|
60
|
-
--color-success-200: 240 247 229; /* ⬅ #f0f7e5 */
|
|
61
|
-
--color-success-300: 230 241 213; /* ⬅ #e6f1d5 */
|
|
62
|
-
--color-success-400: 212 231 182; /* ⬅ #d4e7b6 */
|
|
63
|
-
--color-success-500: 193 221 151; /* ⬅ #c1dd97 */
|
|
64
|
-
--color-success-600: 174 199 136; /* ⬅ #aec788 */
|
|
65
|
-
--color-success-700: 145 166 113; /* ⬅ #91a671 */
|
|
66
|
-
--color-success-800: 116 133 91; /* ⬅ #74855b */
|
|
67
|
-
--color-success-900: 95 108 74; /* ⬅ #5f6c4a */
|
|
68
|
-
/* warning | #e4c25e */
|
|
69
|
-
--color-warning-50: 251 246 231; /* ⬅ #fbf6e7 */
|
|
70
|
-
--color-warning-100: 250 243 223; /* ⬅ #faf3df */
|
|
71
|
-
--color-warning-200: 248 240 215; /* ⬅ #f8f0d7 */
|
|
72
|
-
--color-warning-300: 244 231 191; /* ⬅ #f4e7bf */
|
|
73
|
-
--color-warning-400: 236 212 142; /* ⬅ #ecd48e */
|
|
74
|
-
--color-warning-500: 228 194 94; /* ⬅ #e4c25e */
|
|
75
|
-
--color-warning-600: 205 175 85; /* ⬅ #cdaf55 */
|
|
76
|
-
--color-warning-700: 171 146 71; /* ⬅ #ab9247 */
|
|
77
|
-
--color-warning-800: 137 116 56; /* ⬅ #897438 */
|
|
78
|
-
--color-warning-900: 112 95 46; /* ⬅ #705f2e */
|
|
79
|
-
/* error | #d27f81 */
|
|
80
|
-
--color-error-50: 248 236 236; /* ⬅ #f8ecec */
|
|
81
|
-
--color-error-100: 246 229 230; /* ⬅ #f6e5e6 */
|
|
82
|
-
--color-error-200: 244 223 224; /* ⬅ #f4dfe0 */
|
|
83
|
-
--color-error-300: 237 204 205; /* ⬅ #edcccd */
|
|
84
|
-
--color-error-400: 224 165 167; /* ⬅ #e0a5a7 */
|
|
85
|
-
--color-error-500: 210 127 129; /* ⬅ #d27f81 */
|
|
86
|
-
--color-error-600: 189 114 116; /* ⬅ #bd7274 */
|
|
87
|
-
--color-error-700: 158 95 97; /* ⬅ #9e5f61 */
|
|
88
|
-
--color-error-800: 126 76 77; /* ⬅ #7e4c4d */
|
|
89
|
-
--color-error-900: 103 62 63; /* ⬅ #673e3f */
|
|
90
|
-
/* surface | #2b2e40 */
|
|
91
|
-
--color-surface-50: 223 224 226; /* ⬅ #dfe0e2 */
|
|
92
|
-
--color-surface-100: 213 213 217; /* ⬅ #d5d5d9 */
|
|
93
|
-
--color-surface-200: 202 203 207; /* ⬅ #cacbcf */
|
|
94
|
-
--color-surface-300: 170 171 179; /* ⬅ #aaabb3 */
|
|
95
|
-
--color-surface-400: 107 109 121; /* ⬅ #6b6d79 */
|
|
96
|
-
--color-surface-500: 43 46 64; /* ⬅ #2b2e40 */
|
|
97
|
-
--color-surface-600: 39 41 58; /* ⬅ #27293a */
|
|
98
|
-
--color-surface-700: 32 35 48; /* ⬅ #202330 */
|
|
99
|
-
--color-surface-800: 26 28 38; /* ⬅ #1a1c26 */
|
|
100
|
-
--color-surface-900: 21 23 31; /* ⬅ #15171f */
|
|
101
|
-
}
|
|
1
|
+
/* =~= Crimson Theme - made by GitHub user @ak4zh for the Skeleton community theme contest. =~= */
|
|
2
|
+
/* https://github.com/skeletonlabs/skeleton/discussions/401 */
|
|
3
|
+
|
|
4
|
+
:root {
|
|
5
|
+
/* =~= Theme Styles =~= */
|
|
6
|
+
--theme-font-family-base: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
|
|
7
|
+
'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
|
|
8
|
+
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
9
|
+
--theme-font-family-heading: system-ui;
|
|
10
|
+
--theme-font-color-base: var(--color-surface-900);
|
|
11
|
+
--theme-font-color-dark: var(--color-surface-50);
|
|
12
|
+
--theme-rounded-base: 24px;
|
|
13
|
+
--theme-rounded-container: 24px;
|
|
14
|
+
--theme-border-base: 1px;
|
|
15
|
+
/* =~= Theme On-X Colors =~= */
|
|
16
|
+
--on-primary: 255 255 255;
|
|
17
|
+
--on-secondary: 255 255 255;
|
|
18
|
+
--on-tertiary: 0 0 0;
|
|
19
|
+
--on-success: 0 0 0;
|
|
20
|
+
--on-warning: 0 0 0;
|
|
21
|
+
--on-error: 0 0 0;
|
|
22
|
+
--on-surface: 255 255 255;
|
|
23
|
+
/* =~= Theme Colors =~= */
|
|
24
|
+
/* primary | #d4163c */
|
|
25
|
+
--color-primary-50: 249 220 226; /* ⬅ #f9dce2 */
|
|
26
|
+
--color-primary-100: 246 208 216; /* ⬅ #f6d0d8 */
|
|
27
|
+
--color-primary-200: 244 197 206; /* ⬅ #f4c5ce */
|
|
28
|
+
--color-primary-300: 238 162 177; /* ⬅ #eea2b1 */
|
|
29
|
+
--color-primary-400: 225 92 119; /* ⬅ #e15c77 */
|
|
30
|
+
--color-primary-500: 212 22 60; /* ⬅ #d4163c */
|
|
31
|
+
--color-primary-600: 191 20 54; /* ⬅ #bf1436 */
|
|
32
|
+
--color-primary-700: 159 17 45; /* ⬅ #9f112d */
|
|
33
|
+
--color-primary-800: 127 13 36; /* ⬅ #7f0d24 */
|
|
34
|
+
--color-primary-900: 104 11 29; /* ⬅ #680b1d */
|
|
35
|
+
/* secondary | #4685af */
|
|
36
|
+
--color-secondary-50: 227 237 243; /* ⬅ #e3edf3 */
|
|
37
|
+
--color-secondary-100: 218 231 239; /* ⬅ #dae7ef */
|
|
38
|
+
--color-secondary-200: 209 225 235; /* ⬅ #d1e1eb */
|
|
39
|
+
--color-secondary-300: 181 206 223; /* ⬅ #b5cedf */
|
|
40
|
+
--color-secondary-400: 126 170 199; /* ⬅ #7eaac7 */
|
|
41
|
+
--color-secondary-500: 70 133 175; /* ⬅ #4685af */
|
|
42
|
+
--color-secondary-600: 63 120 158; /* ⬅ #3f789e */
|
|
43
|
+
--color-secondary-700: 53 100 131; /* ⬅ #356483 */
|
|
44
|
+
--color-secondary-800: 42 80 105; /* ⬅ #2a5069 */
|
|
45
|
+
--color-secondary-900: 34 65 86; /* ⬅ #224156 */
|
|
46
|
+
/* tertiary | #c0b6b4 */
|
|
47
|
+
--color-tertiary-50: 246 244 244; /* ⬅ #f6f4f4 */
|
|
48
|
+
--color-tertiary-100: 242 240 240; /* ⬅ #f2f0f0 */
|
|
49
|
+
--color-tertiary-200: 239 237 236; /* ⬅ #efedec */
|
|
50
|
+
--color-tertiary-300: 230 226 225; /* ⬅ #e6e2e1 */
|
|
51
|
+
--color-tertiary-400: 211 204 203; /* ⬅ #d3cccb */
|
|
52
|
+
--color-tertiary-500: 192 182 180; /* ⬅ #c0b6b4 */
|
|
53
|
+
--color-tertiary-600: 173 164 162; /* ⬅ #ada4a2 */
|
|
54
|
+
--color-tertiary-700: 144 137 135; /* ⬅ #908987 */
|
|
55
|
+
--color-tertiary-800: 115 109 108; /* ⬅ #736d6c */
|
|
56
|
+
--color-tertiary-900: 94 89 88; /* ⬅ #5e5958 */
|
|
57
|
+
/* success | #c1dd97 */
|
|
58
|
+
--color-success-50: 246 250 239; /* ⬅ #f6faef */
|
|
59
|
+
--color-success-100: 243 248 234; /* ⬅ #f3f8ea */
|
|
60
|
+
--color-success-200: 240 247 229; /* ⬅ #f0f7e5 */
|
|
61
|
+
--color-success-300: 230 241 213; /* ⬅ #e6f1d5 */
|
|
62
|
+
--color-success-400: 212 231 182; /* ⬅ #d4e7b6 */
|
|
63
|
+
--color-success-500: 193 221 151; /* ⬅ #c1dd97 */
|
|
64
|
+
--color-success-600: 174 199 136; /* ⬅ #aec788 */
|
|
65
|
+
--color-success-700: 145 166 113; /* ⬅ #91a671 */
|
|
66
|
+
--color-success-800: 116 133 91; /* ⬅ #74855b */
|
|
67
|
+
--color-success-900: 95 108 74; /* ⬅ #5f6c4a */
|
|
68
|
+
/* warning | #e4c25e */
|
|
69
|
+
--color-warning-50: 251 246 231; /* ⬅ #fbf6e7 */
|
|
70
|
+
--color-warning-100: 250 243 223; /* ⬅ #faf3df */
|
|
71
|
+
--color-warning-200: 248 240 215; /* ⬅ #f8f0d7 */
|
|
72
|
+
--color-warning-300: 244 231 191; /* ⬅ #f4e7bf */
|
|
73
|
+
--color-warning-400: 236 212 142; /* ⬅ #ecd48e */
|
|
74
|
+
--color-warning-500: 228 194 94; /* ⬅ #e4c25e */
|
|
75
|
+
--color-warning-600: 205 175 85; /* ⬅ #cdaf55 */
|
|
76
|
+
--color-warning-700: 171 146 71; /* ⬅ #ab9247 */
|
|
77
|
+
--color-warning-800: 137 116 56; /* ⬅ #897438 */
|
|
78
|
+
--color-warning-900: 112 95 46; /* ⬅ #705f2e */
|
|
79
|
+
/* error | #d27f81 */
|
|
80
|
+
--color-error-50: 248 236 236; /* ⬅ #f8ecec */
|
|
81
|
+
--color-error-100: 246 229 230; /* ⬅ #f6e5e6 */
|
|
82
|
+
--color-error-200: 244 223 224; /* ⬅ #f4dfe0 */
|
|
83
|
+
--color-error-300: 237 204 205; /* ⬅ #edcccd */
|
|
84
|
+
--color-error-400: 224 165 167; /* ⬅ #e0a5a7 */
|
|
85
|
+
--color-error-500: 210 127 129; /* ⬅ #d27f81 */
|
|
86
|
+
--color-error-600: 189 114 116; /* ⬅ #bd7274 */
|
|
87
|
+
--color-error-700: 158 95 97; /* ⬅ #9e5f61 */
|
|
88
|
+
--color-error-800: 126 76 77; /* ⬅ #7e4c4d */
|
|
89
|
+
--color-error-900: 103 62 63; /* ⬅ #673e3f */
|
|
90
|
+
/* surface | #2b2e40 */
|
|
91
|
+
--color-surface-50: 223 224 226; /* ⬅ #dfe0e2 */
|
|
92
|
+
--color-surface-100: 213 213 217; /* ⬅ #d5d5d9 */
|
|
93
|
+
--color-surface-200: 202 203 207; /* ⬅ #cacbcf */
|
|
94
|
+
--color-surface-300: 170 171 179; /* ⬅ #aaabb3 */
|
|
95
|
+
--color-surface-400: 107 109 121; /* ⬅ #6b6d79 */
|
|
96
|
+
--color-surface-500: 43 46 64; /* ⬅ #2b2e40 */
|
|
97
|
+
--color-surface-600: 39 41 58; /* ⬅ #27293a */
|
|
98
|
+
--color-surface-700: 32 35 48; /* ⬅ #202330 */
|
|
99
|
+
--color-surface-800: 26 28 38; /* ⬅ #1a1c26 */
|
|
100
|
+
--color-surface-900: 21 23 31; /* ⬅ #15171f */
|
|
101
|
+
}
|