Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4407663f73 | |||
| 684c43f555 | |||
| 6538f77431 | |||
| 22f5abe417 | |||
| 07bee8de68 | |||
| 62fa5d8cc9 | |||
| 1b1b1bd66b | |||
| 35aeb8fbfc | |||
| 723e06c369 | |||
| c768b91d4c | |||
| 1f4ac67bce | |||
| a6afa7e9ee | |||
| 2cacb333e2 | |||
| 309b030148 | |||
| a5a51d7616 | |||
| d09c033cc4 | |||
| 921aaa6c73 | |||
| e54cf0a1ce | |||
| bdac8b992b |
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #fffef7;;
|
||||
--card: #fffdf0;;
|
||||
--foreground: #221a00;;
|
||||
--primary-cta: #ffae00;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #eab308;;
|
||||
--background-accent: #ca8a04;;
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffffe6;
|
||||
--primary-cta: #b366ff;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--accent: #737373;
|
||||
--background-accent: #737373;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
@@ -495,7 +495,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-source-serif-4), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -508,5 +508,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-source-serif-4), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
}
|
||||
@@ -1256,4 +1256,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
@@ -342,4 +342,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user