1
0
mirror of https://github.com/prometheus/docs.git synced 2026-02-06 00:46:09 +01:00
Files
docs/src/theme.ts
Julius Volz 5af9d32534 Much more work on new site
Signed-off-by: Julius Volz <julius.volz@gmail.com>
2025-05-15 18:15:38 +02:00

31 lines
525 B
TypeScript

import { createTheme, MantineColorsTuple } from "@mantine/core";
const prometheusColor: MantineColorsTuple = [
"#ffede6",
"#ffdad2",
"#f6b5a4",
"#f08e74",
"#ea6b4b",
"#e75630",
"#e64a22",
"#cc3b16",
"#b73311",
"#a02709",
];
export const theme = createTheme({
colors: {
prometheusColor,
},
black: "var(--mantine-color-gray-8)",
primaryColor: "prometheusColor",
headings: {
fontFamily: "var(--font-inter)",
sizes: {
h1: {
// fontWeight: "600",
},
},
},
});