Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 487973b161 | |||
| 4c26cfa1c1 | |||
| e0ff4d943c |
@@ -1,14 +1,9 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
@@ -26,7 +21,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
className={`${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
@@ -3,22 +3,22 @@
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #0c1325;;
|
||||
--primary-cta: #0b07ff;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #93b7ff;;
|
||||
--background-accent: #a8bae8;; */
|
||||
--card: #1a1a1a;;
|
||||
--foreground: #ffff00;;
|
||||
--primary-cta: #ffcc00;;
|
||||
--secondary-cta: #ffff00;;
|
||||
--accent: #ff9900;;
|
||||
--background-accent: #333300;; */
|
||||
|
||||
--background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #0c1325;;
|
||||
--primary-cta: #0b07ff;;
|
||||
--background: #000000;;
|
||||
--card: #1a1a1a;;
|
||||
--foreground: #ffff00;;
|
||||
--primary-cta: #ffcc00;;
|
||||
--primary-cta-text: #f7f6f7;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta: #ffff00;;
|
||||
--secondary-cta-text: #0c1325;;
|
||||
--accent: #93b7ff;;
|
||||
--background-accent: #a8bae8;;
|
||||
--accent: #ff9900;;
|
||||
--background-accent: #333300;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user