Skip to content

Commit

Permalink
Feat(UI): Update Color Base
Browse files Browse the repository at this point in the history
  • Loading branch information
Ikram-Maulana committed Apr 20, 2023
1 parent 1536ec1 commit 365fc6f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { RootLayoutProps } from "@/types";
import "@total-typescript/ts-reset";
import { montserrat, poppins } from "../assets/fonts";
import "../styles/globals.css";
import { Tokens } from "../../mirrorful/.mirrorful/theme";

export const metadata = {
title: "Ikram Maulana",
Expand Down Expand Up @@ -58,7 +59,13 @@ export const metadata = {
export default function RootLayout({ children }: RootLayoutProps) {
return (
<html lang="en" className={`${montserrat.variable} ${poppins.variable}`}>
<body>{children}</body>
<body
style={{
backgroundColor: Tokens.colors["old-lace"]["base"],
}}
>
{children}
</body>
</html>
);
}

0 comments on commit 365fc6f

Please sign in to comment.