12 Commits

Author SHA1 Message Date
e86ed92c57 Merge version_7 into main
Merge version_7 into main
2026-06-02 18:40:45 +00:00
144a71f161 Update theme fonts 2026-06-02 18:40:42 +00:00
25b0f026d4 Update theme fonts 2026-06-02 18:40:42 +00:00
fc174e097d Merge version_7 into main
Merge version_7 into main
2026-06-02 18:40:35 +00:00
dcc91077bf Update theme colors 2026-06-02 18:40:29 +00:00
c9e93650c5 Merge version_6 into main
Merge version_6 into main
2026-06-02 18:40:14 +00:00
f412c730fd Update theme colors 2026-06-02 18:40:11 +00:00
d293571a49 Merge version_5 into main
Merge version_5 into main
2026-06-02 18:40:08 +00:00
e2bd5aa5d9 Merge version_4 into main
Merge version_4 into main
2026-06-02 18:39:55 +00:00
5692c4b412 Merge version_3 into main
Merge version_3 into main
2026-06-02 18:39:39 +00:00
abda82e8ee Merge version_2 into main
Merge version_2 into main
2026-06-02 18:26:55 +00:00
403bc0946d Merge version_2 into main
Merge version_2 into main
2026-06-02 17:33:25 +00:00
3 changed files with 21 additions and 15 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google"; import { Raleway } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -41,9 +42,14 @@ export const metadata: Metadata = {
}, },
}; };
const raleway = Raleway({
variable: "--font-raleway", const inter = Inter({
subsets: ["latin"] variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -54,7 +60,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${raleway.variable} antialiased`}> <body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-raleway), sans-serif; font-family: var(--font-open-sans), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-raleway), sans-serif; font-family: var(--font-inter), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #010912; --background: #f5faff;
--card: #152840; --card: #ffffff;
--foreground: #e6f0ff; --foreground: #001122;
--primary-cta: #cee7ff; --primary-cta: #15479c;
--primary-cta-text: #010912; --primary-cta-text: #f5faff;
--secondary-cta: #0e1a29; --secondary-cta: #ffffff;
--secondary-cta-text: #e6f0ff; --secondary-cta-text: #001122;
--accent: #3f5c79; --accent: #a8cce8;
--background-accent: #004a93; --background-accent: #7ba3cf;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);