Daniel Muise
11/10/2024, 6:50 PM{
"typography": {
"font": "local(Time New Roman)"
},
"palette": {
"primary": {
"base": "#005cff"
},
"error": {
"base": "#d13049"
},
"success": {
...
Mauricio Cabezas
11/11/2024, 10:54 AM"typography": {
"font": "local(Times New Roman)"
},
I have a few questions:
1. How did you create your theme? Did you do it through the UI by navigating to Settings > Theme (change) > Create and paste?
2. How did you activate it? Did you use the API with a specific call?
POST {{baseUrl}}/api/v1/entities/workspaces/:workspaceId/workspaceSettings
{
"data": {
"type": "workspaceSetting",
"id": "{workspaceId}",
"attributes": {
"content": {
"id": "{themeId}",
"type": "theme"
},
"type": "ACTIVE_THEME"
}
}
}
Once you add the theme to a specific workspace, you can easily edit it from the UI.
Thank you!Daniel Muise
11/11/2024, 1:47 PMDaniel Muise
11/11/2024, 1:51 PMMauricio Cabezas
11/11/2024, 1:52 PM{
"palette": {
"primary": {
"base": "#ED26B7"
},
"error": {
"base": "#e54d42"
},
"success": {
"base": "#00c18d"
},
"warning": {
"base": "#f4d521"
}
},
"typography": {
"font": "local(Times New Roman)"
},
"button": {
"borderRadius": "100",
"dropShadow": false
},
"analyticalDesigner": {
"title": {
"color": "#1C0D3F"
}
},
"dashboards": {
"content": {
"kpiWidget": {
"title": {
"color": "#f2f4f6B2",
"textAlign": "center"
},
"kpi": {
"primaryMeasureColor": "#fff",
"secondaryInfoColor": "#f2f4f6B2"
},
"borderRadius": "6",
"borderWidth": "1",
"backgroundColor": "#1c0d3f",
"dropShadow": false
}
},
"title": {
"color": "#1C0D3F",
"backgroundColor": "#fff",
"borderColor": "#DFE4E8"
},
"navigation": {
"backgroundColor": "#1C0D3F",
"title": {
"color": "#fff"
},
"item": {
"color": "#BFC9D1",
"hoverColor": "#fff",
"selectedColor": "#fff",
"selectedBackgroundColor": "#FFFFFF1A"
}
},
"filterBar": {
"filterButton": {
"backgroundColor": "#F2F4F6"
},
"backgroundColor": "#fff",
"borderColor": "#DFE4E8"
},
"section": {
"title": {
"color": "#1c0d3f",
"lineColor": "#DFE4E8"
}
}
}
}
Mauricio Cabezas
11/11/2024, 1:52 PMDaniel Muise
11/11/2024, 1:53 PMMauricio Cabezas
11/11/2024, 1:54 PMDaniel Muise
11/11/2024, 1:54 PM