mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-13 10:55:04 +01:00
20 lines
311 B
TypeScript
20 lines
311 B
TypeScript
import { createTheme } from "../types";
|
|
|
|
export default createTheme({
|
|
name: "blue",
|
|
extend: {
|
|
colors: {
|
|
themePreview: {
|
|
primary: "#3A4FAA",
|
|
secondary: "#303487",
|
|
ghost: "white",
|
|
},
|
|
|
|
// light bar
|
|
lightBar: {
|
|
light: "#3A4FAA",
|
|
},
|
|
}
|
|
}
|
|
})
|