Files
datamining_881/frontend/app/globals.css
Vadella, Anna 3a912bf09e Frontend changes
I still need to change the path of the excel in convert_to_JSON.js to be the updated data xlsx lmao
2026-03-26 12:35:58 -04:00

28 lines
583 B
CSS

@import "tailwindcss";
:root {
--background: #0A1F44;
--text-dark: #000000;
--text-light: #f9fafb;
--box: #D9D9D9;
--button: #A71D31;
--button-dark: #850e25;
}
@theme inline {
--color-background: var(--background);
--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)
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
body {
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}