Skip to content

Commit aadebd5

Browse files
Add default favicon, branding config template, fix run detail width
- Copy spectra_favicon.png to dashboard-site as default favicon - Add branding section to config template with SPECTRA defaults and comments documenting available options (theme, colors, custom_css) - Fix run detail view: remove max-width: 1000px constraint so results use full available width
1 parent 8a05fe7 commit aadebd5

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

dashboard-site/favicon.png

288 KB
Loading

dashboard-site/styles/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ body.panel-open {
725725

726726
/* Run Detail */
727727
.run-detail {
728-
max-width: 1000px;
728+
max-width: 100%;
729729
}
730730

731731
.run-detail h2 {

src/Spectra.CLI/Templates/spectra.config.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,18 @@
5555
"max_trend_points": 30,
5656
"cloudflare_project_name": "spectra-dashboard",
5757
"branding": {
58-
"company_name": null,
59-
"logo": null,
60-
"favicon": null,
58+
"company_name": "SPECTRA",
59+
"logo": "assets/spectra-logo.svg",
60+
"favicon": "assets/favicon.ico",
6161
"theme": "light",
62+
"_comment_theme": "Options: 'light' or 'dark'",
6263
"colors": {
6364
"primary": null,
64-
"accent": null
65+
"accent": null,
66+
"_comment_colors": "Override theme colors: primary, accent, background, text, surface, border. Use CSS color values (#hex, rgb(), hsl(), named)."
6567
},
66-
"custom_css": null
68+
"custom_css": null,
69+
"_comment_custom_css": "Path to a custom CSS file loaded after default styles for full override control."
6770
}
6871
},
6972
"git": {

0 commit comments

Comments
 (0)