2
0
mirror of https://github.com/movie-web/movie-web.git synced 2025-01-15 05:09:09 +01:00

20 lines
309 B
TypeScript

import { createTheme } from "../types";
export default createTheme({
name: "red",
extend: {
colors: {
themePreview: {
primary: "#A8335E",
secondary: "#6A2441",
ghost: "white",
},
// light bar
lightBar: {
light: "#A8335E"
},
}
}
})