react-garden
Version:
React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.
24 lines (18 loc) • 513 B
text/typescript
// ThreeD Garden Base Styles
import typography from "~/themes/theme-dark/base/typography"
import colors from "~/themes/theme-dark/base/colors"
// ThreeD Garden Helper Functions
import rgba from "~/themes/theme-dark/functions/rgba"
const { size } = typography
const { white } = colors
// types
type Types = any
const dialogContentText: Types = {
styleOverrides: {
root: {
fontSize: size.md,
color: rgba(white.main, 0.8),
},
},
}
export default dialogContentText