mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-13 11:15:12 +01:00
20 lines
310 B
TypeScript
20 lines
310 B
TypeScript
|
import { createTheme } from "../types";
|
||
|
|
||
|
export default createTheme({
|
||
|
name: "gray",
|
||
|
extend: {
|
||
|
colors: {
|
||
|
themePreview: {
|
||
|
primary: "#343441",
|
||
|
secondary: "#0C0C16",
|
||
|
ghost: "white",
|
||
|
},
|
||
|
|
||
|
// light bar
|
||
|
lightBar: {
|
||
|
light: "#343441"
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
})
|