mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 08:25:08 +01:00
20 lines
309 B
TypeScript
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"
|
|
},
|
|
}
|
|
}
|
|
})
|