You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add background color in AppCard
* Add background color in AppCard (#681)
* Add background color in AppCard
* add line to changelog
* Add primaryBackgroundColor and secondaryBackgroundColor color in AppCard (#838)
* Add primaryBackgroundColor and secondaryBackgroundColor color color in AppCard
* add line to changelog
* Fix defaults for App card.
@@ -153,6 +154,33 @@ Parse Dashboard supports adding an optional icon for each app, so you can identi
153
154
}
154
155
```
155
156
157
+
## App Background Color Configuration
158
+
159
+
Parse Dashboard supports adding an optional background color for each app, so you can identify them easier in the list. To do so, you *must* use the configuration file, define an `primaryBackgroundColor` and `secondaryBackgroundColor` in it, parameter for each app. It is `CSS style`. To visualize what it means, in the following example `backgroundColor` is a configuration file:
160
+
161
+
```json
162
+
{
163
+
"apps": [
164
+
{
165
+
"serverURL": "http://localhost:1337/parse",
166
+
"appId": "myAppId",
167
+
"masterKey": "myMasterKey",
168
+
"appName": "My Parse Server App",
169
+
"primaryBackgroundColor": "#FFA500", // Orange
170
+
"secondaryBackgroundColor": "#FF4500"// OrangeRed
171
+
},
172
+
{
173
+
"serverURL": "http://localhost:1337/parse",
174
+
"appId": "myAppId",
175
+
"masterKey": "myMasterKey",
176
+
"appName": "My Parse Server App [2]",
177
+
"primaryBackgroundColor": "rgb(255, 0, 0)", // Red
You can set `appNameForURL` in the config file for each app to control the url of your app within the dashboard. This can make it easier to use bookmarks or share links on your dashboard.
0 commit comments