I still need to change the path of the excel in convert_to_JSON.js to be the updated data xlsx lmao
28 lines
583 B
CSS
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;
|
|
}
|