Frontend changes

I still need to change the path of the excel in convert_to_JSON.js to be the updated data xlsx lmao
This commit is contained in:
Vadella, Anna
2026-03-26 12:35:58 -04:00
parent 24e0d2cc21
commit 3a912bf09e
8 changed files with 1938 additions and 71 deletions

View File

@@ -1,26 +1,27 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
--background: #0A1F44;
--text-dark: #000000;
--text-light: #f9fafb;
--box: #D9D9D9;
--button: #A71D31;
--button-dark: #850e25;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
--color-text-dark: var(--text-dark);
--color-text-light: var(--text-light);
--color-box: var(--box);
--color-button: var(--button);
--color-button-dark: var(--button-dark)
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}