mirror of
https://github.com/prometheus/docs.git
synced 2026-02-06 00:46:09 +01:00
31 lines
525 B
TypeScript
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",
|
|
},
|
|
},
|
|
},
|
|
});
|