echoes/frontend/tailwind.config.ts

38 lines
753 B
TypeScript
Raw Normal View History

import type { Config } from "tailwindcss";
export default {
2024-11-27 19:52:49 +08:00
content: [
"./app/**/*.{js,jsx,ts,tsx}",
"./common/**/*.{js,jsx,ts,tsx}",
"./core/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
2024-11-27 19:52:49 +08:00
sans: ["Inter", "system-ui", "sans-serif"],
},
colors: {
custom: {
bg: {
light: "#F5F5FB",
dark: "#0F172A",
2024-11-27 19:52:49 +08:00
},
box: {
light: "#FFFFFF",
dark: "#1E293B",
2024-11-27 19:52:49 +08:00
},
p: {
light: "#4b5563",
dark: "#94A3B8",
2024-11-27 19:52:49 +08:00
},
title: {
light: "#111827",
dark: "#F1F5F9",
2024-11-27 19:52:49 +08:00
},
},
},
},
},
2024-11-27 19:52:49 +08:00
darkMode: "class",
} satisfies Config;