Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6b571e5497 | |||
| c604dbbe29 | |||
| fcf41ae025 | |||
| fafeb0ec7a | |||
| bc91b47822 | |||
| cab0df2390 | |||
| 4d2e33c122 | |||
| 38b5788f07 | |||
| 9620d9d66a | |||
| 05d820609a | |||
| c86fb4ef82 | |||
| 4636f764b0 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #ffffff;
|
--background: #0a0a0a;
|
||||||
--card: #fafafa;
|
--card: #1a1a1a;
|
||||||
--foreground: #000000;
|
--foreground: #fffffae6;
|
||||||
--primary-cta: #ffcc00;
|
--primary-cta: #fde047;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #1a1a1a;
|
||||||
--accent: #e5e5e5;
|
--accent: #737373;
|
||||||
--background-accent: #f5f5f5;
|
--background-accent: #737373;
|
||||||
|
|
||||||
/* 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);
|
||||||
@@ -495,7 +495,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: var(--font-ibm-plex-sans), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -508,5 +508,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: var(--font-ibm-plex-sans), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
||||||
|
|||||||
Reference in New Issue
Block a user