Openstatus www.openstatus.dev

fix: white label + amber color (#948)

* fix: white label

* fix: undistiguished color

authored by

Maximilian Kaske and committed by
GitHub
93b151f2 0d5829a1

+17 -15
+15 -13
apps/web/src/app/status-page/[domain]/_components/footer.tsx
··· 15 15 <p className="truncate font-light text-muted-foreground text-xs"> 16 16 {timeZone} 17 17 </p> 18 - {!isWhiteLabel ? ( 19 - <p className="col-span-3 text-center text-muted-foreground text-sm"> 20 - powered by{" "} 21 - <a 22 - href="https://www.openstatus.dev" 23 - target="_blank" 24 - rel="noreferrer" 25 - className="text-foreground underline underline-offset-4 hover:no-underline" 26 - > 27 - openstatus.dev 28 - </a> 29 - </p> 30 - ) : null} 18 + <div className="col-span-3 w-full"> 19 + {!isWhiteLabel ? ( 20 + <p className="text-center text-muted-foreground text-sm"> 21 + powered by{" "} 22 + <a 23 + href="https://www.openstatus.dev" 24 + target="_blank" 25 + rel="noreferrer" 26 + className="text-foreground underline underline-offset-4 hover:no-underline" 27 + > 28 + openstatus.dev 29 + </a> 30 + </p> 31 + ) : null} 32 + </div> 31 33 <div className="text-right"> 32 34 <ThemeToggle /> 33 35 </div>
+2 -2
apps/web/src/styles/globals.css
··· 36 36 --radius: 0.5rem; 37 37 38 38 /* Status Tracker Colors - Radix Color */ 39 - --status-degraded: 26 100% 56%; /* Orange 10 */ 39 + --status-degraded: 50 100% 52%; /* Amber 10 */ 40 40 --status-operational: 131 39% 51%; /* Grass 10 */ 41 41 --status-down: 11 82% 59%; /* Tomato 10 */ 42 42 --status-monitoring: 210 100% 62%; /* Blue 10 */ ··· 73 73 --ring: 217.2 32.6% 17.5%; 74 74 75 75 /* Status Tracker Colors - Radix Color */ 76 - --status-degraded: 26 100% 56%; /* Orange 10 */ 76 + --status-degraded: 50 100% 52%; /* Amber 10 */ 77 77 --status-operational: 131 39% 51%; /* Grass 10 */ 78 78 --status-down: 11 82% 59%; /* Tomato 10 */ 79 79 --status-monitoring: 210 100% 62%; /* Blue 10 */