mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-13 00:28:45 -05:00
19 lines
496 B
TypeScript
19 lines
496 B
TypeScript
import React from "react"
|
|
import { Theme } from "./types"
|
|
|
|
const MyThemeContext = React.createContext<Theme>({
|
|
colorMode: "dark",
|
|
bgColor: "#232946",
|
|
darkerBgColor: "#0A102D",
|
|
textColor: "#fffffe",
|
|
borderStyle: "1px solid rgba(255, 255, 255, .2)",
|
|
themeColorWithShade: "pink.200",
|
|
grayWithShade: "gray.300",
|
|
themeColorHex: "#D53F8C",
|
|
themeColorHexLighter: "#FBB6CE",
|
|
themeColor: "pink",
|
|
})
|
|
|
|
export const MyThemeProvider = MyThemeContext.Provider
|
|
export default MyThemeContext
|