Openstatus www.openstatus.dev
at main 47 lines 1.8 kB view raw
1import type { Theme } from "./types"; 2 3export const GITHUB_HIGH_CONTRAST_THEME = { 4 id: "github-contrast", 5 name: "GitHub (High Contrast)", 6 author: { name: "@openstatus", url: "https://openstatus.dev" }, 7 light: { 8 "--background": "oklch(100% 0 0)", 9 "--foreground": "oklch(24.29% 0.0045 247.86)", 10 "--border": "oklch(85.86% 0.0054 251.18)", 11 "--input": "oklch(85.86% 0.0054 251.18)", 12 13 "--primary": "oklch(60.81% 0.1567 142.5)", 14 "--primary-foreground": "oklch(24.29% 0.0045 247.86)", 15 "--muted": "oklch(97.86% 0.0019 247.86)", 16 "--muted-foreground": "oklch(40.78% 0.0056 247.86)", 17 "--secondary": "oklch(97.86% 0.0019 247.86)", 18 "--secondary-foreground": "oklch(24.29% 0.0045 247.86)", 19 "--accent": "oklch(97.86% 0.0019 247.86)", 20 "--accent-foreground": "oklch(24.29% 0.0045 247.86)", 21 22 "--success": "oklch(60.81% 0.1567 142.5)", 23 "--destructive": "oklch(58.79% 0.1577 22.18)", 24 "--warning": "oklch(81.84% 0.1328 85.87)", 25 "--info": "oklch(45.2% 0.1445 252.03)", 26 }, 27 dark: { 28 "--background": "oklch(10.39% 0.0194 248.34)", 29 "--foreground": "oklch(100% 0 0)", 30 "--border": "oklch(58.41% 0.011 252.87)", 31 "--input": "oklch(58.41% 0.011 252.87)", 32 33 "--primary": "oklch(54.34% 0.1634 145.98)", 34 "--primary-foreground": "oklch(100% 0 0)", 35 "--muted": "oklch(33.39% 0.0223 256.4)", 36 "--muted-foreground": "oklch(79.7% 0.0169 262.74)", 37 "--secondary": "oklch(33.39% 0.0223 256.4)", 38 "--secondary-foreground": "oklch(100% 0 0)", 39 "--accent": "oklch(33.39% 0.0223 256.4)", 40 "--accent-foreground": "oklch(100% 0 0)", 41 42 "--success": "oklch(54.34% 0.1634 145.98)", 43 "--destructive": "oklch(47.1% 0.1909 25.95)", 44 "--warning": "oklch(81.84% 0.1328 85.87)", 45 "--info": "oklch(46.96% 0.2957 264.51)", 46 }, 47} as const satisfies Theme;