mirror of
https://github.com/shawnkim1997/All-in-one-Financial-Analysis.git
synced 2026-08-25 08:18:05 +00:00
40 lines
813 B
TypeScript
40 lines
813 B
TypeScript
import type { Config } from "tailwindcss";
|
|||
|
|
|
||
|
|
const config: Config = {
|
||
|
|
content: [
|
||
|
|
"./src/**/*.{js,ts,jsx,tsx,mdx}",
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
bg: {
|
||
|
|
primary: "#0A0A0F",
|
||
|
|
secondary: "#12121A",
|
||
|
|
card: "#1A1A26",
|
||
|
|
hover: "#252536",
|
||
|
|
},
|
||
|
|
accent: {
|
||
|
|
green: "#00D4AA",
|
||
|
|
red: "#FF4757",
|
||
|
|
yellow: "#FFD93D",
|
||
|
|
blue: "#4DA6FF",
|
||
|
|
},
|
||
|
|
text: {
|
||
|
|
primary: "#F3F4F6",
|
||
|
|
secondary: "#9CA3AF",
|
||
|
|
muted: "#6B7280",
|
||
|
|
},
|
||
|
|
border: {
|
||
|
|
DEFAULT: "#2A2A3A",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
sans: ["Inter", "system-ui", "sans-serif"],
|
||
|
|
mono: ["JetBrains Mono", "monospace"],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|
||
|
|
export default config;
|