Skip to content

willthebrit/pm-themes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PM Themes

A simple theme object to reflect the Pennymac UI styles.

Installation

# npm
npx jsr add @pennymac/theme

# deno
deno add jsr:@pennymac/theme

Usage in Next.js

import "@mantine/core/styles.css";

import { AppProps } from "next/app";
import { MantineProvider } from "@mantine/core";
import { theme } from "@pennymac/theme";

function MyApp({ Component, pageProps }: AppProps) {
    return (
        <MantineProvider theme={theme}>
            <Component {...pageProps} />
        </MantineProvider>
    );
}

export default MyApp;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published