mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-13 12:45:10 +01:00
20 lines
311 B
TypeScript
20 lines
311 B
TypeScript
|
import { createTheme } from "../types";
|
||
|
|
||
|
export default createTheme({
|
||
|
name: "teal",
|
||
|
extend: {
|
||
|
colors: {
|
||
|
themePreview: {
|
||
|
primary: "#469c51",
|
||
|
secondary: "#1a3d2b",
|
||
|
ghost: "white",
|
||
|
},
|
||
|
|
||
|
// light bar
|
||
|
lightBar: {
|
||
|
light: "#469c51",
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
})
|