adminforth 2.4.0-next.31 → 2.4.0-next.310
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/commands/callTsProxy.js +14 -4
- package/commands/createApp/templates/api.ts.hbs +10 -0
- package/commands/createApp/templates/custom/tsconfig.json.hbs +2 -3
- package/commands/createApp/templates/index.ts.hbs +12 -1
- package/commands/createApp/templates/package.json.hbs +1 -1
- package/commands/createApp/templates/prisma.config.ts.hbs +8 -0
- package/commands/createApp/templates/schema.prisma.hbs +0 -1
- package/commands/createApp/utils.js +10 -0
- package/commands/createCustomComponent/configLoader.js +17 -4
- package/commands/createCustomComponent/main.js +13 -7
- package/commands/createCustomComponent/templates/customCrud/beforeActionButtons.vue.hbs +38 -0
- package/commands/createCustomComponent/templates/customCrud/saveButton.vue.hbs +28 -0
- package/commands/createPlugin/templates/custom/tsconfig.json.hbs +2 -5
- package/commands/createPlugin/templates/package.json.hbs +1 -1
- package/commands/generateModels.js +30 -22
- package/dist/auth.d.ts +9 -1
- package/dist/auth.d.ts.map +1 -1
- package/dist/auth.js +21 -2
- package/dist/auth.js.map +1 -1
- package/dist/dataConnectors/baseConnector.d.ts +1 -1
- package/dist/dataConnectors/baseConnector.d.ts.map +1 -1
- package/dist/dataConnectors/baseConnector.js +69 -17
- package/dist/dataConnectors/baseConnector.js.map +1 -1
- package/dist/dataConnectors/clickhouse.d.ts.map +1 -1
- package/dist/dataConnectors/clickhouse.js +15 -0
- package/dist/dataConnectors/clickhouse.js.map +1 -1
- package/dist/dataConnectors/mongo.d.ts.map +1 -1
- package/dist/dataConnectors/mongo.js +50 -15
- package/dist/dataConnectors/mongo.js.map +1 -1
- package/dist/dataConnectors/mysql.d.ts.map +1 -1
- package/dist/dataConnectors/mysql.js +11 -0
- package/dist/dataConnectors/mysql.js.map +1 -1
- package/dist/dataConnectors/postgres.d.ts.map +1 -1
- package/dist/dataConnectors/postgres.js +43 -14
- package/dist/dataConnectors/postgres.js.map +1 -1
- package/dist/dataConnectors/sqlite.d.ts.map +1 -1
- package/dist/dataConnectors/sqlite.js +11 -0
- package/dist/dataConnectors/sqlite.js.map +1 -1
- package/dist/index.d.ts +12 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +45 -22
- package/dist/index.js.map +1 -1
- package/dist/modules/codeInjector.d.ts +2 -0
- package/dist/modules/codeInjector.d.ts.map +1 -1
- package/dist/modules/codeInjector.js +62 -6
- package/dist/modules/codeInjector.js.map +1 -1
- package/dist/modules/configValidator.d.ts +6 -0
- package/dist/modules/configValidator.d.ts.map +1 -1
- package/dist/modules/configValidator.js +202 -25
- package/dist/modules/configValidator.js.map +1 -1
- package/dist/modules/restApi.d.ts +1 -1
- package/dist/modules/restApi.d.ts.map +1 -1
- package/dist/modules/restApi.js +172 -31
- package/dist/modules/restApi.js.map +1 -1
- package/dist/modules/styles.d.ts +499 -13
- package/dist/modules/styles.d.ts.map +1 -1
- package/dist/modules/styles.js +555 -31
- package/dist/modules/styles.js.map +1 -1
- package/dist/modules/utils.d.ts +7 -15
- package/dist/modules/utils.d.ts.map +1 -1
- package/dist/modules/utils.js +45 -68
- package/dist/modules/utils.js.map +1 -1
- package/dist/servers/express.d.ts +5 -0
- package/dist/servers/express.d.ts.map +1 -1
- package/dist/servers/express.js +40 -1
- package/dist/servers/express.js.map +1 -1
- package/dist/spa/index.html +1 -1
- package/dist/spa/package-lock.json +1208 -708
- package/dist/spa/package.json +34 -34
- package/dist/spa/src/App.vue +59 -174
- package/dist/spa/src/adminforth.ts +42 -18
- package/dist/spa/src/afcl/AreaChart.vue +0 -1
- package/dist/spa/src/afcl/BarChart.vue +2 -2
- package/dist/spa/src/afcl/Button.vue +6 -6
- package/dist/spa/src/afcl/ButtonGroup.vue +91 -0
- package/dist/spa/src/afcl/Card.vue +25 -0
- package/dist/spa/src/afcl/Checkbox.vue +21 -13
- package/dist/spa/src/afcl/CountryFlag.vue +4 -1
- package/dist/spa/src/{components/CustomDatePicker.vue → afcl/DatePicker.vue} +95 -9
- package/dist/spa/src/afcl/Dialog.vue +47 -27
- package/dist/spa/src/afcl/Dropzone.vue +127 -48
- package/dist/spa/src/afcl/Input.vue +14 -6
- package/dist/spa/src/afcl/JsonViewer.vue +25 -0
- package/dist/spa/src/afcl/LinkButton.vue +3 -3
- package/dist/spa/src/afcl/PieChart.vue +5 -5
- package/dist/spa/src/afcl/ProgressBar.vue +7 -7
- package/dist/spa/src/afcl/Select.vue +82 -34
- package/dist/spa/src/afcl/Skeleton.vue +6 -6
- package/dist/spa/src/afcl/Table.vue +315 -73
- package/dist/spa/src/afcl/Textarea.vue +31 -0
- package/dist/spa/src/afcl/Toggle.vue +32 -0
- package/dist/spa/src/afcl/Tooltip.vue +28 -18
- package/dist/spa/src/afcl/VerticalTabs.vue +16 -7
- package/dist/spa/src/afcl/index.ts +6 -3
- package/dist/spa/src/components/AcceptModal.vue +48 -14
- package/dist/spa/src/components/Breadcrumbs.vue +5 -5
- package/dist/spa/src/components/CallActionWrapper.vue +15 -0
- package/dist/spa/src/components/ColumnValueInput.vue +38 -18
- package/dist/spa/src/components/ColumnValueInputWrapper.vue +4 -3
- package/dist/spa/src/components/CustomDateRangePicker.vue +9 -8
- package/dist/spa/src/components/CustomRangePicker.vue +37 -21
- package/dist/spa/src/components/ErrorMessage.vue +21 -0
- package/dist/spa/src/components/Filters.vue +195 -132
- package/dist/spa/src/components/GroupsTable.vue +9 -8
- package/dist/spa/src/components/MenuLink.vue +90 -23
- package/dist/spa/src/components/ResourceForm.vue +94 -51
- package/dist/spa/src/components/ResourceListTable.vue +115 -85
- package/dist/spa/src/components/ResourceListTableVirtual.vue +114 -80
- package/dist/spa/src/components/ShowTable.vue +21 -15
- package/dist/spa/src/components/Sidebar.vue +470 -0
- package/dist/spa/src/components/SingleSkeletLoader.vue +6 -6
- package/dist/spa/src/components/SkeleteLoader.vue +3 -3
- package/dist/spa/src/components/ThreeDotsMenu.vue +84 -15
- package/dist/spa/src/components/Toast.vue +40 -29
- package/dist/spa/src/components/UserMenuSettingsButton.vue +69 -0
- package/dist/spa/src/components/ValueRenderer.vue +44 -17
- package/dist/spa/src/controls/BoolToggle.vue +34 -0
- package/dist/spa/src/i18n.ts +5 -3
- package/dist/spa/src/main.ts +1 -1
- package/dist/spa/src/renderers/CompactField.vue +1 -1
- package/dist/spa/src/renderers/CompactUUID.vue +1 -1
- package/dist/spa/src/router/index.ts +8 -0
- package/dist/spa/src/shims-vue.d.ts +5 -0
- package/dist/spa/src/spa_types/core.ts +13 -1
- package/dist/spa/src/stores/core.ts +13 -1
- package/dist/spa/src/stores/filters.ts +33 -2
- package/dist/spa/src/stores/modal.ts +6 -1
- package/dist/spa/src/stores/toast.ts +22 -3
- package/dist/spa/src/types/Back.ts +163 -23
- package/dist/spa/src/types/Common.ts +91 -32
- package/dist/spa/src/types/FrontendAPI.ts +31 -5
- package/dist/spa/src/types/adapters/CaptchaAdapter.ts +34 -0
- package/dist/spa/src/types/adapters/EmailAdapter.ts +2 -2
- package/dist/spa/src/types/adapters/ImageVisionAdapter.ts +30 -0
- package/dist/spa/src/types/adapters/KeyValueAdapter.ts +16 -0
- package/dist/spa/src/types/adapters/index.ts +8 -0
- package/dist/spa/src/utils.ts +291 -11
- package/dist/spa/src/views/CreateView.vue +63 -21
- package/dist/spa/src/views/EditView.vue +55 -22
- package/dist/spa/src/views/ListView.vue +144 -87
- package/dist/spa/src/views/LoginView.vue +26 -35
- package/dist/spa/src/views/ResourceParent.vue +2 -2
- package/dist/spa/src/views/SettingsView.vue +121 -0
- package/dist/spa/src/views/ShowView.vue +83 -53
- package/dist/spa/src/websocket.ts +6 -1
- package/dist/spa/tsconfig.app.json +1 -1
- package/dist/spa/vite.config.ts +45 -2
- package/dist/types/Back.d.ts +146 -14
- package/dist/types/Back.d.ts.map +1 -1
- package/dist/types/Back.js +15 -0
- package/dist/types/Back.js.map +1 -1
- package/dist/types/Common.d.ts +106 -29
- package/dist/types/Common.d.ts.map +1 -1
- package/dist/types/Common.js.map +1 -1
- package/dist/types/FrontendAPI.d.ts +31 -3
- package/dist/types/FrontendAPI.d.ts.map +1 -1
- package/dist/types/FrontendAPI.js.map +1 -1
- package/dist/types/adapters/CaptchaAdapter.d.ts +30 -0
- package/dist/types/adapters/CaptchaAdapter.d.ts.map +1 -0
- package/dist/types/adapters/CaptchaAdapter.js +5 -0
- package/dist/types/adapters/CaptchaAdapter.js.map +1 -0
- package/dist/types/adapters/EmailAdapter.d.ts +1 -1
- package/dist/types/adapters/ImageVisionAdapter.d.ts +25 -0
- package/dist/types/adapters/ImageVisionAdapter.d.ts.map +1 -0
- package/dist/types/adapters/ImageVisionAdapter.js +2 -0
- package/dist/types/adapters/ImageVisionAdapter.js.map +1 -0
- package/dist/types/adapters/KeyValueAdapter.d.ts +10 -0
- package/dist/types/adapters/KeyValueAdapter.d.ts.map +1 -0
- package/dist/types/adapters/KeyValueAdapter.js +2 -0
- package/dist/types/adapters/KeyValueAdapter.js.map +1 -0
- package/dist/types/adapters/index.d.ts +9 -0
- package/dist/types/adapters/index.d.ts.map +1 -0
- package/dist/types/adapters/index.js +2 -0
- package/dist/types/adapters/index.js.map +1 -0
- package/package.json +4 -2
- package/dist/spa/src/types/adapters/index.js +0 -5
package/dist/modules/styles.js
CHANGED
|
@@ -23,39 +23,292 @@ export const styles = () => ({
|
|
|
23
23
|
lightSidebarIcons: "alias:lightSidebarText opacity:0.7", // sidebar list item icons
|
|
24
24
|
lightSidebarIconsHover: "alias:lightSidebarText", // sidebar list item icons hover
|
|
25
25
|
lightSidebarHeading: "alias:lightSidebarText opacity:0.3", // sidebar heading
|
|
26
|
+
/***************************************************************
|
|
27
|
+
* *
|
|
28
|
+
* Light Views *
|
|
29
|
+
* *
|
|
30
|
+
***************************************************************/
|
|
31
|
+
/*----------------------------------------*/
|
|
32
|
+
/* Show/Create/Edit View Table background */
|
|
33
|
+
/*----------------------------------------*/
|
|
34
|
+
lightForm: "#ffffff", // show view background
|
|
35
|
+
lightFormBorder: "#F5F5F5", // show view rows border
|
|
36
|
+
lightFormHeading: "alias:lightListTableHeading", // show view heading
|
|
37
|
+
lightFormFieldTextColor: "alias:lightListTableText",
|
|
38
|
+
/*----------------------------------------*/
|
|
39
|
+
/* List View Table */
|
|
40
|
+
/*----------------------------------------*/
|
|
41
|
+
lightListSkeletLoader: "#E5E7EB",
|
|
26
42
|
lightList: "#FFFFFF", // list view background
|
|
27
43
|
lightListTable: "#FFFFFF", // list view table background
|
|
28
44
|
lightListTableHeading: "#f5f5f8", // list view table heading
|
|
29
|
-
lightListTableHeadingText: "
|
|
30
|
-
lightListTableText: "#
|
|
45
|
+
lightListTableHeadingText: "#374151", // list view table heading text
|
|
46
|
+
lightListTableText: "#6B7280", // list view table text
|
|
31
47
|
lightListTableRowHover: "rgb(249 250 251)", // list view row hover
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
48
|
+
lightListBorder: "#DDDDDD", // list view rows
|
|
49
|
+
lightListTablePaginationBackgoround: "#FFFFFF",
|
|
50
|
+
lightListTablePaginationBackgoroundHover: "#F3F4F6",
|
|
51
|
+
lightListTablePaginationBorder: "#D1D5DB",
|
|
52
|
+
lightListTablePaginationFocusRing: "#F3F4F6",
|
|
53
|
+
lightListTablePaginationText: "#111827",
|
|
54
|
+
lightListTablePaginationCurrentPageText: "#374151",
|
|
55
|
+
lightListTablePaginationTextHover: "alias:lightPrimary",
|
|
56
|
+
lightListTablePaginationHelpText: "#374151",
|
|
57
|
+
/* ListView buttons */
|
|
58
|
+
lightListViewButtonBackground: "#FFFFFF",
|
|
59
|
+
lightListViewButtonBackgroundHover: "#F3F4F6",
|
|
60
|
+
lightListViewButtonText: "#111827",
|
|
61
|
+
lightListViewButtonTextHover: "alias:lightPrimary",
|
|
62
|
+
lightListViewButtonFocusRing: "#F3F4F6",
|
|
63
|
+
lightListViewButtonBorder: "#D1D5DB",
|
|
64
|
+
/*----------------------------------------*/
|
|
65
|
+
/* Show View Table */
|
|
66
|
+
/*----------------------------------------*/
|
|
67
|
+
lightShowTableHeadingBackground: "alias:lightFormHeading",
|
|
68
|
+
lightShowTableHeadingText: "#374151",
|
|
69
|
+
lightShowTableUnderHeadingBackground: "alias:lightFormHeading",
|
|
70
|
+
lightShowTableUnderHeadingText: "#374151",
|
|
71
|
+
lightShowTablesBodyBackground: "alias:lightForm",
|
|
72
|
+
lightShowTableBodyText: "#6B7280",
|
|
73
|
+
lightShowTableBodyBorder: "#F3F4F6",
|
|
74
|
+
/* Show View buttons*/
|
|
75
|
+
lightShowViewButtonBackground: "#FFFFFF",
|
|
76
|
+
lightShowViewButtonBackgroundHover: "#F3F4F6",
|
|
77
|
+
lightShowViewButtonText: "#111827",
|
|
78
|
+
lightShowViewButtonTextHover: "alias:lightPrimary",
|
|
79
|
+
lightShowViewButtonFocusRing: "#F3F4F6",
|
|
80
|
+
lightShowViewButtonBorder: "#D1D5DB",
|
|
81
|
+
/*----------------------------------------*/
|
|
82
|
+
/* Create View Table */
|
|
83
|
+
/*----------------------------------------*/
|
|
84
|
+
/* CreateView buttons */
|
|
85
|
+
lightCreateViewButtonBackground: "#FFFFFF",
|
|
86
|
+
lightCreateViewButtonBackgroundHover: "#F3F4F6",
|
|
87
|
+
lightCreateViewButtonText: "#111827",
|
|
88
|
+
lightCreateViewButtonTextHover: "alias:lightPrimary",
|
|
89
|
+
lightCreateViewButtonFocusRing: "#F3F4F6",
|
|
90
|
+
lightCreateViewButtonBorder: "#D1D5DB",
|
|
91
|
+
lightCreateViewSaveButtonText: "#DC2626",
|
|
92
|
+
lightCreateViewSaveButtonTextHover: "#B91C1C",
|
|
93
|
+
/*----------------------------------------*/
|
|
94
|
+
/* Edit View Table */
|
|
95
|
+
/*----------------------------------------*/
|
|
96
|
+
/* EditView buttons */
|
|
97
|
+
lightEditViewButtonBackground: "#FFFFFF",
|
|
98
|
+
lightEditViewButtonBackgroundHover: "#F3F4F6",
|
|
99
|
+
lightEditViewButtonText: "#111827",
|
|
100
|
+
lightEditViewButtonTextHover: "alias:lightPrimary",
|
|
101
|
+
lightEditViewButtonFocusRing: "#F3F4F6",
|
|
102
|
+
lightEditViewButtonBorder: "#D1D5DB",
|
|
103
|
+
lightEditViewSaveButtonText: "#DC2626",
|
|
104
|
+
lightEditViewSaveButtonTextHover: "#B91C1C",
|
|
105
|
+
/*----------------------------------------*/
|
|
106
|
+
/* Login View Table */
|
|
107
|
+
/*----------------------------------------*/
|
|
108
|
+
/* Login View */
|
|
109
|
+
lightLoginViewBackground: "#FFFFFF",
|
|
110
|
+
lightLoginViewTextColor: "#111827",
|
|
111
|
+
lightLoginViewSubTextColor: "#9CA3AF",
|
|
112
|
+
lightLoginViewPromptBackground: "#F9FAFB",
|
|
113
|
+
lightLoginViewPromptText: "#1F2937",
|
|
114
|
+
/***************************************************************
|
|
115
|
+
* *
|
|
116
|
+
* AdminForth light components *
|
|
117
|
+
* *
|
|
118
|
+
***************************************************************/
|
|
119
|
+
lightButtonsBackground: "alias:lightPrimary", // button background
|
|
120
|
+
lightButtonsBorder: "alias:lightPrimary", // button border
|
|
121
|
+
lightButtonsText: "alias:lightPrimaryContrast", // button text
|
|
122
|
+
lightButtonsHover: "alias:lightPrimary lighten", // button hover
|
|
123
|
+
lightButtonsBorderHover: "alias:lightPrimary", // button border hover
|
|
124
|
+
lightButtonFocusRing: "alias:lightPrimary opacity:0.6", // button focus ring
|
|
125
|
+
lightButtonGroupBackground: "#FFFFFF", // button group background
|
|
126
|
+
lightButtonGroupBorder: "#D1D5DB", // button group border
|
|
127
|
+
lightButtonGroupText: "#111827", // button group text
|
|
128
|
+
lightButtonGroupFocusRing: "#F3F4F6", // button group focus ring
|
|
129
|
+
lightButtonGroupBackgroundHover: "#F3F4F6", // button group background hover
|
|
130
|
+
lightButtonGroupTextHover: "alias:lightPrimary", // button group text hover
|
|
131
|
+
lightButtonGroupActiveBackground: "alias:lightPrimary", // button group active background
|
|
132
|
+
lightButtonGroupActiveText: "alias:lightPrimaryContrast", // button group active text
|
|
133
|
+
lightButtonGroupActiveFocusRing: "alias:lightPrimary opacity:0.6", // button group active focus ring
|
|
134
|
+
lightDropdownButtonsBackground: "#f9fafb", // dropdown button/input background color
|
|
135
|
+
lightDropownButtonsBorder: "#D1D5DB", //border color
|
|
136
|
+
lightDropdownButtonsText: "alias:lightPrimary", //text color
|
|
137
|
+
lightDropdownButtonsPlaceholderText: "#6B7280", //placeholder text color
|
|
138
|
+
lightDropdownOptionsBackground: "#ffffff", //dropdown menu background color
|
|
139
|
+
lightDropdownOptionsHoverBackground: "#F3F4F6", //dropdown menu hover background color
|
|
140
|
+
lightDropdownPicked: "#F3F4F6", //dropdown ,enu picked option
|
|
141
|
+
lightDropdownOptionsText: "#111827", //dropdown menu hover background color
|
|
142
|
+
lightDropdownMultipleSelectBackground: "alias:lightPrimaryOpacity", //if select multiple, selected options background
|
|
143
|
+
lightDropdownMultipleSelectText: "alias:lightPrimary", // text color
|
|
144
|
+
lightDropdownMultipleSelectIcon: "#9CA3AF", // delete select icon
|
|
145
|
+
lightDropdownMultipleSelectIconHover: "#6B7280", // delete select icon color
|
|
146
|
+
lightDropdownMultipleSelectIconFocus: "#6B7280", // delete select icon focus
|
|
147
|
+
lightDropdownMultipleSelectIconFocusBackground: "#F3F4F6", // delete select icon focus background
|
|
148
|
+
lightCheckboxBgUnchecked: "alias:lightPrimaryContrast opacity:0.2", //checkbox unchecked state bg
|
|
149
|
+
lightCheckboxBgChecked: "alias:lightPrimary", //cheched state bg
|
|
150
|
+
lightCheckboxIconColor: "alias:lightPrimaryContrast lighten", //checked icon color
|
|
151
|
+
lightCheckboxBorderColor: "alias:lightPrimary darken", //border color
|
|
152
|
+
lightFocusRing: "alias:lightPrimary lighten", //focus ring color
|
|
153
|
+
lightTextLabel: "black", //text color of checkbox label
|
|
154
|
+
lightToggleBgUnactive: "alias:lightPrimaryContrast", //toggle unactive state background
|
|
155
|
+
lightToggleBgActive: "alias:lightPrimary darken", //toggle active state background
|
|
156
|
+
lightToggleCircleUnactive: "alias:lightPrimary",
|
|
157
|
+
lightToggleCircleActive: "alias:lightToggleBgUnactive",
|
|
158
|
+
lightToggleRing: "alias:lightPrimary lighten", // toggle ring color
|
|
159
|
+
lightToggleText: "black", // color of text next to toggle
|
|
160
|
+
lightToggleBorderUnactive: "alias:lightPrimary lighten", // unactive state border
|
|
161
|
+
lightToggleBorderActive: "alias:lightPrimary darken", // active state border
|
|
162
|
+
lightInputBackground: "#f9fafb", // input background
|
|
163
|
+
lightInputPlaceholderText: "#6B7280", //placeholder text color
|
|
164
|
+
lightInputText: "#111827", //text color
|
|
165
|
+
lightInputBorder: "#D1D5DB", //border color
|
|
166
|
+
lightInputBackgroundHover: "#F3F4F6", //hover
|
|
167
|
+
lightInputTextHover: "alias:lightPrimary", //text hover
|
|
168
|
+
lightInputBorderHover: "alias:lightInputBorder darken", //border hover
|
|
169
|
+
lightInputFocusRing: "#F3F4F6", //focus ring
|
|
170
|
+
lightInputFocusBorder: "alias:lightPrimary",
|
|
171
|
+
lightInputIconColor: "#6B7280", //input icon
|
|
172
|
+
lightInputErrorColor: "#EF4444", //color of icon and text, when error shown
|
|
173
|
+
lightRequiredIconColor: "#9CA3AF", //requires icon color
|
|
174
|
+
lightDatePickerButtonBackground: "#F9FAFB",
|
|
175
|
+
lightDatePickerButtonText: "#111827",
|
|
176
|
+
lightDatePickerPlaceHolder: "#9CA3AF",
|
|
177
|
+
lightDatePickerButtonBorder: "#D1D5DB",
|
|
178
|
+
lightDatePickerIcon: "#6B7280",
|
|
179
|
+
lightDatePickerExpandText: "alias:lightPrimary",
|
|
180
|
+
lightDatePickerCalendarBackground: "#FFFFFF",
|
|
181
|
+
lightDatePickerCalendarText: "#111827",
|
|
182
|
+
lightDatePickerCalendarArrowButtonBackground: "#FFFFFF",
|
|
183
|
+
lightDatePickerCalendarArrowButtonBackgroundHover: "#F3F4F6",
|
|
184
|
+
lightDatePickerCalendarArrowButtonFocusRing: "#E5E7EB",
|
|
185
|
+
lightDatePickerCalendarDaysOfWeekText: "#6B7280",
|
|
186
|
+
lightDatePickerCalendarDateButtonText: "#111827",
|
|
187
|
+
lightDatePickerCalendarDateButtonBackgroundHover: "#F3F4F6",
|
|
188
|
+
lightDatePickerCalendarDateActiveButtonBackground: "#1D4ED8",
|
|
189
|
+
lightDatePickerCalendarDateActiveButtonText: "#FFFFFF",
|
|
190
|
+
lightTooltipBackground: "#111827",
|
|
191
|
+
lightTooltipText: "#FFFFFF",
|
|
192
|
+
lightVerticalTabsText: "#6B7280",
|
|
193
|
+
lightVerticalTabsTextHover: "#374151",
|
|
194
|
+
lightVerticalTabsBackground: "#F9FAFB",
|
|
195
|
+
lightVerticalTabsBackgroundHover: "#F3F4F6",
|
|
196
|
+
lightVerticalTabsTextActive: "alias:lightPrimaryContrast",
|
|
197
|
+
lightVerticalTabsBackgroundActive: "alias:lightPrimary",
|
|
198
|
+
lightVerticalTabsSlotText: "#6B7280 ",
|
|
199
|
+
lightDialogBackgorund: "#FFFFFF",
|
|
200
|
+
lightDialogBreakLine: "#E5E7EB",
|
|
201
|
+
lightDialogHeaderText: "#111827",
|
|
202
|
+
lightDialogCloseButton: "#9CA3AF",
|
|
203
|
+
lightDialogCloseButtonHover: "#111827",
|
|
204
|
+
lightDialogCloseButtonHoverBackground: "#E5E7EB",
|
|
205
|
+
lightDialogBodyText: "#374151",
|
|
206
|
+
lightDropzoneBackground: "#F9FAFB",
|
|
207
|
+
lightDropzoneBackgroundHover: "#F3F4F6",
|
|
208
|
+
lightDropzoneBorder: "#D1D5DB",
|
|
209
|
+
lightDropzoneBorderHover: "#9CA3AF",
|
|
210
|
+
lightDropzoneBorderDragging: "#2563EB",
|
|
211
|
+
lightDropzoneBackgroundDragging: "#EFF6FF",
|
|
212
|
+
lightDropzoneIcon: "#6B7280",
|
|
213
|
+
lightDropzoneText: "#6B7280",
|
|
214
|
+
lightTableBackground: "#FFFFFF",
|
|
215
|
+
lightTableHeadingText: "#374151",
|
|
216
|
+
lightTableHeadingBackground: "#F9FAFB",
|
|
217
|
+
lightTableBorder: "#E5E7EB",
|
|
218
|
+
lightTableText: "#6B7280",
|
|
219
|
+
lightTableEvenBackground: "#F9FAFB",
|
|
220
|
+
lightTableOddBackground: "#FFFFFF",
|
|
221
|
+
lightTablePaginationText: "#6B7280",
|
|
222
|
+
lightTablePaginationNumeration: "#111827",
|
|
223
|
+
lightTablePaginationInputBackground: "#FFFFFF",
|
|
224
|
+
lightTablePaginationInputBorder: "#D1D5DB",
|
|
225
|
+
lightTablePaginationInputText: "#111827",
|
|
226
|
+
lightUnactivePaginationButtonBackground: "#FFFFFF",
|
|
227
|
+
lightUnactivePaginationButtonText: "#6B7280",
|
|
228
|
+
lightUnactivePaginationButtonBorder: "#D1D5DB",
|
|
229
|
+
lightUnactivePaginationButtonHoverBackground: "#F3F4F6",
|
|
230
|
+
lightUnactivePaginationButtonHoverText: "#374151",
|
|
231
|
+
lightActivePaginationButtonBackground: "alias:lightPrimary",
|
|
232
|
+
lightActivePaginationButtonText: "alias:lightPrimaryContrast",
|
|
233
|
+
lightProgressBarUnfilledColor: "#E5E7EB",
|
|
234
|
+
lightProgressBarFilledColor: "alias:lightPrimary",
|
|
235
|
+
lightProgressBarText: "#6B7280",
|
|
236
|
+
lightSkeletonBackgroundColor: "#D1D5DB",
|
|
237
|
+
lightSkeletonIconColor: "#E5E7EB",
|
|
238
|
+
lightAcceptModalBackground: "#FFFFFF",
|
|
239
|
+
lightAcceptModalCloseIcon: "#9CA3AF",
|
|
240
|
+
lightAcceptModalCloseIconHover: "#111827",
|
|
241
|
+
lightAcceptModalCloseIconHoverBackground: "#E5E7EB",
|
|
242
|
+
lightAcceptModalWarningIcon: "#9CA3AF",
|
|
243
|
+
lightAcceptModalText: "#6B7280",
|
|
244
|
+
lightAcceptModalConfirmButtonBackground: "#DC2626",
|
|
245
|
+
lightAcceptModalConfirmButtonBackgroundHover: "#991B1B",
|
|
246
|
+
lightAcceptModalConfirmButtonText: "#FFFFFF",
|
|
247
|
+
lightAcceptModalConfirmButtonFocus: "#FCA5A5",
|
|
248
|
+
lightAcceptModalCancelButtonBackground: "#FFFFFF",
|
|
249
|
+
lightAcceptModalCancelButtonBackgroundHover: "#F3F4F6",
|
|
250
|
+
lightAcceptModalCancelButtonText: "#111827",
|
|
251
|
+
lightAcceptModalCancelButtonFocus: "#F3F4F6",
|
|
252
|
+
lightAcceptModalCancelButtonBorder: "#E5E7EB",
|
|
253
|
+
lightBreadcrumbsHomepageText: "#374151",
|
|
254
|
+
lightBreadcrumbsHomepageTextHover: "alias:lightPrimary",
|
|
255
|
+
lightBreadcrumbsArrowIcon: "#9CA3AF",
|
|
256
|
+
lightBreadcrumbsText: "#6B7280",
|
|
257
|
+
lightRangePickerButtonBackground: "#FFFFFF",
|
|
258
|
+
lightRangePickerButtonBackgroundHover: "#F3F4F6",
|
|
259
|
+
lightRangePickerButtonBorder: "#D1D5DB",
|
|
260
|
+
lightRangePickerButtonText: "#111827",
|
|
261
|
+
lightRangePickerButtonTextHover: "alias:lightPrimary",
|
|
262
|
+
lightRangePickerFocusRing: "#F3F4F6",
|
|
263
|
+
lightRangePickerInputBackground: "#F9FAFB",
|
|
264
|
+
lightRangePickerInputBorder: "#D1D5DB",
|
|
265
|
+
lightRangePickerInputText: "#111827",
|
|
266
|
+
lightRangePickerInputPlaceholder: "#9CA3AF",
|
|
267
|
+
lightFiltersBackgroung: "#FFFFFF",
|
|
268
|
+
lightFiltersHeaderText: "#6B7280",
|
|
269
|
+
lightFiltersCloseIcon: "#9CA3AF",
|
|
270
|
+
lightFiltersCloseIconHover: "#111827",
|
|
271
|
+
lightFiltersCloseIconHoverBackground: "#E5E7EB",
|
|
272
|
+
lightFiltersClearAllButtonBackground: "#FFFFFF",
|
|
273
|
+
lightFiltersClearAllButtonBackgroundHover: "#F3F4F6",
|
|
274
|
+
lightFiltersClearAllButtonBorder: "#D1D5DB",
|
|
275
|
+
lightFiltersClearAllButtonText: "#111827",
|
|
276
|
+
lightFiltersClearAllButtonTextHover: "alias:lightPrimary",
|
|
277
|
+
lightFiltersClearAllButtonFocus: "#F3F4F6",
|
|
278
|
+
lightThreeDotsMenuIconBackground: "#FFFFFF",
|
|
279
|
+
lightThreeDotsMenuIconBackgroundHover: "#F3F4F6",
|
|
280
|
+
lightThreeDotsMenuIconBackgroundBorder: "#D1D5DB",
|
|
281
|
+
lightThreeDotsMenuIconDots: "#111827",
|
|
282
|
+
lightThreeDotsMenuIconDotsHover: "alias:lightPrimary",
|
|
283
|
+
lightThreeDotsMenuIconFocus: "#F3F4F6",
|
|
284
|
+
lightThreeDotsMenuBodyBackground: "#FFFFFF",
|
|
285
|
+
lightThreeDotsMenuBodyBackgroundHover: "#F3F4F6",
|
|
286
|
+
lightThreeDotsMenuBodyText: "#111827",
|
|
287
|
+
lightThreeDotsMenuBodyTextHover: "#111827",
|
|
288
|
+
lightToastBackground: "#FFFFFF",
|
|
289
|
+
lightToastCloseIcon: "#9CA3AF",
|
|
290
|
+
lightToastCloseIconHover: "#111827",
|
|
291
|
+
lightToastCloseIconBackground: "#FFFFFF",
|
|
292
|
+
lightToastCloseIconBackgroundHover: "#F3F4F6",
|
|
293
|
+
lightToastCloseIconFocusRing: "#D1D5DB",
|
|
294
|
+
lightToastText: "#6B7280",
|
|
295
|
+
lightCardBackground: "#FFFFFF",
|
|
296
|
+
lightCardBackgroundHover: "#F3F4F6",
|
|
297
|
+
lightCardBorder: "#E5E7EB",
|
|
298
|
+
lightCardTitle: "#374151",
|
|
299
|
+
lightCardDescription: "#6B7280",
|
|
300
|
+
lightUserMenuBackground: "#FFFFFF",
|
|
301
|
+
lightUserMenuBorder: "#f3f4f6",
|
|
302
|
+
lightUserMenuText: "#111827",
|
|
303
|
+
lightUserMenuItemBackground: "alias:lightUserMenuBackground",
|
|
304
|
+
lightUserMenuItemBackgroundHover: "alias:lightUserMenuBackground darken",
|
|
305
|
+
lightUserMenuItemText: "#000000",
|
|
306
|
+
lightUserMenuItemTextHover: "#000000",
|
|
54
307
|
// colors for dark theme
|
|
55
308
|
darkHtml: "#111827",
|
|
56
309
|
darkPrimary: "rgb(130 172 255)", // primary color
|
|
57
310
|
darkPrimaryContrast: "alias:darkPrimary inverse", // primary color contrast
|
|
58
|
-
darkPrimaryOpacity: "
|
|
311
|
+
darkPrimaryOpacity: "alias:darkPrimary opacity:0.2", // primary color opacity
|
|
59
312
|
darkNavbar: "#111827",
|
|
60
313
|
darkNavbarBorder: "#e5e7eb",
|
|
61
314
|
darkNavbarText: "#9ca3af",
|
|
@@ -75,17 +328,288 @@ export const styles = () => ({
|
|
|
75
328
|
darkSidebarIcons: "alias:darkSidebarText opacity:0.7",
|
|
76
329
|
darkSidebarIconsHover: "alias:darkSidebarText",
|
|
77
330
|
darkSidebarHeading: "alias:darkSidebarText opacity:0.3",
|
|
331
|
+
/***************************************************************
|
|
332
|
+
* *
|
|
333
|
+
* Dark Views *
|
|
334
|
+
* *
|
|
335
|
+
***************************************************************/
|
|
336
|
+
/*----------------------------------------*/
|
|
337
|
+
/* Show/Create/Edit View Table background */
|
|
338
|
+
/*----------------------------------------*/
|
|
339
|
+
darkForm: "#1F2937",
|
|
340
|
+
darkFormBorder: "#374151",
|
|
341
|
+
darkFormHeading: "alias:darkListTableHeading",
|
|
342
|
+
darkFormFieldTextColor: "alias:darkListTableText",
|
|
343
|
+
/*----------------------------------------*/
|
|
344
|
+
/* List View Table */
|
|
345
|
+
/*----------------------------------------*/
|
|
346
|
+
darkListSkeletLoader: "#374151",
|
|
78
347
|
darkList: "#111111",
|
|
79
348
|
darkListTable: "#1f2937",
|
|
80
|
-
darkListTableHeading: "#
|
|
349
|
+
darkListTableHeading: "#374151",
|
|
81
350
|
darkListTableHeadingText: "#9ca3af",
|
|
82
|
-
darkListTableText: "#
|
|
351
|
+
darkListTableText: "#9CA3AF",
|
|
83
352
|
darkListTableRowHover: "rgb(35 47 65)",
|
|
84
|
-
darkListBreadcrumbsText: "#BBBBBB",
|
|
85
353
|
darkListBorder: "#444444",
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
354
|
+
darkListTablePaginationBackgoround: "#1F2937",
|
|
355
|
+
darkListTablePaginationBackgoroundHover: "#374151",
|
|
356
|
+
darkListTablePaginationBorder: "#4B5563",
|
|
357
|
+
darkListTablePaginationFocusRing: "#374151",
|
|
358
|
+
darkListTablePaginationText: "#9CA3AF",
|
|
359
|
+
darkListTablePaginationCurrentPageText: "#9CA3AF",
|
|
360
|
+
darkListTablePaginationTextHover: "#FFFFFF",
|
|
361
|
+
darkListTablePaginationHelpText: "#9CA3AF",
|
|
362
|
+
/* ListView buttons */
|
|
363
|
+
darkListViewButtonBackground: "#1F2937",
|
|
364
|
+
darkListViewButtonBackgroundHover: "#374151",
|
|
365
|
+
darkListViewButtonText: "#9CA3AF",
|
|
366
|
+
darkListViewButtonTextHover: "#FFFFFF",
|
|
367
|
+
darkListViewButtonFocusRing: "#374151",
|
|
368
|
+
darkListViewButtonBorder: "#4B5563",
|
|
369
|
+
/*----------------------------------------*/
|
|
370
|
+
/* Show View Table */
|
|
371
|
+
/*----------------------------------------*/
|
|
372
|
+
darkShowTableHeadingBackground: "alias:darkFormHeading",
|
|
373
|
+
darkShowTableHeadingText: "#9CA3AF",
|
|
374
|
+
darkShowTableUnderHeadingBackground: "alias:darkFormHeading",
|
|
375
|
+
darkShowTableUnderHeadingText: "#9CA3AF",
|
|
376
|
+
darkShowTablesBodyBackground: "alias:darkForm",
|
|
377
|
+
darkShowTableBodyText: "#9CA3AF",
|
|
378
|
+
darkShowTableBodyBorder: "#374151",
|
|
379
|
+
/* Show View buttons*/
|
|
380
|
+
darkShowViewButtonBackground: "#1F2937",
|
|
381
|
+
darkShowViewButtonBackgroundHover: "#374151",
|
|
382
|
+
darkShowViewButtonText: "#9CA3AF",
|
|
383
|
+
darkShowViewButtonTextHover: "#FFFFFF",
|
|
384
|
+
darkShowViewButtonFocusRing: "#374151",
|
|
385
|
+
darkShowViewButtonBorder: "#4B5563",
|
|
386
|
+
/*----------------------------------------*/
|
|
387
|
+
/* Create View Table */
|
|
388
|
+
/*----------------------------------------*/
|
|
389
|
+
/* CreateView buttons */
|
|
390
|
+
darkCreateViewButtonBackground: "#1F2937",
|
|
391
|
+
darkCreateViewButtonBackgroundHover: "#374151",
|
|
392
|
+
darkCreateViewButtonText: "#9CA3AF",
|
|
393
|
+
darkCreateViewButtonTextHover: "#FFFFFF",
|
|
394
|
+
darkCreateViewButtonFocusRing: "#374151",
|
|
395
|
+
darkCreateViewButtonBorder: "#4B5563",
|
|
396
|
+
darkCreateViewSaveButtonText: "#EF4444",
|
|
397
|
+
darkCreateViewSaveButtonTextHover: "#FFFFFF",
|
|
398
|
+
/*----------------------------------------*/
|
|
399
|
+
/* Edit View Table */
|
|
400
|
+
/*----------------------------------------*/
|
|
401
|
+
/* EditView buttons */
|
|
402
|
+
darkEditViewButtonBackground: "#1F2937",
|
|
403
|
+
darkEditViewButtonBackgroundHover: "#374151",
|
|
404
|
+
darkEditViewButtonText: "#9CA3AF",
|
|
405
|
+
darkEditViewButtonTextHover: "#FFFFFF",
|
|
406
|
+
darkEditViewButtonFocusRing: "#374151",
|
|
407
|
+
darkEditViewButtonBorder: "#4B5563",
|
|
408
|
+
darkEditViewSaveButtonText: "#EF4444",
|
|
409
|
+
darkEditViewSaveButtonTextHover: "#FFFFFF",
|
|
410
|
+
/*----------------------------------------*/
|
|
411
|
+
/* Login View Table */
|
|
412
|
+
/*----------------------------------------*/
|
|
413
|
+
/* Login view */
|
|
414
|
+
darkLoginViewBackground: "#374151",
|
|
415
|
+
darkLoginViewTextColor: "#FFFFFF",
|
|
416
|
+
darkLoginViewSubTextColor: "#D1D5DB",
|
|
417
|
+
darkLoginViewPromptBackground: "#1F2937",
|
|
418
|
+
darkLoginViewPromptText: "#9CA3AF",
|
|
419
|
+
/***************************************************************
|
|
420
|
+
* *
|
|
421
|
+
* AdminForth dark components *
|
|
422
|
+
* *
|
|
423
|
+
***************************************************************/
|
|
424
|
+
darkButtonsBackground: "alias:darkPrimary", // button background
|
|
425
|
+
darkButtonsBorder: "alias:darkPrimary", // button border
|
|
426
|
+
darkButtonsText: "alias:darkPrimaryContrast", // button text
|
|
427
|
+
darkButtonsHover: "alias:darkPrimary lighten", // button hover
|
|
428
|
+
darkButtonsBorderHover: "alias:darkPrimary", // button border hover
|
|
429
|
+
darkButtonFocusRing: "alias:darkPrimary opacity:0.6", // button focus ring
|
|
430
|
+
darkButtonGroupBackground: "#1F2937", // button group background
|
|
431
|
+
darkButtonGroupBorder: "#4B5563", // button group border
|
|
432
|
+
darkButtonGroupText: "#9CA3AF", // button group text
|
|
433
|
+
darkButtonGroupFocusRing: "#374151", // button group focus ring
|
|
434
|
+
darkButtonGroupBackgroundHover: "#374151", // button group background hover
|
|
435
|
+
darkButtonGroupTextHover: "alias:darkButtonGroupText", // button group text hover
|
|
436
|
+
darkButtonGroupActiveBackground: "alias:darkPrimary", // button group active background
|
|
437
|
+
darkButtonGroupActiveText: "alias:darkPrimaryContrast", // button group active text
|
|
438
|
+
darkButtonGroupActiveFocusRing: "alias:darkPrimary opacity:0.6", // button group active focus ring
|
|
439
|
+
darkDropdownButtonsBackground: "#374151",
|
|
440
|
+
darkDropdownButtonsBorder: "#4b5563",
|
|
441
|
+
darkDropdownButtonsText: "#FFFFFF",
|
|
442
|
+
darkDropdownButtonsPlaceholderText: "#9CA3AF",
|
|
443
|
+
darkDropdownOptionsBackground: "#374151",
|
|
444
|
+
darkDropdownOptionsHoverBackground: "#4b5563",
|
|
445
|
+
darkDropdownPicked: "#212a40",
|
|
446
|
+
darkDropdownOptionsText: "alias:darkListTableText",
|
|
447
|
+
darkDropdownMultipleSelectBackground: "alias:darkPrimaryOpacity",
|
|
448
|
+
darkDropdownMultipleSelectText: "alias:darkPrimary",
|
|
449
|
+
darkDropdownMultipleSelectIcon: "#9CA3AF",
|
|
450
|
+
darkDropdownMultipleSelectIconHover: "#6B7280",
|
|
451
|
+
darkDropdownMultipleSelectIconFocus: "#6B7280",
|
|
452
|
+
darkDropdownMultipleSelectIconFocusBackground: "#F3F4F6",
|
|
453
|
+
darkCheckboxBgUnchecked: "#374151",
|
|
454
|
+
darkCheckboxBgChecked: "alias:darkPrimary",
|
|
455
|
+
darkCheckboxIconColor: "alias:darkPrimaryContrast lighten",
|
|
456
|
+
darkCheckboxBorderColor: "alias:darkPrimary darken",
|
|
457
|
+
darkFocusRing: "alias:darkPrimary lighten",
|
|
458
|
+
darkTextLabel: "white",
|
|
459
|
+
darkToggleBgUnactive: "#F9FAFB",
|
|
460
|
+
darkToggleBgActive: "alias:darkPrimary darken",
|
|
461
|
+
darkToggleCircleUnactive: "alias:darkPrimary",
|
|
462
|
+
darkToggleCircleActive: "#F9FAFB",
|
|
463
|
+
darkToggleRing: "alias:darkPrimary lighten",
|
|
464
|
+
darkToggleText: "alias:darkPrimaryContrast lighten",
|
|
465
|
+
darkToggleBorderUnactive: "alias:darkPrimary lighten",
|
|
466
|
+
darkToggleBorderActive: "alias:darkPrimary darken",
|
|
467
|
+
darkInputBackground: "#374151",
|
|
468
|
+
darkInputPlaceholderText: "#9CA3AF",
|
|
469
|
+
darkInputText: "#FFFFFF",
|
|
470
|
+
darkInputBorder: "#4b5563",
|
|
471
|
+
darkInputHover: "#374151",
|
|
472
|
+
darkInputTextHover: "#FFFFFF",
|
|
473
|
+
darkInputBorderHover: "alias:darkInputBorder darken",
|
|
474
|
+
darkInputFocusRing: "#374151",
|
|
475
|
+
darkInputFocusBorder: "alias:darkPrimary",
|
|
476
|
+
darkInputIconColor: "#9CA3AF",
|
|
477
|
+
darkInputErrorColor: "#F87171",
|
|
478
|
+
darkRequiredIconColor: "#6B7280",
|
|
479
|
+
darkDatePickerButtonBackground: "#374151",
|
|
480
|
+
darkDatePickerButtonText: "#FFFFFF",
|
|
481
|
+
darkDatePickerPlaceHolder: "#9CA3AF",
|
|
482
|
+
darkDatePickerButtonBorder: "#4B5563",
|
|
483
|
+
darkDatePickerIcon: "#9CA3AF",
|
|
484
|
+
darkDatePickerExpandText: "alias:darkPrimary",
|
|
485
|
+
darkDatePickerCalendarBackground: "#374151",
|
|
486
|
+
darkDatePickerCalendarMainText: "#FFFFFF",
|
|
487
|
+
darkDatePickerCalendarArrowButtonBackground: "#374151",
|
|
488
|
+
darkDatePickerCalendarArrowButtonBackgroundHover: "#4B5563",
|
|
489
|
+
darkDatePickerCalendarArrowButtonFocusRing: "#E5E7EB",
|
|
490
|
+
darkDatePickerCalendarDaysOfWeekText: "#9CA3AF",
|
|
491
|
+
darkDatePickerCalendarDateButtonText: "#FFFFFF",
|
|
492
|
+
darkDatePickerCalendarDateActiveButtonBackground: "#2563EB",
|
|
493
|
+
darkDatePickerCalendarDateButtonBackgroundHover: "#4B5563",
|
|
494
|
+
darkDatePickerCalendarDateActiveButtonText: "#FFFFFF",
|
|
495
|
+
darkTooltipBackground: "#374151",
|
|
496
|
+
darkTooltipText: "#FFFFFF",
|
|
497
|
+
darkVerticalTabsText: "#9CA3AF",
|
|
498
|
+
darkVerticalTabsTextHover: "#FFFFFF",
|
|
499
|
+
darkVerticalTabsBackground: "#1F2937",
|
|
500
|
+
darkVerticalTabsBackgroundHover: "#374151",
|
|
501
|
+
darkVerticalTabsTextActive: "alias:darkPrimaryContrast",
|
|
502
|
+
darkVerticalTabsBackgroundActive: "alias:darkPrimary",
|
|
503
|
+
darkVerticalTabsSlotText: "#9CA3AF ",
|
|
504
|
+
darkDialogBackgorund: "#374151",
|
|
505
|
+
darkDialogBreakLine: "#4B5563",
|
|
506
|
+
darkDialogHeaderText: "#FFFFFF",
|
|
507
|
+
darkDialogCloseButton: "#9CA3AF",
|
|
508
|
+
darkDialogCloseButtonHover: "#FFFFFF",
|
|
509
|
+
darkDialogCloseButtonHoverBackground: "#4B5563",
|
|
510
|
+
darkDialogBodyText: "#9CA3AF",
|
|
511
|
+
darkDropzoneBackground: "#1F2937",
|
|
512
|
+
darkDropzoneBackgroundHover: "#4B5563",
|
|
513
|
+
darkDropzoneBackgroundDragging: "#1E40AF",
|
|
514
|
+
darkDropzoneBorder: "#4B5563",
|
|
515
|
+
darkDropzoneBorderHover: "#6B7280",
|
|
516
|
+
darkDropzoneBorderDragging: "#60A5FA",
|
|
517
|
+
darkDropzoneIcon: "#9CA3AF",
|
|
518
|
+
darkDropzoneText: "#9CA3AF",
|
|
519
|
+
darkTableBackground: "#111827",
|
|
520
|
+
darkTableHeadingText: "#9CA3AF",
|
|
521
|
+
darkTableHeadingBackground: "#374151",
|
|
522
|
+
darkTableBorder: "#374151",
|
|
523
|
+
darkTableText: "#9CA3AF",
|
|
524
|
+
darkTableEvenBackground: "#1F2937",
|
|
525
|
+
darkTableOddBackground: "#111827",
|
|
526
|
+
darkTablePaginationText: "#9CA3AF",
|
|
527
|
+
darkTablePaginationNumeration: "#FFFFFF",
|
|
528
|
+
darkTablePaginationInputBackground: "#1f2937",
|
|
529
|
+
darkTablePaginationInputBorder: "#374151",
|
|
530
|
+
darkTablePaginationInputText: "#FFFFFF",
|
|
531
|
+
darkUnactivePaginationButtonBackground: "#1F2937",
|
|
532
|
+
darkUnactivePaginationButtonText: "#9CA3AF",
|
|
533
|
+
darkUnactivePaginationButtonBorder: "#374151",
|
|
534
|
+
darkUnactivePaginationButtonHoverBackground: "#374151",
|
|
535
|
+
darkUnactivePaginationButtonHoverText: "#FFFFFF",
|
|
536
|
+
darkActivePaginationButtonBackground: "alias:darkPrimary",
|
|
537
|
+
darkActivePaginationButtonText: "alias:darkPrimaryContrast",
|
|
538
|
+
darkProgressBarUnfilledColor: "#374151",
|
|
539
|
+
darkProgressBarFilledColor: "alias:darkPrimary",
|
|
540
|
+
darkProgressBarText: "#6B7280",
|
|
541
|
+
darkSkeletonBackgroundColor: "#374151",
|
|
542
|
+
darkSkeletonIconColor: "#4B5563",
|
|
543
|
+
darkAcceptModalBackground: "#374151",
|
|
544
|
+
darkAcceptModalCloseIcon: "#9CA3AF",
|
|
545
|
+
darkAcceptModalCloseIconHover: "#FFFFFF",
|
|
546
|
+
darkAcceptModalCloseIconHoverBackground: "#4B5563",
|
|
547
|
+
darkAcceptModalWarningIcon: "#E5E7EB",
|
|
548
|
+
darkAcceptModalText: "#9CA3AF",
|
|
549
|
+
darkAcceptModalConfirmButtonBackground: "#DC2626",
|
|
550
|
+
darkAcceptModalConfirmButtonBackgroundHover: "#991B1B",
|
|
551
|
+
darkAcceptModalConfirmButtonText: "#FFFFFF",
|
|
552
|
+
darkAcceptModalConfirmButtonFocus: "#991B1B",
|
|
553
|
+
darkAcceptModalCancelButtonBackground: "#1F2937",
|
|
554
|
+
darkAcceptModalCancelButtonBackgroundHover: "#374151",
|
|
555
|
+
darkAcceptModalCancelButtonText: "#9CA3AF",
|
|
556
|
+
darkAcceptModalCancelButtonTextHover: "#FFFFFF",
|
|
557
|
+
darkAcceptModalCancelButtonFocus: "#1F2937",
|
|
558
|
+
darkAcceptModalCancelButtonBorder: "#4B5563",
|
|
559
|
+
darkBreadcrumbsHomepageText: "#9CA3AF",
|
|
560
|
+
darkBreadcrumbsHomepageTextHover: "#FFFFFF",
|
|
561
|
+
darkBreadcrumbsArrowIcon: "#9CA3AF",
|
|
562
|
+
darkBreadcrumbsText: "#9CA3AF",
|
|
563
|
+
darkRangePickerButtonBackground: "#1F2937",
|
|
564
|
+
darkRangePickerButtonBackgroundHover: "#374151",
|
|
565
|
+
darkRangePickerButtonBorder: "#4B5563",
|
|
566
|
+
darkRangePickerButtonText: "#9CA3AF",
|
|
567
|
+
darkRangePickerButtonTextHover: "#FFFFFF",
|
|
568
|
+
darkRangePickerFocusRing: "#374151",
|
|
569
|
+
darkRangePickerInputBackground: "#374151",
|
|
570
|
+
darkRangePickerInputBorder: "#4B5563",
|
|
571
|
+
darkRangePickerInputText: "#FFFFFF",
|
|
572
|
+
darkRangePickerInputPlaceholder: "#9CA3AF",
|
|
573
|
+
darkFiltersBackgroung: "#1F2937",
|
|
574
|
+
darkFiltersHeaderText: "#9CA3AF",
|
|
575
|
+
darkFiltersCloseIcon: "#9CA3AF",
|
|
576
|
+
darkFiltersCloseIconHover: "#FFFFFF",
|
|
577
|
+
darkFiltersCloseIconHoverBackground: "#4B5563",
|
|
578
|
+
darkFiltersClearAllButtonBackground: "#1F2937",
|
|
579
|
+
darkFiltersClearAllButtonBackgroundHover: "#374151",
|
|
580
|
+
darkFiltersClearAllButtonBorder: "#4B5563",
|
|
581
|
+
darkFiltersClearAllButtonText: "#9CA3AF",
|
|
582
|
+
darkFiltersClearAllButtonTextHover: "#FFFFFF",
|
|
583
|
+
darkFiltersClearAllButtonFocus: "#374151",
|
|
584
|
+
darkThreeDotsMenuIconBackground: "#1F2937",
|
|
585
|
+
darkThreeDotsMenuIconBackgroundHover: "#374151",
|
|
586
|
+
darkThreeDotsMenuIconBackgroundBorder: "#4B5563",
|
|
587
|
+
darkThreeDotsMenuIconDots: "#9CA3AF",
|
|
588
|
+
darkThreeDotsMenuIconDotsHover: "#FFFFFF",
|
|
589
|
+
darkThreeDotsMenuIconFocus: "#374151",
|
|
590
|
+
darkThreeDotsMenuBodyBackground: "#374151",
|
|
591
|
+
darkThreeDotsMenuBodyBackgroundHover: "#4B5563",
|
|
592
|
+
darkThreeDotsMenuBodyText: "#9CA3AF",
|
|
593
|
+
darkThreeDotsMenuBodyTextHover: "#FFFFFF",
|
|
594
|
+
darkToastBackground: "#1F2937",
|
|
595
|
+
darkToastCloseIcon: "#6B7280",
|
|
596
|
+
darkToastCloseIconHover: "#FFFFFF",
|
|
597
|
+
darkToastCloseIconBackground: "#1F2937",
|
|
598
|
+
darkToastCloseIconBackgroundHover: "#374151",
|
|
599
|
+
darkToastCloseIconFocusRing: "#374151",
|
|
600
|
+
darkToastText: "#9CA3AF",
|
|
601
|
+
darkCardBackground: "#1F2937", // card background
|
|
602
|
+
darkCardBackgroundHover: "#374151", // card background hover
|
|
603
|
+
darkCardBorder: "#4B5563", // card border
|
|
604
|
+
darkCardTitle: "#FFFFFF", // card title
|
|
605
|
+
darkCardDescription: "#9CA3AF", // card description
|
|
606
|
+
darkUserMenuBackground: "alias:darkSidebar",
|
|
607
|
+
darkUserMenuBorder: "alias:darkSidebarDevider",
|
|
608
|
+
darkUserMenuText: "#FFFFFF",
|
|
609
|
+
darkUserMenuItemBackground: "alias:darkSidebar",
|
|
610
|
+
darkUserMenuItemBackgroundHover: "alias:darkSidebarItemHover",
|
|
611
|
+
darkUserMenuItemText: "#FFFFFF",
|
|
612
|
+
darkUserMenuItemTextHover: "#FFFFFF",
|
|
89
613
|
},
|
|
90
614
|
boxShadow: {
|
|
91
615
|
customLight: "0 4px 8px rgba(0, 0, 0, 0.1)", // Lighter shadow
|