mirror of https://github.com/gabehf/mnrva.dev.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
353 B
24 lines
353 B
import type { TailwindColor } from "@/utils/types/tailwind";
|
|
|
|
type Theme = {
|
|
colors: {
|
|
primary: TailwindColor;
|
|
blur: {
|
|
top: TailwindColor;
|
|
bottom: TailwindColor;
|
|
};
|
|
};
|
|
};
|
|
|
|
const theme: Theme = {
|
|
colors: {
|
|
primary: "orange",
|
|
blur: {
|
|
top: "orange",
|
|
bottom: "violet",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default theme;
|